-
Notifications
You must be signed in to change notification settings - Fork 2
/
chrome.css
66 lines (56 loc) · 1.56 KB
/
chrome.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
@media (-moz-bool-pref: "uc.minimal-sidebar.hide-alltabs-button.enabled") {
#alltabs-button {
display: none !important;
}
}
@media (-moz-bool-pref: "uc.minimal-sidebar.hide-newtab-button.enabled") {
#vertical-tabs-newtab-button {
display: none !important;
}
}
@media (-moz-bool-pref: "uc.minimal-sidebar.hide-profile-button.enabled") {
#zen-profile-button {
display: none !important;
}
}
@media (-moz-bool-pref: "uc.minimal-sidebar.hide-expand-sidebar-button.enabled") {
#zen-expand-sidebar-button {
display: none !important;
}
}
@media (-moz-bool-pref: "uc.minimal-sidebar.hide-bookmark-button.enabled") {
#zen-bookmark-button {
display: none !important;
}
}
@media (-moz-bool-pref: "uc.minimal-sidebar.hide-history-button.enabled") {
#zen-history-button {
display: none !important;
}
}
@media (-moz-bool-pref: "uc.minimal-sidebar.hide-preferences-button.enabled") {
#zen-preferences-button {
display: none !important;
}
}
@media (-moz-bool-pref: "uc.minimal-sidebar.hide-sidepanel-button.enabled") {
#zen-sidepanel-button {
display: none !important;
}
}
@media (-moz-bool-pref: "uc.minimal-sidebar.compact-spacing.enabled") {
#zen-sidebar-icons-wrapper {
padding-top: 0px !important;
}
}
@media (-moz-bool-pref: "uc.minimal-sidebar.hide-sidebar.enabled") {
#zen-sidebar-icons-wrapper {
display: none !important;
}
}
@media (-moz-bool-pref: "uc.minimal-sidebar.fix-sidebar-width.enabled") {
#TabsToolbar-customization-target {
height: 100%;
min-width: var(--zen-sidebar-action-button-width);
}
}