-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuserChrome.css
More file actions
58 lines (47 loc) · 1.63 KB
/
userChrome.css
File metadata and controls
58 lines (47 loc) · 1.63 KB
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
:root {
--toolbar-non-lwt-bgcolor: -moz-dialog !important;
--toolbar-non-lwt-bgimage: linear-gradient(rgba(255,255,255,.075), rgba(255,255,255,.075)) !important;
--tab-selected-non-lwt-bgimage: linear-gradient(rgba(255,255,255,.15), rgba(255,255,255,.15)) !important;
--toolbar-bgimage: var(--toolbar-non-lwt-bgimage) !important;
--tab-selected-bgimage: var(--tab-selected-non-lwt-bgimage) !important;
}
.browser-toolbar:not(.titlebar-color) {
background-image: var(--toolbar-bgimage);
}
@media not (prefers-contrast) {
:root:not(:-moz-lwtheme) {
--toolbar-non-lwt-bgcolor: #f9f9fb;
--toolbar-field-background-color: rgb(240,240,244);
}
}
:root:-moz-lwtheme {
--toolbar-bgimage: none;
--tab-selected-bgimage: none;
}
#customization-container {
background-image: var(--toolbar-non-lwt-bgimage);
}
#customization-container:-moz-lwtheme {
background-image: var(--toolbar-bgimage), linear-gradient(var(--toolbar-bgcolor), var(--toolbar-bgcolor));
}
.tabbrowser-tab[visuallyselected=true] {
position: relative;
z-index: 2;
}
.tab-label:is([selected], [attention]) {
font-weight: normal !important;
}
#tabbrowser-arrowscrollbox:not([scrolledtostart])::part(overflow-start-indicator),
#tabbrowser-arrowscrollbox:not([scrolledtoend])::part(overflow-end-indicator) {
z-index: 3;
}
#TabsToolbar #firefox-view-button[open] > .toolbarbutton-icon,
.tab-background:is([selected], [multiselected]) {
background-image: var(--tab-selected-bgimage, var(--toolbar-bgimage));
}
.tab-label[attention]:not([selected="true"]) {
font-weight: bold;
}
.tab-drop-indicator {
z-index: 3;
}