Custom Scrollbars in Firefox 63/64+

Customizable scrollbar for Gecko based browsers (Firefox).

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

/* ==UserStyle==
@name         Custom Scrollbars in Firefox 63/64+
@namespace    scrollbar-c-w
@version      1.0.0
@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 (firefox only)" ["auto","thin","none"]
==/UserStyle== */
@-moz-document regexp(".*") {
    :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;
    }

    :root * {
        scrollbar-width: inherit !important;
    }
}

QingJ © 2025

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