-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathuserChrome.css
129 lines (105 loc) · 2.57 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
:root {
--bg: #000000;
--bg-alt: #1F1F1F;
--fg: #BFBFBF;
--fg-alt: #575757;
--toolbar-field-focus-border-color: #0000 !important;
--lwt-tab-text: var(--fg) !important;
}
.titlebar-spacer,
#tracking-protection-icon-container,
#urlbar-zoom-button,
#pageActionButton,
#page-action-buttons,
#urlbar-go-button,
#alltabs-button,
#identity-box,
#statuspanel,
#home-button,
#downloads-button,
toolbarspring {
display: none !important;
}
/* urlbar */
#nav-bar {
border: none !important;
box-shadow: none !important;
height: 45px !important;
background-color: var(--bg) !important;
}
#navigator-toolbox {
border: 0px !important;
}
#TabsToolbar {
height: 45px !important;
margin-top: 3px !important;
margin-bottom: -3px !important;
background-color: var(--bg) !important;
}
#urlbar .urlbarView {
display: none !important;
}
#urlbar[breakout][breakout-extend]{
display: block !important;
position: absolute !important;
width: 100% !important;
height: var(--urlbar-height) !important;
top: calc((var(--urlbar-toolbar-height) - var(--urlbar-height)) / 2) !important;
left: 0 !important;
}
#urlbar-input {
color: var(--fg) !important;
}
#urlbar-input-container {
padding: 0px 7px !important;
height: 100% !important;
}
#urlbar-background {
border: transparent !important;
animation: none !important;
box-shadow: none !important;
background-color: var(--bg-alt) !important;
}
.urlbarView-row[selectable][selected] > .urlbarView-row-inner, .urlbarView-row-inner[selectable][selected] {
background-color: var(--bg-alt) !important;
}
#urlbar,
#tabbrowser-tabs:not([noshadowfortests]) .tab-background:is([selected], [multiselected]) {
box-shadow: none !important;
}
/* tabs */
.tabbrowser-tab[selected] .tab-background {
background: var(--bg-alt) !important;
}
tab:not([selected]) .tab-label {
color: var(--fg-alt) !important;
}
#tabs-newtab-button {
fill: var(--fg-alt) !important;
}
#tabs-newtab-button:hover {
fill: var(--fg) !important;
}
.tabbrowser-tab:not(:hover) .tab-close-button {
display: none !important;
}
.tabbrowser-tab:not([pinned]):hover .tab-close-button {
display: block !important;
}
scrollbox, .scrollbox-clip {
padding-left: 2px !important;
}
#tabbrowser-tabs[haspinnedtabs]:not([positionpinnedtabs]) > #tabbrowser-arrowscrollbox > .tabbrowser-tab[first-visible-unpinned-tab] {
margin-inline-start: 0px !important;
}
.tabbrowser-tab[fadein] {
max-width: 100vw !important
}
/* misc */
.header-container,
.body-container,
.footer-container,
findbar {
background-color: var(--bg) !important;
color: var(--fg) !important;
}