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
|
/* -*- eval: (outline-minor-mode 1) -*- */
/* * Debloat navbar */
#back-button,
#forward-button,
#reload-button,
#stop-button,
#home-button,
#library-button,
#fxa-toolbar-menu-button,
#PanelUI-button,
#save-to-pocket-button,
#sidebar-button
{ display: none }
/* Empty space before and after the url bar */
#customizableui-special-spring1,
#customizableui-special-spring2
{ display: none }
/* * De-bloat urlbar */
#identity-box,
#reader-mode-button,
#star-button-box,
#urlbar-go-button,
.urlBarView-button,
.search-one-offs
{ display: none !important; }
#tracking-protection-icon-container {
margin: 0 0.3em;
}
/* * Slim down tabs bar */
#TabsToolbar,
#TabsToolbar * {
max-height: 20px !important;
min-height: 20px !important;
border-radius: 0 !important;
}
#TabsToolbar img, #TabsToolbar image {
max-height: initial !important;
min-height: initial !important;
}
#new-tab-button, #firefox-view-button
{ display: none }
#alltabs-button {
min-width: 21px !important;
max-width: 21px !important;
min-height: 12px !important;
max-height: 12px !important;
}
#TabsToolbar .tab-background { margin-block: 0 !important }
/* * Remove sidebar header */
#sidebar-header { display: none }
/* * Always hide bookmark toolbar */
#PersonalToolbar { display: none }
/* * Findbar */
findbar { padding-block: 0 !important }
/* * Monospace fonts */
findbar, #statuspanel, #TabsToolbar, #nav-bar {
font-family: monospace;
}
tabs:has(tab-group) { counter-reset: group-index }
tab-group > vbox > label::before {
counter-increment: group-index;
content: counter(group-index) ": ";
}
|