-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuserChrome.css
More file actions
33 lines (33 loc) · 816 Bytes
/
userChrome.css
File metadata and controls
33 lines (33 loc) · 816 Bytes
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
:root {
--sidebar-width: 14em;
--toolbar-height: -50px;
--menubar-height: -40px;
--toolmenubar-height: -80px;
--sidebar-padding: calc(var(--sidebar-width) + 5px);
--toolbar-start-end-padding: 5px !important;
--toolbar-start-end-padding: 5px !important;
--tab-text-regular: black;
}
/* hides the native tabs */
#TabsToolbar {
display: none;
}
/* reposition toolbar/searchbar to the right of the sidebar */
.browser-toolbar {
margin-left: calc(var(--sidebar-width));
}
/* sidebar */
#sidebar {
margin-top: -40px; /* reposition sidebar to start at the top of the window */
/* border-right: 1px solid #ccc; */
width: var(--sidebar-width) !important;
}
#sidebar-box {
width: var(--sidebar-width) !important;
}
#sidebar-header {
display: none;
}
#sidebar-splitter {
display: none;
}