browser/themes/windows/devtools/floating-scrollbars.css

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     1 @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
     3 scrollbar {
     4   -moz-appearance: none !important;
     5   position: relative;
     6   background-color: transparent;
     7   background-image: none;
     8   z-index: 2147483647;
     9   padding: 2px;
    10 }
    12 scrollbar[orient="vertical"] {
    13   -moz-margin-start: -10px;
    14   min-width: 10px;
    15   max-width: 10px;
    16 }
    18 scrollbar[orient="horizontal"] {
    19   margin-top: -10px;
    20   min-height: 10px;
    21   max-height: 10px;
    22 }
    24 scrollbar thumb {
    25   -moz-appearance: none !important;
    26   border-width: 0px !important;
    27   background-color: rgba(170,170,170,0.2) !important;
    28   border-radius: 3px !important;
    29 }
    31 scrollbar scrollbarbutton, scrollbar gripper {
    32   display: none;
    33 }

mercurial