1. Nachrichten
  2. Forum
    1. Unerledigte Themen
    2. Forenregeln
  3. Spenden
  • Anmelden
  • Registrieren
  • Suche
Alles
  • Alles
  • Artikel
  • Seiten
  • Forum
  • Erweiterte Suche
  1. camp-firefox.de
  2. Dharkness

Beiträge von Dharkness

  • Links

    • Dharkness
    • 7. Februar 2022 um 16:45
    Zitat von SG92

    wenn ich in einer Homepage auf einen LINK verweise; wird dieser LINK nicht gleich geöffnet sondert erst gespeichert unter DOWNLOAD, dann kann ich diesen eröffnen. Beispiel:

    Link>Tabellen vom 13. Spieltag

    Dieser Link verweist auf eine PDF-Datei, hast Du dafür die Standard-Aktion anders eingestellt?

    Extras → Einstellungen Und dort dann runter scrollen zu Anwendungen

  • Von Fußzeile wird nur oberer Teil gedruckt

    • Dharkness
    • 6. Februar 2022 um 11:46
    Zitat von .DeJaVu

    Achtung: 0.8 ist in Inch, weil 0.5 -> 12.7mm hier ergeben in der Anzeige.

    Ah ok, danke für den Hinweis, dann muss der TE halt mit dem Wert spielen, bis es passt, also immer um 0.1 höher, sprich erst einmal auf 0.6 und dann nötigenfalls wieder nur um 0.1 höher usw.. Oder geht auch z.B. 0.65?

  • Von Fußzeile wird nur oberer Teil gedruckt

    • Dharkness
    • 6. Februar 2022 um 09:56

    Hallo Peter B.,

    gib mal about:config in die Adressleiste ein, drücke Enter und gebe dort das → print_margin_bottom ein, es werden dann die unteren Abstände angezeigt, einmal die der PDF-Drucker und auch der von Deinem Drucker, ändere den mal auf z.B. 0.8 und schaue, ob das schon reicht.

  • Bei background: original Icon ausblenden

    • Dharkness
    • 5. Februar 2022 um 14:43

    Hi,

    teste mal damit ↓.

    CSS
    #help-button > img {
        display: none !important;
    }
  • userChrome.js Scripte für den Fuchs (Diskussion)

    • Dharkness
    • 4. Februar 2022 um 22:58
    Zitat von Speravir
    Zitat von Dharkness

    kann man verhindern, das das Script userScrollbar.uc.js dahingehend angepasst werden kann, das der Zoom-Status einer Website ignoriert wird?

    Das ergibt so keinen Sinn. Du meintest doch sicher, „kann man erreichen, dass …“, fände ich ebenfalls interessant.

    Und wo hast Du den Namen userScrollbar.uc.js her? Das Skript firmiert eigentlich unter custom_scrollbars.uc.js.

    Jupp, das Script soll natürlich dahingehend angepasst werden, das die Zoom-Stufe ignoriert wird, da habe ich mich wohl irgendwie beim Schreiben um entschieden und falsch korrigiert.

  • userChrome.js Scripte für den Fuchs (Diskussion)

    • Dharkness
    • 4. Februar 2022 um 22:36

    Hallo zusammen,

    kann man verhindern, das das Script userScrollbar.uc.js dahingehend angepasst werden kann, das der Zoom-Status einer Website ignoriert wird?

    JavaScript
    "use strict";
    
    /* Firefox 57+ userChrome.js tweaks - SCROLLBARS ********************************************** */
    /* by Aris ************************************************************************************ */
    /* ******************************************************************************************** */
    
    /* ******************************************************************************************** */
    /* Custom Scrollbars for Firefox ************************************************************** */
    /* version 1.0.4 ****************************************************************************** */
    /* ******************************************************************************************** */
    
    /* ***********************************************************************************************
    
     README
    
     [!] either 'method 1' or 'method 2' are required to prepare Firefox for custom JavaScript files
     [!] 'custom_scrollbars.uc.js' file belongs into Firefox profiles 'chrome' folder!
     -> finding profile folder: address bar > about:profiles > Root Directory > Open Folder
     -> add file to \chrome\ folder (create one, if needed)
    
     [!] STARTUP CACHE HAS TO BE DELETED AFTER EVERY CHANGE!
     -> finding 'startupCache' folder: address bar > about:profiles > Local Directory > Open Folder > startupCache
     -> close Firefox
     -> delete 'startupCache' folders content
    
     ENABLING options > set var to true
     DISABLING options > set var to false
     Modifying appearance > change values
     - color - name: red, blue, transparent / hex code: #33CCFF, #FFF
     - color - rgb(a): rgba(0,0,255,0.8) / hsl(a): hsla(240,100%,50%,0.8)
     - numbers: 1, 2, 3 ... 10, 11, 12 ...
     - opacity: 0.0 to 1.0 e.g. 1.4, 1,75
     - gradients: linear-gradient(direction, color, color, color)
     - gradients example: linear-gradient(to right, blue, #33CCFF, rgba(0,0,255,0.8))
     - unsettings predefined gradients: transparent,rgba(255,255,255,0.5),transparent -> transparent,rgba(255,255,255,0.0),transparent
     - button size with arrow (descriptions for vertical scrollbars - analogous for horizontal scrollbars)
     -- 1: space above arrow = arrow height
     -- 1.5: space above arrow = 0.5 * arrow height
     -- 2: no space above arrow
    
     NOTE
     - This is a tiny collection of scrollbar tweaks, not a port of 'NewScrollbars' add-on!
     - Small scrollbar width values will corrupt some parts of the ui!
    
    *********************************************************************************************** */
    
    // GENERAL SCROLLBAR SETTINGS
    var hide_scrollbars = false; // default: hide_scrollbars = false
    var hide_scrollbar_buttons = false; // default: hide_scrollbar_buttons = false
    var custom_scrollbar_size = true; // default: custom_scrollbar_size = false
    var custom_scrollbar_size_value = 16; // in px // default: custom_scrollbar_size_value = 17
    var custom_scrollbar_opacity = false; // default: custom_scrollbar_opacity = false
    var custom_opacity_value = "1.0"; // default: custom_opacity_value = "1.0"
    // floating scrollbars
    var enable_scrollbars_on_top_of_webcontent = false; // default: enable_scrollbars_on_top_of_webcontent = false // uses 'custom_scrollbar_size_value' inside its code
    // custom scrollbars
    var enable_custom_scrollbars = true; // default: enable_custom_scrollbars = true
    
    // CUSTOM SCROLLBAR SETTINGS ("custom_scrollbar_" --> "cs_")
    var cs_thumb_border = 0; // in px // default: cs_thumb_border = 0
    var cs_thumb_roundness = 0; // in px // default: cs_thumb_roundness = 0
    var cs_buttons_roundness = 0; // in px // default: cs_buttons_roundness = 0
    var cs_buttons_as_arrows = true; // default: cs_buttons_as_arrows = false // uses 'custom_scrollbar_size_value' inside its code
    var cs_arrows_on_buttons = true; // default: cs_arrows_on_buttons = true // uses 'custom_scrollbar_size_value' inside its code
    // button size with arrow - 1: space above arrow = arrow height // 1.5: space above arrow = 0.5 * arrow height // 2: no space above arrow
    var cs_arrows_on_buttons_buttons_size = 1.5; // default: cs_arrows_on_buttons_buttons_size = 1.5
    // 'flat' scrollbars
    var cs_ignore_color_gradients = false; // default: cs_ignore_color_gradients = false
    
    // CUSTOM SCROLLBAR COLORS/GRADIENTS
    // - background
    var cs_background_color = "#1B1E20"; // default: cs_background_color = "#DDDDDD"
    var cs_background_image_vertical = "unset"; // default: cs_background_image_vertical = "unset"
    var cs_background_image_horizontal = "unset"; // default: cs_background_image_horizontal = "unset"
    // - corner
    var cs_corner_background_color = "#DDDDDD"; // default: cs_corner_background_color = "#DDDDDD"
    var cs_corner_background_image = "linear-gradient(45deg,transparent 30%,rgba(255,255,255,0.5) 50%,transparent 70%),linear-gradient(-45deg,transparent 30%,rgba(255,255,255,0.5) 50%,transparent 70%)"; // default: cs_corner_background_image = "unset"
    // - thumb/slider
    var cs_thumb_color = "#915C47"; // default: cs_thumb_color = "#33CCFF"
    var cs_thumb_image_vertical = "unset"; // default: cs_thumb_image_vertical = "unset"
    var cs_thumb_image_horizontal = "unset"; // default: cs_thumb_image_horizontal = "unset"
    var cs_thumb_hover_color = "#D1E2F2"; // default: cs_thumb_hover_color = "#66FFFF"
    var cs_thumb_hover_image_vertical = "unset"; // default: cs_thumb_hover_image_vertical = "unset"
    var cs_thumb_hover_image_horizontal = "unset"; // default: cs_thumb_hover_image_horizontal = "unset"
    var cs_thumb_border_color = "#33CCFF"; // default: cs_thumb_border_color = "#33CCFF"
    // - buttons
    // var cs_buttons_color = "#5e3a2d"; // default: cs_buttons_color = "#66FFFF"
    var cs_buttons_color = "#FED965"; // default: cs_buttons_color = "#66FFFF"
    var cs_buttons_image_vertical = "linear-gradient(to right,transparent,rgba(255,255,255,0.5),transparent)"; // default: cs_buttons_image_vertical = "unset"
    var cs_buttons_image_horizontal = "linear-gradient(to bottom,transparent,rgba(255,255,255,0.5),transparent)"; // default: cs_buttons_image_horizontal = "unset"
    var cs_buttons_hover_color = "#D1E2F2"; // default: cs_buttons_hover_color = "#33CCFF"
    var cs_buttons_hover_image_vertical = "linear-gradient(to right,transparent,rgba(255,255,255,0.5),transparent)"; // default: cs_buttons_hover_image_vertical = "unset"
    var cs_buttons_hover_image_horizontal = "linear-gradient(to bottom,transparent,rgba(255,255,255,0.5),transparent)"; // default: cs_buttons_hover_image_horizontal = "unset"
    // - button arrows
    var cs_arrows_on_buttons_color = "#5e3a2d"; // default: cs_arrows_on_buttons_color = "#33CCFF"
    var cs_arrows_on_buttons_hover_color = "#D1E2F2"; // default: cs_arrows_on_buttons_hover_color = "#66FFFF"
    
    // unset background image color gradients -> flat scrollbars
    if(cs_ignore_color_gradients==true)
        cs_background_image_vertical
        =cs_background_image_horizontal
        =cs_corner_background_image=cs_thumb_image_vertical
        =cs_thumb_image_horizontal
        =cs_thumb_hover_image_vertical
        =cs_thumb_hover_image_horizontal
        =cs_buttons_image_vertical
        =cs_buttons_image_horizontal
        =cs_buttons_hover_image_vertical
        =cs_buttons_hover_image_horizontal
        ="unset";
    
    /* ******************************************************************************************** */
    /* ******************************************************************************************** */
    /* ******************************************************************************************** */
    
    
    // Scrollbar code
    
    Components.utils.import("resource://gre/modules/Services.jsm");
    var ss =  Components.classes["@mozilla.org/content/style-sheet-service;1"].getService(Components.interfaces.nsIStyleSheetService);
    
    var custom_scrollbars = {
    
        init: function() {
    
        var uri = Services.io.newURI("data:text/css;charset=utf-8," + encodeURIComponent('\
        \
        @namespace html url("http://www.w3.org/1999/xhtml");\
        \
        scrollbar, scrollcorner, scrollbar thumb, scrollbar scrollbarbutton {\
          -moz-appearance: none !important;\
        }\
        scrollbar {\
          background-color: '+cs_background_color+' !important;\
        }\
        scrollbar[orient="vertical"] {\
          background-image: '+cs_background_image_vertical+' !important;\
        }\
        scrollbar[orient="horizontal"] {\
          background-image: '+cs_background_image_horizontal+' !important;\
        }\
        scrollcorner {\
          background-color: '+cs_corner_background_color+' !important;\
          background-image: '+cs_corner_background_image+' !important;\
        }\
        scrollbar thumb {\
          background-color: '+cs_thumb_color+' !important;\
          border-radius: '+cs_thumb_roundness+'px !important;\
          border: '+cs_thumb_border+'px solid '+cs_thumb_border_color+' !important;\
        }\
        scrollbar thumb[orient="vertical"] {\
          background-image: '+cs_thumb_image_vertical+' !important;\
        }\
        scrollbar thumb[orient="horizontal"] {\
          background-image: '+cs_thumb_image_horizontal+' !important;\
        }\
        scrollbar thumb:hover, scrollbar thumb:active {\
          background-color: '+cs_thumb_hover_color+' !important;\
        }\
        scrollbar thumb[orient="vertical"]:hover, scrollbar thumb[orient="vertical"]:active {\
          background-image: '+cs_thumb_hover_image_vertical+' !important;\
        }\
        scrollbar thumb[orient="horizontal"]:hover, scrollbar thumb[orient="horizontal"]:active {\
          background-image: '+cs_thumb_hover_image_horizontal+' !important;\
        }\
        scrollbar scrollbarbutton {\
          background-color: '+cs_buttons_color+' !important;\
          border-radius: '+cs_buttons_roundness+'px !important;\
        }\
        scrollbar[orient="vertical"] scrollbarbutton {\
          background-image: '+cs_buttons_image_vertical+' !important;\
        }\
        scrollbar[orient="horizontal"] scrollbarbutton {\
          background-image: '+cs_buttons_image_horizontal+' !important;\
        }\
        scrollbar scrollbarbutton:hover {\
          background-color: '+cs_buttons_hover_color+' !important;\
        }\
        scrollbar[orient="vertical"] scrollbarbutton:hover {\
          background-image: '+cs_buttons_hover_image_vertical+' !important;\
        }\
        scrollbar[orient="horizontal"] scrollbarbutton:hover {\
          background-image: '+cs_buttons_hover_image_horizontal+' !important;\
        }\
        '), null, null);
    
        ss.loadAndRegisterSheet(uri, ss.AGENT_SHEET);
    
        }
    };
    
    var cs_scrollbars_scrollbar_button_arrows = {
    
      init: function() {
    
      var uri = Services.io.newURI("data:text/css;charset=utf-8," + encodeURIComponent('\
        \
        @namespace html url("http://www.w3.org/1999/xhtml");\
        \
        scrollbar scrollbarbutton, \
        scrollbar[orient="vertical"] scrollbarbutton,\
        scrollbar[orient="horizontal"] scrollbarbutton, \
        scrollbar[orient="vertical"] scrollbarbutton:hover,\
        scrollbar[orient="horizontal"] scrollbarbutton:hover {\
          background-color: unset !important;\
          background-image: unset !important;\
          border-radius: 0px !important;\
        }\
        scrollbar[orient="vertical"] > scrollbarbutton {\
          min-height: '+(custom_scrollbar_size_value/cs_arrows_on_buttons_buttons_size)+'px !important;\
          height: '+(custom_scrollbar_size_value/cs_arrows_on_buttons_buttons_size)+'px !important;\
          max-height: '+(custom_scrollbar_size_value/cs_arrows_on_buttons_buttons_size)+'px !important;\
          min-width: '+custom_scrollbar_size_value+'px !important;\
          width: '+custom_scrollbar_size_value+'px !important;\
          max-width: '+custom_scrollbar_size_value+'px !important;\
        }\
        scrollbar[orient="horizontal"] > scrollbarbutton {\
          min-width: '+(custom_scrollbar_size_value/cs_arrows_on_buttons_buttons_size)+'px !important;\
          width: '+(custom_scrollbar_size_value/cs_arrows_on_buttons_buttons_size)+'px !important;\
          max-width: '+(custom_scrollbar_size_value/cs_arrows_on_buttons_buttons_size)+'px !important;\
          min-height: '+custom_scrollbar_size_value+'px !important;\
          height: '+custom_scrollbar_size_value+'px !important;\
          max-height: '+custom_scrollbar_size_value+'px !important;\
        }\
        scrollbar[orient="vertical"] > scrollbarbutton[type="decrement"] {\
          border-left: '+(custom_scrollbar_size_value/2)+'px solid transparent !important;\
          border-right: '+(custom_scrollbar_size_value/2)+'px solid transparent !important;\
          border-bottom: '+(custom_scrollbar_size_value/2)+'px solid '+cs_buttons_color+' !important;\
        }\
        scrollbar[orient="vertical"] > scrollbarbutton[type="decrement"]:hover {\
          border-bottom: '+(custom_scrollbar_size_value/2)+'px solid '+cs_buttons_hover_color+' !important;\
        }\
        scrollbar[orient="vertical"] > scrollbarbutton[type="increment"] {\
          border-left: '+(custom_scrollbar_size_value/2)+'px solid transparent !important;\
          border-right: '+(custom_scrollbar_size_value/2)+'px solid transparent !important;\
          border-top: '+(custom_scrollbar_size_value/2)+'px solid '+cs_buttons_color+' !important;\
        }\
        scrollbar[orient="vertical"] > scrollbarbutton[type="increment"]:hover {\
          border-top: '+(custom_scrollbar_size_value/2)+'px solid '+cs_buttons_hover_color+' !important;\
        }\
        scrollbar[orient="horizontal"] > scrollbarbutton[type="decrement"] {\
          border-top: '+(custom_scrollbar_size_value/2)+'px solid transparent !important;\
          border-bottom: '+(custom_scrollbar_size_value/2)+'px solid transparent !important;\
          border-right: '+(custom_scrollbar_size_value/2)+'px solid '+cs_buttons_color+' !important;\
        }\
        scrollbar[orient="horizontal"] > scrollbarbutton[type="decrement"]:hover {\
          border-right: '+(custom_scrollbar_size_value/2)+'px solid '+cs_buttons_hover_color+' !important;\
        }\
        scrollbar[orient="horizontal"] > scrollbarbutton[type="increment"] {\
          border-top: '+(custom_scrollbar_size_value/2)+'px solid transparent !important;\
          border-bottom: '+(custom_scrollbar_size_value/2)+'px solid transparent !important;\
          border-left: '+(custom_scrollbar_size_value/2)+'px solid '+cs_buttons_color+' !important;\
        }\
        scrollbar[orient="horizontal"] > scrollbarbutton[type="increment"]:hover {\
          border-left: '+(custom_scrollbar_size_value/2)+'px solid '+cs_buttons_hover_color+' !important;\
        }\
        \
      '), null, null);
    
      ss.loadAndRegisterSheet(uri, ss.AGENT_SHEET);
    
      }
    };
    
    var cs_scrollbars_arrows_on_buttons = {
    
      init: function() {
    
      var uri = Services.io.newURI("data:text/css;charset=utf-8," + encodeURIComponent('\
        \
        @namespace html url("http://www.w3.org/1999/xhtml");\
        \
        scrollbar scrollbarbutton, \
        scrollbar[orient="vertical"] scrollbarbutton,\
        scrollbar[orient="horizontal"] scrollbarbutton, \
        scrollbar[orient="vertical"] scrollbarbutton:hover,\
        scrollbar[orient="horizontal"] scrollbarbutton:hover {\
          border-radius: 0px !important;\
        }\
        \
        scrollbar[orient="vertical"] > scrollbarbutton {\
          min-height: '+(custom_scrollbar_size_value/cs_arrows_on_buttons_buttons_size)+'px !important;\
          height: '+(custom_scrollbar_size_value/cs_arrows_on_buttons_buttons_size)+'px !important;\
          max-height: '+(custom_scrollbar_size_value/cs_arrows_on_buttons_buttons_size)+'px !important;\
          min-width: '+custom_scrollbar_size_value+'px !important;\
          width: '+custom_scrollbar_size_value+'px !important;\
          max-width: '+custom_scrollbar_size_value+'px !important;\
        }\
        scrollbar[orient="horizontal"] > scrollbarbutton {\
          min-width: '+(custom_scrollbar_size_value/cs_arrows_on_buttons_buttons_size)+'px !important;\
          width: '+(custom_scrollbar_size_value/cs_arrows_on_buttons_buttons_size)+'px !important;\
          max-width: '+(custom_scrollbar_size_value/cs_arrows_on_buttons_buttons_size)+'px !important;\
          min-height: '+custom_scrollbar_size_value+'px !important;\
          height: '+custom_scrollbar_size_value+'px !important;\
          max-height: '+custom_scrollbar_size_value+'px !important;\
        }\
        scrollbar[orient="vertical"] > scrollbarbutton[type="decrement"] {\
          border-left: '+(custom_scrollbar_size_value/2)+'px solid transparent !important;\
          border-right: '+(custom_scrollbar_size_value/2)+'px solid transparent !important;\
          border-bottom: '+(custom_scrollbar_size_value/2)+'px solid '+cs_arrows_on_buttons_color+' !important;\
        }\
        scrollbar[orient="vertical"] > scrollbarbutton[type="decrement"]:hover {\
          border-bottom: '+(custom_scrollbar_size_value/2)+'px solid '+cs_arrows_on_buttons_hover_color+' !important;\
        }\
        scrollbar[orient="vertical"] > scrollbarbutton[type="increment"] {\
          border-left: '+(custom_scrollbar_size_value/2)+'px solid transparent !important;\
          border-right: '+(custom_scrollbar_size_value/2)+'px solid transparent !important;\
          border-top: '+(custom_scrollbar_size_value/2)+'px solid '+cs_arrows_on_buttons_color+' !important;\
        }\
        scrollbar[orient="vertical"] > scrollbarbutton[type="increment"]:hover {\
          border-top: '+(custom_scrollbar_size_value/2)+'px solid '+cs_arrows_on_buttons_hover_color+' !important;\
        }\
        scrollbar[orient="horizontal"] > scrollbarbutton[type="decrement"] {\
          border-top: '+(custom_scrollbar_size_value/2)+'px solid transparent !important;\
          border-bottom: '+(custom_scrollbar_size_value/2)+'px solid transparent !important;\
          border-right: '+(custom_scrollbar_size_value/2)+'px solid '+cs_arrows_on_buttons_color+' !important;\
        }\
        scrollbar[orient="horizontal"] > scrollbarbutton[type="decrement"]:hover {\
          border-right: '+(custom_scrollbar_size_value/2)+'px solid '+cs_arrows_on_buttons_hover_color+' !important;\
        }\
        scrollbar[orient="horizontal"] > scrollbarbutton[type="increment"] {\
          border-top: '+(custom_scrollbar_size_value/2)+'px solid transparent !important;\
          border-bottom: '+(custom_scrollbar_size_value/2)+'px solid transparent !important;\
          border-left: '+(custom_scrollbar_size_value/2)+'px solid '+cs_arrows_on_buttons_color+' !important;\
        }\
        scrollbar[orient="horizontal"] > scrollbarbutton[type="increment"]:hover {\
          border-left: '+(custom_scrollbar_size_value/2)+'px solid '+cs_arrows_on_buttons_hover_color+' !important;\
        }\
        \
      '), null, null);
    
      ss.loadAndRegisterSheet(uri, ss.AGENT_SHEET);
    
      }
    };
    
    var scrollbar_buttons = {
    
      init: function() {
    
      var uri = Services.io.newURI("data:text/css;charset=utf-8," + encodeURIComponent('\
        \
        @namespace html url("http://www.w3.org/1999/xhtml");\
        \
        scrollbar scrollbarbutton {\
          opacity: 0 !important;\
        }\
        scrollbar[orient="vertical"] scrollbarbutton {\
          min-height: 1px !important;\
          height: 1px !important;\
          max-height: 1px !important;\
        }\
        scrollbar[orient="horizontal"] scrollbarbutton {\
          min-width: 1px !important;\
          width: 1px !important;\
          max-width: 1px !important;\
        }\
        \
      '), null, null);
    
      ss.loadAndRegisterSheet(uri, ss.AGENT_SHEET);
    
      }
    };
    
    var scrollbar_size = {
    
      init: function() {
    
      var uri = Services.io.newURI("data:text/css;charset=utf-8," + encodeURIComponent('\
        \
        @namespace html url("http://www.w3.org/1999/xhtml");\
        \
        scrollbar[orient="vertical"] scrollbarbutton {\
          min-width: 0 !important;\
          width: '+custom_scrollbar_size_value+'px !important;\
          max-width: '+custom_scrollbar_size_value+'px !important;\
        }\
        scrollbar[orient="horizontal"] scrollbarbutton {\
          min-height: 0 !important;\
          height: '+custom_scrollbar_size_value+'px !important;\
          max-height: '+custom_scrollbar_size_value+'px !important;\
        }\
        \
      '), null, null);
    
      ss.loadAndRegisterSheet(uri, ss.AGENT_SHEET);
    
      }
    };
    
    var floating_scrollbars = {
    
      init: function() {
    
      var uri = Services.io.newURI("data:text/css;charset=utf-8," + encodeURIComponent('\
        \
        @namespace html url("http://www.w3.org/1999/xhtml");\
        \
        scrollbar {\
          position: relative !important;\
          z-index: 1000000000 !important;\
        }\
        scrollbar[orient="vertical"],\
        scrollbar[orient="horizontal"],\
        scrollbar, scrollcorner {\
          background-color: transparent !important; \
          background-image: unset !important; \
        }\
        scrollbar[orient="vertical"] {\
          -moz-margin-start: -'+custom_scrollbar_size_value+'px !important;\
          width: '+custom_scrollbar_size_value+'px !important;\
        }\
        scrollbar[orient="horizontal"] {\
          margin-top: -'+custom_scrollbar_size_value+'px !important;\
          height: '+custom_scrollbar_size_value+'px !important;\
        }\
        \
      '), null, null);
    
      ss.loadAndRegisterSheet(uri, ss.AGENT_SHEET);
    
      }
    };
    
    var scrollbar_opacity = {
    
      init: function() {
    
      var uri = Services.io.newURI("data:text/css;charset=utf-8," + encodeURIComponent('\
        \
        @namespace html url("http://www.w3.org/1999/xhtml");\
        \
        scrollbar {\
          opacity: '+custom_opacity_value+' !important;\
        }\
        \
      '), null, null);
    
      ss.loadAndRegisterSheet(uri, ss.AGENT_SHEET);
    
      }
    };
    
    var remove_scrollbars = {
    
      init: function() {
    
      var uri = Services.io.newURI("data:text/css;charset=utf-8," + encodeURIComponent('\
        \
        @namespace html url("http://www.w3.org/1999/xhtml");\
        \
        scrollbar, scrollcorner {\
          display: none !important;\
          visibility: collapse !important;\
        }\
        \
      '), null, null);
    
      ss.loadAndRegisterSheet(uri, ss.AGENT_SHEET);
    
      }
    };
    
    // enable settings as configured above
    if(enable_custom_scrollbars==true) custom_scrollbars.init();
    if(cs_buttons_as_arrows==true && hide_scrollbars==false) cs_scrollbars_scrollbar_button_arrows.init();
    if(cs_arrows_on_buttons==true && cs_buttons_as_arrows==false && hide_scrollbars==false) cs_scrollbars_arrows_on_buttons.init();
    if(hide_scrollbar_buttons==true) scrollbar_buttons.init();
    if(custom_scrollbar_size==true) scrollbar_size.init();
    if(enable_scrollbars_on_top_of_webcontent==true) floating_scrollbars.init();
    if(custom_scrollbar_opacity==true) scrollbar_opacity.init();
    if(hide_scrollbars==true) remove_scrollbars.init();
    Alles anzeigen
  • Url aus Dropdown entfernen

    • Dharkness
    • 3. Februar 2022 um 15:13
    Zitat von 2002Andreas

    Hier in keinem meiner aktuellen Profilen

    Hm, hier auch nur in meinem primären Profil.

  • Url aus Dropdown entfernen

    • Dharkness
    • 3. Februar 2022 um 14:46
    Zitat von klaugee

    Früher ging das mal mit den Pfeiltasten nach unten bis zur entsprechenden URL , dann Umschalttaste gedrückt halten und entfernen Taste drücken.

    Hm, geht hier noch immer so, ist das auch im #Fehlerbehebungsmodus so?

  • Addons-Manager anpassen

    • Dharkness
    • 2. Februar 2022 um 14:10
    Zitat von FuchsFan

    Das gibt Ärger, denn der Titel wird dann doppelt angezeigt.

    Hm, hier nicht.

  • Addons-Manager anpassen

    • Dharkness
    • 2. Februar 2022 um 12:01
    Zitat von FuchsFan

    denn unter Farbgebung gibt es keine Anzeige

    Das ist hier bei mir ja auch so gewollt.


    Ich würde das dann auch wieder separat anpassen ↓, denn die Farben müssen dem Part ja auch wieder angepasst werden.

    CSS
    .monochromatic-addon-list > section > addon-card > div > div > div > div:nth-child(1) .addon-name-link:before {
        font-weight: bold !important;
        text-decoration: underline !important;
        counter-increment: section;
        content: counter(section, decimal-leading-zero)".";
        border: 2px solid #0082FC !important;
        color: #C72F2E !important;
        padding: 2px 5px !important;
        margin-top: 0px !important;
    }
  • Addons-Manager anpassen

    • Dharkness
    • 2. Februar 2022 um 10:43

    Meine Variante dazu sieht so ↓ aus, die Zählung geschieht vorne im jeweils gelisteten Add-on.

    CSS
    #main > addon-list:nth-child(1) > section > addon-card:nth-child(n+1) > div:nth-child(1) > div:nth-child(2)::before {
        font-size: 18px !important;
        color: yellow !important; /* Farbe nach Wahl anpassen. */
        font-weight: bold !important;
        counter-increment: section;
        content: counter(section, decimal-leading-zero)".) ";
        margin-left: -8px !important;
        padding-right: 8px !important;
        margin-top: 4px !important;
    }

    P.S.: In meinem primären Profil ist die Anpassung dafür noch deutlich aufwändiger, denn da sind die aktiven und inaktiven Add-ons deutlich unterschiedlich im Aussehen.

  • Firefox öffnet neue Fenster nicht maximiert

    • Dharkness
    • 2. Februar 2022 um 10:32
    Zitat von chris135

    und mir bleibt leider nur der weg über windows-7 plus upgrade, ich habe keinen anderen datenträger.

    Dann lade Dir ein Windows 10 Abbild mithilfe des von Microsoft vorgesehenen Tools → #Microsoft Download-Tool jetzt herunterladen herunter, auf der Seite nur ein kleines Stück runter scrollen.

  • Probleme mit dem Addons-Manager

    • Dharkness
    • 1. Februar 2022 um 15:31

    Hallo 2002Andreas,

    die Firma dankt.

  • Probleme mit dem Addons-Manager

    • Dharkness
    • 1. Februar 2022 um 14:44
    Zitat von Sören Hentzschel

    Erweiterungen können auf die Add-ons-Verwaltung von Firefox keinen Einfluss nehmen.

    Werden im Fehlerbehebungsmodus aller Prefs temporär auf ihre Default-Werte gesetzt?

  • Probleme mit dem Addons-Manager

    • Dharkness
    • 1. Februar 2022 um 13:26
    Zitat von milupo

    Siehe hier:

    Zitat von BarbaraZ-

    Fehlerbehebungsmodus war auch negativ. Werde weitersuchen und (hoffentlich) finden.

    Öhm, im Fehlerbehebungsmodus sind ist auch CSS nicht aktiv, deshalb ist der hier irrelevant.

  • Probleme mit dem Addons-Manager

    • Dharkness
    • 1. Februar 2022 um 13:16
    Zitat von BarbaraZ-

    Und ja, ich hatte nicht nur die Codes, sondern auch die Scripte deaktiviert gehabt.

    Und was ist mit den Erweiterungen?

  • Probleme mit dem Addons-Manager

    • Dharkness
    • 1. Februar 2022 um 10:43
    Zitat von BrokenHeart

    Da aber noch etwas bei ihr wirkt, was diese Verschiebung verursacht

    Ja, aber sie hatte ja auch geschrieben, das kein anderen Code dazwischen funkt, was also gibt es, was da noch seine Finger im Spiel haben könnte, ein Javascript? Kann ein Javascript überhaupt auf about:addons zugreifen?

  • Probleme mit dem Addons-Manager

    • Dharkness
    • 1. Februar 2022 um 10:29
    Zitat von BrokenHeart

    Der obige Code ist jetzt keine allgemeine Lösung, sondern eigentlich nur die Symptombekämpfung von Ursachen, die einerseits durch den Code zur Darstellung der Versionsnummer selbst erzeugt wird und andererseits etwas, was bei BarbaraZ- auf die Abstände der Einträge wirkt und sie dadurch gegeneinander verschiebt.

    Hm, hier funktioniert das alte CSS-Schnipsel in mehreren Profilen ohne Probleme, das neue CSS-Schnipsel erzeugt hier das von BarbaraZ- gezeigte Problem, aber sie sagt auch, das das Schnipsel alleine, als wohl keine weiteren Anpassungen bei Ihr das Problem zeigt, da muss noch irgendwas anderes rein spielen, siehe ↓.

    Zitat von BarbaraZ-

    wie es aussieht, funkt keine anderer Code dazwischen. Hatte ich bereits in #1 geschrieben.

    Zuerst alle deaktiviert, dann Stück für Stück wieder "scharf" gesetzt.

  • Probleme mit dem Addons-Manager

    • Dharkness
    • 31. Januar 2022 um 13:03
    Zitat von BarbaraZ-

    sobald ich diesen Code scharf setze, wird die Schrift doppelt angezeigt.

    Hm, hier nicht, funkt Dir da eventuell noch ein anderes CSS dazwischen?


    Zitat von BarbaraZ-

    #main > addon-list:nth-child(1) > section:nth-child(2) > addon-card:nth-child(n+1) > div:nth-child(1) > div:nth-child(2)::before

    Willst Du wirklich nur die aktivierten Add-ons zählen?

    Wenn nicht, kannst Du das dahingehend ↓ ändern und es werden auch die deaktivierten Add-ons mitgezählt.

    CSS
    #main > addon-list:nth-child(1) > section > addon-card:nth-child(n+1) > div:nth-child(1) > div:nth-child(2)::before {
  • Eine Startpage oder auch ein Speeddialersatz

    • Dharkness
    • 29. Januar 2022 um 17:19
    Zitat von Mira_Belle

    Nun, dann ist das Projekt "Eine Startseite als Ersatz für Speed Deal" abgeschlossen.

    Wie wäre es, das Endergebnis nochmal hier einzustellen?

Unterstütze uns!

Jährlich (2025)

92,9 %

92,9% (604,17 von 650 EUR)

Jetzt spenden
  1. Kontakt
  2. Datenschutz
  3. Impressum
Community-Software: WoltLab Suite™
Mastodon