Custom Scrollbars in Firefox 63/64+

Customizable scrollbar for Gecko based browsers (Firefox).

当前为 2020-06-13 提交的版本,查看 最新版本

/* ==UserStyle==
@name         Custom Scrollbars in Firefox 63/64+
@namespace    scrollbar-c-w
@version      1.0.1
@description  Customizable scrollbar for Gecko based browsers (Firefox).
@author       krystian3w
@license      CC-BY-SA-4.0 (https://creativecommons.org/licenses/by-sa/4.0/)
@preprocessor uso
@var color bar "bar" #C1C1C1
@var color bg "background" #F1F1F1
@var select scrollbar-width "width size" ["auto","thin","none"]
@var select inherit "Change width all scrollbars" {yes: "", no: "/* disable inherit"}
==/UserStyle== */
@-moz-document regexp("^(https?|moz-extension|ftp)\\:\\/\\/.*$") {
    :root {
        scrollbar-face-color: /*[[bar]]*/ !important;
        scrollbar-track-color: /*[[bg]]*/ !important;

        scrollbar-color: /*[[bar]]*/ /*[[bg]]*/ !important;
        scrollbar-width: /*[[scrollbar-width]]*/ !important;
    }

    select:not([multiple]),
    select:not([size]) {
        scrollbar-width: auto !important;
    }

    /*[[inherit]]*/
    :root * {
        scrollbar-width: inherit  !important;
    }
    /* end of disable inherit*/
}

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址