forked from talha-akram/InfernalFox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuserChrome.css
35 lines (30 loc) · 855 Bytes
/
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
/* hide title bar and its elements */
#titlebar-secondary-buttonbox,
#titlebar .toolbar-items,
#titlebar .titlebar-spacer,
.private-browsing-indicator,
#toolbar-menubar,
#tabbrowser-tabs {
display: none;
}
/* Support for Windows */
#TabsToolbar { visibility: collapse !important; }
#sidebar-header { visibility: collapse !important; }
#titlebar { appearance: none !important }
#alltabs-button {
z-index: 9 !important;
display: block !important;
position: relative;
}
/* hide sidebar header */
#sidebar-header {
display: none;
}
/* move nav panel in slightly to prevent covering window controls */
#nav-bar-customization-target {
padding-left: 0px;
}
/* color menu button to mark private browsing windows */
#main-window[privatebrowsingmode="temporary"] #PanelUI-menu-button > .toolbarbutton-badge-stack {
background-color: #25003E;
}