first part of syncing LCARStrek with Firefox 45-48 devtools theme changes
[themes.git] / LCARStrek / devtools / floating-scrollbars-dark-theme.css
1 @namespace xul url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
2
3 xul|scrollbar {
4   position: relative;
5   background-color: transparent;
6   background-image: none;
7   z-index: 2147483647;
8   padding: 2px;
9 }
10
11 /* Scrollbar code will reset the margin to the correct side depending on
12    where layout actually puts the scrollbar */
13 xul|scrollbar[orient="vertical"] {
14   margin-left: -10px;
15   min-width: 3px;
16   max-width: 3px;
17 }
18
19 xul|scrollbar[orient="horizontal"] {
20   margin-top: -10px;
21   min-height: 3px;
22   max-height: 3px;
23 }
24
25 xul|scrollbar xul|slider {
26 /*  background-color: transparent; */
27   border-radius: 3px;
28 }
29
30 xul|scrollbar:not(:hover) xul|slider {
31   background-color: rgba(64, 64, 72, 0.3);
32 }
33
34 xul|scrollbar xul|thumb {
35   border-width: 0px !important;
36 /*  background-color: rgba(0,0,0,0.2) !important; */
37   background-image: none;
38   border-radius: 3px !important;
39 }
40
41 xul|scrollbar:not(:hover) xul|thumb {
42   background-color: rgba(160, 144, 144, 0.3) !important;
43 }
44
45 xul|scrollbar xul|scrollbarbutton,
46 xul|scrollbar xul|gripper {
47   display: none !important; /* need !important to override forced display in LCARStrek */
48 }