-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathuserChrome.css
50 lines (40 loc) · 1.13 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
:root {
--unselected-tab-background: #e3e3e3;
--selected-tab-background: #333;
}
:root:not([customizing]) #navigator-toolbox {
/*background-color: var(--unselected-tab-background)!important;*/
}
:root:not([customizing]) #navigator-toolbox #nav-bar {
min-height: 0!important;
max-height: 0;
}
:root:not([customizing]) #navigator-toolbox:focus-within #nav-bar {
max-height: unset;
overflow: visible!important;
}
:root:not([customizing]) #urlbar[breakout] {
--urlbar-toolbar-height: 32px!important;
}
:root:not([customizing]) .tabbrowser-tab:not([pinned="true"]) {
--tab-min-width: fit-content;
-moz-box-flex: 0!important;
max-width: 70px;
}
:root:not([customizing]) .tabbrowser-tab:not([pinned="true"]) .tab-stack {
flex-basis: 1;
}
:root:not([customizing]) .tabbrowser-tab[selected="true"] .tab-background {
background-color: var(--selected-tab-background)!important;
}
:root:not([customizing]) .tab-content {
padding: 0 6px;
}
:root:not([customizing]) .tab-line,
:root:not([customizing]) .tab-text,
:root:not([customizing]) .tab-close-button {
display: none;
}
:root:not([customizing]) .tab-icon-image {
margin: 0!important;
}