-
Notifications
You must be signed in to change notification settings - Fork 0
/
userChrome.css
60 lines (47 loc) · 1.12 KB
/
userChrome.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/* New version for new Firefox 65 */
#navigator-toolbox {
--headerbar-height: 48px;
--navbar-height: var(--headerbar-height);
--background:
linear-gradient(rgb(245, 245, 245), rgb(218, 218, 218));
/*collapse tab bar*/
margin-top: calc(var(--headerbar-height) *(-1));
background: var(--background);
padding-left: 1em;
padding-right: 0.5em;
}
#titlebar {
height: var(--headerbar-height);
}
#nav-bar {
height: var(--navbar-height);
margin-right: 88px;
background: transparent !important;
}
.titlebar-buttonbox {
transform: translateY(var(--headerbar-height));
}
/* other fixes */
* {
transition: 0.5s;
}
*:hover {
transition: 0.1s;
}
#navigator-toolbox::after { display: none !important; }
#pageActionButton, #pageActionSeparator { display: none !important; }
toolbox textbox {
border-radius: 4px !important;
}
.sidebar-splitter {
border: 0 !important;
-moz-appearance: unset !important;
background-color: ThreeDShadow !important;
opacity: 0.1;
}
.sidebar-splitter:hover {
opacity: 0.5;
}
#sidebar-header {
display: none;
}