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. Mira_Belle

Beiträge von Mira_Belle

  • Einstellungen in der userChrome.css

    • Mira_Belle
    • 9. August 2022 um 12:09
    Zitat von 2002Andreas

    Laut deinem User-Agenten nutzt du Fx 98, ist dem so?

    Du nutzt schon andere Scripte?

    Mh, :/ .

    Habe den "User-Agent Switcher" in Anwendung.

    Jetzt deaktiviert!

    FF ist z.B. noch 103.01. Ab morgen wohl 103.02. ;)

    Andere Scripe?

    Einmal userChrome.js und einmal userChromeShadow.uc.js

    Starte den FF jetzt nach den "Deaktivieren" des "User-Agent Switcher" noch einmal neu.

    Wieder da!

    Nix.

    Nochmal den "startupCache" leeren?

  • Einstellungen in der userChrome.css

    • Mira_Belle
    • 9. August 2022 um 11:49
    Zitat von 2002Andreas

    ...

    Zitat von Dr.Rock

    Mir wird das jetzt zu tricky und kryptisch

    Wenn du noch magst, dann entfern bitte mal den Inhalt aus deinem Script, und füg diesen Text wieder neu ein. Speichern, und den Firefox danach neu starten und testen.

    Ich habe die Breite vom Thumb mit deinem alten Wert noch zusätzlich angepasst.

    Das sieht dann so aus bei Stern.de

    (die Bilder bitte zum vergrößern anklicken)

    JavaScript
    "use strict";
    
    /* Firefox 57+ userChrome.js tweaks - SCROLLBARS ********************************************** */
    /* by Aris (aris-addons@gmx.net)*************************************************************** */
    /* Github: https://github.com/aris-t2/customscrollbarsforfx *********************************** */
    /* ******************************************************************************************** */
    
    /* ******************************************************************************************** */
    /* Custom Scrollbars for Firefox ************************************************************** */
    /* version 1.0.5 ****************************************************************************** */
    /* ******************************************************************************************** */
    
    /* ***********************************************************************************************
    
     README
     
     !!! Important !!!
     
     Preferences have to be set to false, for this to work on recent Firefox builds (102+)
     
     about:config >
     widget.windows.overlay-scrollbars.enabled > false (Windows)
     widget.gtk.overlay-scrollbars.enabled > false (Linux/MacOSX)
     
     
     [!] 'Method 2' is 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))
     - 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 = 20; // 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 = 1; // in px // default: cs_thumb_border = 0
    var cs_thumb_roundness = 80; // in px // default: cs_thumb_roundness = 0
    var cs_buttons_roundness = 0; // in px // default: cs_buttons_roundness = 0
    var cs_thumb_minimal_size = 80; // in px
    var cs_buttons_as_arrows = false; // 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 = "#DDDDDD"; // default: cs_background_color = "#DDDDDD"
    var cs_background_image_vertical = "linear-gradient(to right,transparent,rgba(255,255,255,0.5),transparent)"; // default: cs_background_image_vertical = "unset"
    var cs_background_image_horizontal = "linear-gradient(to bottom,transparent,rgba(255,255,255,0.5),transparent)"; // 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 = "#33CCFF"; // default: cs_thumb_color = "#33CCFF"
    var cs_thumb_image_vertical = "linear-gradient(to right,transparent,rgba(255,255,255,0.5),transparent)"; // default: cs_thumb_image_vertical = "unset"
    var cs_thumb_image_horizontal = "linear-gradient(to bottom,transparent,rgba(255,255,255,0.5),transparent)"; // default: cs_thumb_image_horizontal = "unset"
    var cs_thumb_hover_color = "red"; // default: cs_thumb_hover_color = "#66FFFF"
    var cs_thumb_hover_image_vertical = "linear-gradient(to right,transparent,rgba(255,255,255,0.5),transparent)"; // default: cs_thumb_hover_image_vertical = "unset"
    var cs_thumb_hover_image_horizontal = "linear-gradient(to bottom,transparent,rgba(255,255,255,0.5),transparent)"; // default: cs_thumb_hover_image_horizontal = "unset"
    var cs_thumb_border_color = "#33CCFF"; // default: cs_thumb_border_color = "#33CCFF"
    // - buttons
    var cs_buttons_color = "#66FFFF"; // 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 = "#33CCFF"; // 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 = "#33CCFF"; // default: cs_arrows_on_buttons_color = "#33CCFF"
    var cs_arrows_on_buttons_hover_color = "#66FFFF"; // 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;\
    min-height: '+cs_thumb_minimal_size+'px !important;\
    }\
    scrollbar thumb[orient="horizontal"] {\
    background-image: '+cs_thumb_image_horizontal+' !important;\
    min-width: '+cs_thumb_minimal_size+'px !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 thumb[orient="vertical"] {\
          min-height: 80px !important;\
       }\
        scrollbar thumb[orient="horizontal"] {\
          min-width: 80px !important;\
       }\
        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
    Alles anzeigen

    Also ich wollte das ausprobieren.

    Habe in about:config die Einstellung widget.windows.overlay-scrollbars.enabled auf false gesetzt.

    Das Script kopiert, Textdatei "Neu.txt." danach in "custom_scrollbars.uc.js" umbenannt und im chrome-Ordner abgespeicher.

    FF beendet und nach einem Augenblick wieder gestartet.

    =O Es tut sich nix. :/

    Wo liegt mein Fehler? Was mache ich Falsch?

    Nachtrag!

    Habe auch den "startupCache" geleert. Also FF beendet, inhalt gelöscht, FF neu gestartet.

    Keine Veränderung.

  • Einstellungen in der userChrome.css

    • Mira_Belle
    • 7. August 2022 um 19:38

    Ich habe jetzt auf die Schnelle tatsächlich nur eine Page gefunden, die die Scrollbar beeinflußt!

    Deskmodder.de
    News zum Thema Microsoft, Windows 11 / 10, sowie anderen Neuigkeiten aus dem Netz, viele Tipps und individuelle Hilfe bei Problemen in unserem Forum ●…
    www.deskmodder.de

    Da ist sie "dunkel"!

    Bei allen anderen Seiten, die ich so an surfe, ist diese "hell".

    Nachtrag!

    Fernsehprogramm heute: schnell und übersichtlich | klack.de

    Auch "dunkel"!

  • Probleme beim Firefox durch Deaktivieren und Aktivieren der Add-ons

    • Mira_Belle
    • 6. August 2022 um 18:31
    Zitat von Maik123

    ...

    Er hat nur einfach die Add Ons nicht mehr oben angezeigt die ich neu hinzufügte.

    Mit "Systemleiste anpassen" oder Apps auch im Privat Modus zu lassen hat es ebenfalls nicht geklappt.

    Das Problem konnte ich nur lösen indem ich Firefox und das User Profil löschte.

    Ich habe einige Add Ons.

    2 Add Ons sind dauerhaft aktiv:

    UMatrix

    UBlock Origin

    Nur bei Bedarf aktiv werden:

    DownThemAll!

    SaveFrom.net helper

    1qvid - Free Video Downloader

    ...
    Alles anzeigen

    Auf das "Illegal" oder nicht gehe ich mal nicht ein, da das ja gar nicht das ursächliche Problem ist!

    Du schriebst, Du hättest einige Add Ons.

    Sind "einige" nur die Fünf?

    Und verstehe ich das richtig, wenn Du eines davon aktivierst, wird es nicht "mehr" in der Adressbar angezeigt?

    D.h. Du hast keinen Zugriff darauf?

    Was geschieht, wenn Du es deinstallierst und es nach einem "Neustart" wieder aus dem Store installierst?

    Taucht dann das Symbol wieder auf?

  • FX 103 - plötzlich alles zu groß

    • Mira_Belle
    • 6. August 2022 um 13:06
    Zitat von pat_42
    Beitrag gelöscht

    1) Ansichtssache!

    2) Also ich sehe mich als "normale Anwenderin" von Firefox und bin kein Freak.

    Mit dieser Aussage hast Du Dir selbst ins Knie geschossen, denn Du bekommst von mir nur noch genau einen Ratschlag!

    3) Die Entwickler von Firefox haben definitiv nicht "herum gepfuscht", sondern konsequent die Vorgaben Microsofts umgesetzt!

    Wenn Du also mit Firefox nicht zufrieden bist und Dir nichts Besseres einfällt, als beleidigend gegenüber anderen zu werden,

    ja verdammt dann geh doch zu NETTO!

    Nutz' halt einen anderen Browser und werde damit glücklich!

  • Startseiten

    • Mira_Belle
    • 5. August 2022 um 14:51
    Zitat von Fuchsbau

    Oh, doch so gravierend. Dann muss ich wohl zum Admin gehen, da es ein Dienstrechner ist. :| Programm ist im ersten Schritt erst einmal gelöscht worden.

    8| OH.

    Nun, erkläre ihm genau, was passiert ist.

    Dass Du das Programm "Startfenster" gelöscht hast und dass seit dem der Firefox wieder normal funktioniert.

    Er wird dann entscheiden, ob und inwieweit der Rechner überprüft werden muss.

  • Größe der Menüeleisten einstellbar?

    • Mira_Belle
    • 5. August 2022 um 12:51
    Zitat von Sören Hentzschel

    Jemand, der Dinge kleiner haben möchte, möchte diese deswegen noch lange nicht komplett ausblenden.

    Ach, Sören, beachte doch mal die Smileys.

    Falls es nicht so erkenntlich ist, dass das alles nicht so bierernst gemeint ist,

    ich habe den Beitrag mal editiert.

  • Startseiten

    • Mira_Belle
    • 5. August 2022 um 12:50
    Zitat von Fuchsbau

    Das Programm "Startfenster" konnte ich finden und löschen. Jetzt funktioniert der Fuchs wieder wie gewünscht. Vielen Dank!

    Damit ist es aber nicht getan!

    Du hast Dir Deine Rechner, bzw. Dein System versaut!!

    Deinstalliere den VLC Plus Player!

    Bereinige Dein System, am Besten bootest Du Dein System von einem Stick!

    Wenn es dann Virenfrei und auch ohne Adware ist, installiere Dir den "richtigen" VCL Player!

  • Größe der Menüeleisten einstellbar?

    • Mira_Belle
    • 5. August 2022 um 12:19
    Zitat von maru

    Hallöchen.

    ...

    Ciao

    Nun habe ich Deinen "Frustbeitrag" mehr als zweimal durchgelesen und verstehe Dein Problem immer noch nicht!

    [ironie on]

    Erstens, Du könntest Dir eine Brille anschaffen, wenn Du schlecht siehst. ^^

    Zweitens, wenn Dich Titel- & Lesezeichen-Leisen stören, die kannst Du ausblenden. :/

    Und zu guter Letzt, auch die Tableiste kannst Du, wenn es denn unbedingt sein muss, per CSS "ausblenden", :huh:

    jedoch beraubst Du Dich der Funktionalität zwischen verschiedenen "Tabs" hin und her zu schalten!

    Ach, und es gäbe dann ja auch noch die Möglichkeit, Du kaufst Dir einen Beamer und wirfst das Bild an Nachbars Hauswand. 8o

    [ironie off]

    Und im Ernst, Du kannst all Deine Wünsche auch mittels CSS umsetzen.

  • Popup-Menü der Ordner aus Lesezeichen-Symbolleiste anpassen

    • Mira_Belle
    • 2. August 2022 um 15:53
    Zitat von FuchsFan

    Mit meinem restlichen Code sieht es dann so aus ( Code aus userShadow.css und userChrome.css).

    Hey, schaut gut aus. :thumbup:

    Und Danke.

  • Popup-Menü der Ordner aus Lesezeichen-Symbolleiste anpassen

    • Mira_Belle
    • 2. August 2022 um 14:13
    Zitat von 2002Andreas

    Bin zwar nicht angesprochen, aber so sieht das dann aus:

    Ah, Danke.

  • Popup-Menü der Ordner aus Lesezeichen-Symbolleiste anpassen

    • Mira_Belle
    • 2. August 2022 um 13:14

    @BrokenHeart

    Auch von mir ein Danke für das angepasste Script! :)

    Zitat von FuchsFan

    Bis zur Version 103 verwende ich diesen Code in der userShadow.css um einen Teil des Menüs anzupassen.

    CSS
    /* Hintergrund im Popup der Lesezeichen-Ordner aus der Lesezeichen-Symbolleiste */
    #PlacesToolbar menupopup[placespopup="true"]::part(arrowscrollbox) {
        border: 1px solid magenta !important; 
        max-width: 350px !important;
        background-color: #ded1a9 !important; 
        margin-top: -4px !important;
        margin-left: -4px !important;
        margin-right: -4px !important;
        margin-bottom: -6px !important;
    }

    Kannst Du mir bitte mal ein Bildchen dazu machen?

    Gruß

    Mira

  • shadow of the box - #window-modal-dialog ?

    • Mira_Belle
    • 2. August 2022 um 10:57

    Ok, Ihr habt mich überzeugt!

    Aber ich halte mich dennoch nicht daran. ;)

    Begründung!

    Wenn ich die px nicht da stehen habe und manches Mal doch den Wert ändere,

    denke ich nicht immer daran, dass da noch eine Einheit hin muss,

    ist mir schon in der Schule so gegangen und deshalb habe ich mir angewöhnt

    immer die Einheiten anzugeben.

    Gruß

    Mira

  • Haken entfernen im Download Popup

    • Mira_Belle
    • 1. August 2022 um 22:58
    Zitat von FuchsFan

    Wie bekomme ich den Haken aus dem Download-Popup weg?

    Es scheint so als überlagern sich da zwei "Einstellungen" bzw. Icons.

    Hast Du den dazugehörigen Code parat?

    Gruß

    Mira

  • shadow of the box - #window-modal-dialog ?

    • Mira_Belle
    • 1. August 2022 um 22:19
    Zitat von .DeJaVu

    Die 0 hat nicht mal in der Mathematik eine Einheit, die Null ist einheitenlos ;)

    Na ja. 0°C. :/

    Oder 00:00 Uhr.

    Und ist px wirklich eine "Einheit"? Ausgeschrieben wären das doch Pixels, oder?

    Aber ist im Grunde wurscht, wie sage ich immer, es zählt was gemeint ist. :D

    Gruß

    Mira

  • shadow of the box - #window-modal-dialog ?

    • Mira_Belle
    • 1. August 2022 um 21:37

    Versuche es mit vier Werten!

    CSS
    /* offset-x | offset-y | blur-radius | spread-radius | color */
    box-shadow: 0px 0px 5px 0px red !important;

    Gruß

    Mira

    Ja, bei dem Wert 0 sollte, kann man die px weglassen.

    box-shadow - CSS | MDN
    Die CSS-Eigenschaft box-shadow beschreibt einen oder mehrere Schatteneffekte als eine kommaseparierte Liste.
    developer.mozilla.org
  • Firefox Translations, die Übersetzungsleiste ganz unten erscheinen lassen

    • Mira_Belle
    • 1. August 2022 um 21:27
    Zitat von Sören Hentzschel

    Was hat es mit den 99 Prozent auf sich?

    Beim Testen hat sich da der Scrollbalken mit eingemischt!

    Warum auch immer. :/

    Steht jetzt in der CSS mit 100% und ist perfekt.

    Gruß

    Mira

  • Firefox Translations, die Übersetzungsleiste ganz unten erscheinen lassen

    • Mira_Belle
    • 1. August 2022 um 21:00

    Was für'ne schwere Geburt!

    Lag an mir, stand auf dem Schlauch!

    CSS
    #tab-notification-deck {
        position: fixed;
        z-index: 1;
        bottom: 0;
        width: 99%;
    }

    Ist der Code, den ich suchte (brauchte).

    Danke Dir .DeJaVu & Sören.

    Nun ist es so, wie ich es gerne hätte.

    Gruß

    Mira

  • Firefox Translations, die Übersetzungsleiste ganz unten erscheinen lassen

    • Mira_Belle
    • 1. August 2022 um 20:40
    Zitat von .DeJaVu

    Sören und ich schrieben: bottom: 0 !important;

    Ergründe, warum das bei dir nicht funktioniert!

    Habe bei mir alle CSS-Dateien ausgeschaltet

    und der Code

    CSS
    .notificationbox-stack {
        position: fixed;
        z-index: 1;
        bottom: 0;
        width: 100%;
    }

    ... bewirkt nichts!

    Die Übersetzungsleiste "steht" an Ort und Stelle!

    In diesem Fall erscheint sie unter der Lesezeichenleiste,

    aber über dem Fensterinhalt.

    Gruß

    Mira

    Der nächste Schritt wäre dann alle Add-ons abzuschalten außer Firefox Translations

  • Firefox Translations, die Übersetzungsleiste ganz unten erscheinen lassen

    • Mira_Belle
    • 1. August 2022 um 20:26

    Zum Testen geht auch

    CSS
    .notificationbox-stack {
        top: 500px;
        width: 100%;
    }

    Dann "steht" die Leiste halt in Mitte des Fensters!

    Es muss doch eine Möglichkeit geben, sie unten am Fensterrahmen anzupinnen.

    Gruß

    Mira

Unterstütze uns!

Jährlich (2025)

105,8 %

105,8% (687,41 von 650 EUR)

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