-
Notifications
You must be signed in to change notification settings - Fork 0
/
userChrome.css
155 lines (140 loc) · 4.45 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
/* path: ~/Library/Application\ Support/Firefox/Profiles/f9iui1ry.default-1499302640727/chrome/userChrome.css */
/* Settings for TreeStyleTab */
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
#TabsToolbar {
visibility: collapse !important;
}
#sidebar-header {
display: none;
}
/* Show title of unread tabs in italic */
.tab.unread .label {
font-style: italic;
}
/*
* Auto-hide the URL-bar, show on hover or focus
*
* Contributor(s): Alex Vallat
*/
/* :root[uidensity=compact] #navigator-toolbox { */
/* --nav-bar-height: 33px; */
/* } */
/* */
/* :root:not([uidensity]) #navigator-toolbox { */
/* --nav-bar-height: 39px; */
/* } */
/* */
/* :root[uidensity=touch] #navigator-toolbox { */
/* --nav-bar-height: 41px; */
/* } */
/* */
/* #navigator-toolbox { */
/* --tabbar-height: calc(var(--tab-min-height) + var(--space-above-tabbar) - var(--tab-toolbar-navbar-overlap)); */
/* --trigger-area-height: 5px; */
/* --extra-height: 2px; [> Not sure where the extra 2px comes from, but is necessary to line up right <] */
/* } */
/* */
/* @media (-moz-os-version: windows-win7) { */
/* [> Windows 7 has an extra 4px top margin when not maximized <] */
/* :root[sizemode="normal"] #navigator-toolbox { */
/* --tabbar-height: calc(4px + var(--tab-min-height) + var(--space-above-tabbar) - var(--tab-toolbar-navbar-overlap)); */
/* } */
/* } */
/* */
/* #toolbar-menubar { */
/* margin-top: 0px !important; [> This is usually 0, but under Win7 can be given an extra 1px when not maximized <] */
/* } */
/* */
/* :root:not([customizing]) #nav-bar */
/* { */
/* overflow-y: hidden; */
/* max-height:0; */
/* min-height:0 !important; */
/* padding-top:0 !important; */
/* padding-bottom:0 !important; */
/* opacity: 0; */
/* } */
/* */
/* :root:not([customizing]) :hover > #nav-bar, */
/* :root:not([customizing]) #nav-bar:focus-within { */
/* max-height: var(--nav-bar-height); */
/* opacity: 1; */
/* transition: opacity 0.15s ease-in, max-height 0.15s linear; */
/* } */
/* */
/* :root:not([customizing]) #navigator-toolbox { */
/* max-height: calc(var(--tabbar-height) + var(--trigger-area-height) + var(--extra-height)); */
/* min-height: var(--tabbar-height); */
/* margin-bottom: calc(-1 * var(--trigger-area-height)); */
/* } */
/* */
/* :root:not([customizing]) #navigator-toolbox:hover, */
/* :root:not([customizing]) #navigator-toolbox:focus-within { */
/* max-height: calc(var(--tabbar-height) + var(--nav-bar-height) + var(--extra-height)); */
/* margin-bottom: calc(1px - var(--nav-bar-height)); */
/* } */
/*
* Make the toolbar extra-compact (similar to v56 with CTR)
*
* Applies to Compact density
*
* Contributor(s): Alex Vallat
*/
:root[uidensity=compact] #urlbar,
:root[uidensity=compact] .searchbar-textbox {
font-size: unset !important;
min-height: 24px !important;
}
:root[uidensity=compact] #identity-box {
max-height: 22px;
}
:root[uidensity=compact] #nav-bar .toolbarbutton-1 {
padding: 0px !important;
}
/* Compatibility with auto-hide.css */
:root[uidensity=compact] #navigator-toolbox {
--nav-bar-height: 31px !important;
}
/*
* Description: Auto-hide sidebar.
*
* Contributor(s): img2tab
*/
/* To right-align the sidebar, replace all occurrences of "left" with "right", and "margin-right" with "margin-left" */
/* :root { */
/* --sidebar-hover-width: 10px; */
/* --sidebar-visible-width: 200px; */
/* } */
/* */
/* #sidebar-box { */
/* position: relative !important; */
/* overflow-x: hidden !important; */
/* margin-right: calc(var(--sidebar-hover-width) * -1) !important; */
/* left: var(--sidebar-hover-width) !important; */
/* min-width: var(--sidebar-hover-width) !important; */
/* max-width: var(--sidebar-hover-width) !important; */
/* } */
/* */
/* #sidebar-box:hover { */
/* margin-right: calc(var(--sidebar-visible-width) * -1) !important; */
/* left: var(--sidebar-visible-width) !important; */
/* min-width: var(--sidebar-visible-width) !important; */
/* max-width: var(--sidebar-visible-width) !important; */
/* } */
/* */
/* #sidebar { */
/* opacity: 0 !important; */
/* } */
/* */
/* #sidebar:hover { */
/* opacity: 1 !important; */
/* } */
/* */
/* [> #sidebar-header is hidden by default, change "none" to "inherit" to restore it. <] */
/* #sidebar-header { */
/* display: none !important; */
/* } */
/* */
/* [> #sidebar-splitter styles the divider between the sidebar and the rest of the browser. <] */
/* #sidebar-splitter { */
/* } */