-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuserChrome.css
More file actions
64 lines (52 loc) · 1.48 KB
/
userChrome.css
File metadata and controls
64 lines (52 loc) · 1.48 KB
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
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
/* EM - selected tab: hide shadow */
#tabbrowser-tabs:not([noshadowfortests])
.tab-background:is([selected], [multiselected]) {
box-shadow: none !important;
}
/*
* Underlines and dims unloaded tabs
*
* Contributor(s): josemam
*/
.tabbrowser-tab[pending] {
text-decoration: underline;
}
/* EM - Hides favicon for New Tabs */
.tabbrowser-tab[label="New Tab"] .tab-icon-image {
display: none;
}
/* EM - Hides hamburger menu */
#PanelUI-button {
display: none;
}
/* EM - Set extension toolbar icons to greyscale */
toolbarbutton.webextension-browser-action {
filter: grayscale(50%) !important;
opacity: 0.9 !important;
}
/**********************/
/* Make all tabs small except selected one */
/* .tabbrowser-tab[fadein]:not([selected]):not([pinned]) {
max-width: 145px !important;
min-width: 115px !important;
} */
/* Selected tabs width */
.tabbrowser-tab[selected][fadein]:not([pinned]) {
/*max-width: 225px !important;*/
min-width: 205px !important;
}
/* Hide tab close button */
#TabsToolbar .close-icon {
display: none !important;
}
/* Unhide close button when it is selected tab and not pinned */
#TabsToolbar .tabbrowser-tab[selected="true"]:not([pinned]) .close-icon {
display: -moz-box !important;
}
/* Show close button even when mouse hover on inactive tabs */
#TabsToolbar
.tabbrowser-tab:not([selected="true"]):not([pinned]):hover
.close-icon {
display: -moz-box !important;
}