-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathuserChrome.css
More file actions
166 lines (132 loc) · 3.76 KB
/
Copy pathuserChrome.css
File metadata and controls
166 lines (132 loc) · 3.76 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
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
156
157
158
159
160
161
162
163
164
165
166
* {
font-family: "JetBrains Mono" !important;
}
/* Hide workspace indicator */
.zen-current-workspace-indicator {
display: none !important;
}
#zen-essentials-container {
margin-bottom: 3px !important;
}
.pinned-tabs-container-separator {
display: none !important;
}
/* Hide unecessary icons from url bar */
/* Extension icon in new tab page */
#urlbar #identity-box.extensionPage {
display: none !important;
}
/* Bookmark star*/
#star-button-box {
display: none !important;
}
/* Copy url */
#zen-copy-url-button {
display: none !important;
}
/* Sidebar toggle */
#zen-toggle-compact-mode {
display: none !important;
}
#back-button {
margin-left: 40px !important;
}
/* Hide native window icons in Zen Browser */
.titlebar-button image,
.titlebar-button .toolbarbutton-icon,
.titlebar-button::before,
.titlebar-button::after {
display: none !important;
visibility: collapse !important;
}
/* Floating status bar */
#statuspanel {
margin: 10px !important;
}
#statuspanel-label {
border-radius: 10000px !important;
padding: 2px 10px !important;
border: 1px solid var(--zen-colors-border) !important;
background: var(--zen-colors-tertiary) !important;
}
/* Theme using Catppuccin mocha palette */
@media (prefers-color-scheme: dark) {
:root {
--zen-colors-primary: #1e1e2e !important;
--zen-colors-secondary: #313244 !important;
--zen-colors-tertiary: #181825 !important;
--zen-colors-border: #313244 !important;
--zen-primary-color: #cba6f7 !important;
--zen-themed-toolbar-bg: #181825 !important;
--zen-main-browser-background: #181825 !important;
--toolbarbutton-icon-fill: #cdd6f4 !important;
--toolbar-field-color: #cdd6f4 !important;
--toolbar-field-focus-color: #cdd6f4 !important;
--toolbar-color: #cdd6f4 !important;
--toolbar-bgcolor: #313244 !important;
--toolbox-bgcolor-inactive: #181825 !important;
--lwt-text-color: #cdd6f4 !important;
--lwt-sidebar-text-color: #cdd6f4 !important;
--lwt-sidebar-background-color: #181825 !important;
--sidebar-text-color: #cdd6f4 !important;
--tab-selected-textcolor: rgb(193, 200, 246) !important;
--arrowpanel-color: #cdd6f4 !important;
--arrowpanel-background: #1e1e2e !important;
--newtab-background-color: #1e1e2e !important;
--newtab-text-primary-color: #cdd6f4 !important;
--newtab-primary-action-background: #cba6f7 !important;
--urlbar-box-bgcolor: #181825 !important;
}
/* Zen UI elements */
#zen-workspaces-button {
background-color: #1e1e2e !important;
}
#zenEditBookmarkPanelFaviconContainer {
background: #181825 !important;
}
/* URL bar */
#urlbar-container,
.urlbar-background {
background-color: #181825 !important;
}
.urlbar[breakout][breakout-extend] > .urlbar-background {
background-color: #181825 !important;
border: 1px solid #313244 !important;
}
.urlbarView-title,
.urlbarView-secondary {
color: #cdd6f4 !important;
}
.urlbarView-url,
.urlbarView-url strong {
color: #cba6f7 !important;
}
.urlbarView-action,
.urlbarView-row[selected] .urlbarView-action {
color: #bac2de !important;
}
.urlbarView-row[selected],
.urlbarView-row[selected] > .urlbarView-row-inner {
background-color: #313244 !important;
color: #cdd6f4 !important;
}
.urlbarView-row[selected] .urlbarView-title strong {
color: #cdd6f4 !important;
font-weight: bold !important;
}
.urlbarView-row[selected] .urlbarView-favicon {
background-color: #585b70 !important;
border-radius: 4px !important;
}
.urlbarView-body-inner {
border: none !important;
}
.urlbar-input-box {
text-align: center;
}
/* New Tab Shortcuts */
.content-shortcuts {
background-color: #1e1e2e !important;
border-color: #cba6f7 !important;
}
}