real-world-css-libraries 1.0.3 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +36 -1
- package/index.js +36 -6
- package/libs/30days30submits-18-v0.0.0.css +213 -0
- package/libs/amoled-cord-v5.0.11.css +894 -0
- package/libs/animating-hamburger-icons-v0.1.0.css +618 -0
- package/libs/bootplus-v1.0.5.css +6876 -0
- package/libs/enferno-v13.1.1.css +75 -0
- package/libs/facebook-buttons-v1.0.0.css +223 -0
- package/libs/fluentbird-v1.1.2.css +1060 -0
- package/libs/freebies-v0.0.0.css +1110 -0
- package/libs/gitweb-theme-v0.0.0.css +764 -0
- package/libs/justified-v0.0.0.css +14 -0
- package/libs/kickoff-v8.0.0.css +2267 -0
- package/libs/knacss-v8.2.0.css +1141 -0
- package/libs/linktree-v0.0.0.css +803 -0
- package/libs/littlebox-v0.0.4.css +5833 -0
- package/libs/lynx-v1.4.0.css +1587 -0
- package/libs/obnoxious-v3.5.2.css +1144 -0
- package/libs/obsidian-notebook-themes-v2.2.3.css +272 -0
- package/libs/patternbolt-v0.0.0.css +861 -0
- package/libs/progress-tracker-v3.0.0.css +352 -0
- package/libs/proxmorph-v2.7.3.css +3952 -0
- package/libs/sapc-apca-v0.0.0.css +5546 -0
- package/libs/shina-fox-v0.1.0.css +1194 -0
- package/libs/social-signin-buttons-v0.0.0.css +387 -0
- package/libs/tailwind-cards-v0.0.0.css +215592 -0
- package/libs/the-50-front-end-project-44-v0.0.0.css +459 -0
- package/libs/tocas-v5.7.0.css +19928 -0
- package/libs/utility-opentype-v0.1.4.css +515 -0
- package/libs/vim-css3-syntax-v2.10.0.css +1642 -0
- package/libs/waffle-grid-v1.3.6.css +544 -0
- package/libs/wikipedia-dark-v3.7.9.css +9990 -0
- package/libs/windows-95-v0.0.0.css +393 -0
- package/libs/woah-v1.3.1.css +1025 -0
- package/libs/yacy-v4.1.2.css +677 -0
- package/libs/yue-v1.1.1.css +180 -0
- package/package.json +1 -1
- package/test.js +3 -4
|
@@ -0,0 +1,1060 @@
|
|
|
1
|
+
/* https://github.com/Deathbyteacup/fluentbird/blob/main/userChrome.css */
|
|
2
|
+
/* FLUENTBIRD - A FLUENT DESIGN THEME FOR THUNDERBIRD */
|
|
3
|
+
/* Created by Danny King - www.dannyking.co.uk */
|
|
4
|
+
/* v1.1.2 RELEASE */
|
|
5
|
+
/* DISTRIBUTED UNDER THE MIT LICENSE */
|
|
6
|
+
|
|
7
|
+
/* =====================================================
|
|
8
|
+
CUSTOM OVERRIDES
|
|
9
|
+
If you want to make your own tweaks, you can
|
|
10
|
+
place your own CSS in a file named:
|
|
11
|
+
custom.css
|
|
12
|
+
in the same folder as this file.
|
|
13
|
+
===================================================== */
|
|
14
|
+
|
|
15
|
+
@import url("custom.css");
|
|
16
|
+
|
|
17
|
+
/* =====================================================
|
|
18
|
+
LAYOUT & WINDOW CHROME
|
|
19
|
+
===================================================== */
|
|
20
|
+
|
|
21
|
+
/* Rounded top-left clip on main content area */
|
|
22
|
+
#messengerBody {
|
|
23
|
+
opacity: 90%;
|
|
24
|
+
border-top-left-radius: 12px !important;
|
|
25
|
+
overflow: hidden !important;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
/* Hide hamburger menu and keyboard shortcut container */
|
|
29
|
+
#button-appmenu {
|
|
30
|
+
display: none !important;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.kbd-container {
|
|
34
|
+
display: none !important;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
/* Windows titlebar button height */
|
|
38
|
+
@media (-moz-platform: windows) {
|
|
39
|
+
:root[customtitlebar] .titlebar-button,
|
|
40
|
+
:root[customtitlebar] #titlebar-min,
|
|
41
|
+
:root[customtitlebar] #titlebar-max,
|
|
42
|
+
:root[customtitlebar] #titlebar-close {
|
|
43
|
+
height: 29px !important;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
/* Close button hover colour */
|
|
47
|
+
:root[customtitlebar] .titlebar-close:hover {
|
|
48
|
+
background-color: #c42b1cfa !important;
|
|
49
|
+
stroke: white !important;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
/* Custom maximise icon — light */
|
|
53
|
+
.titlebar-max {
|
|
54
|
+
-moz-default-appearance: -moz-window-button-maximize;
|
|
55
|
+
list-style-image: url("Titlebar_Icons/maximize-light.png") !important;
|
|
56
|
+
opacity: 0.9 !important;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
/* =====================================================
|
|
62
|
+
TAB BAR
|
|
63
|
+
===================================================== */
|
|
64
|
+
|
|
65
|
+
#tabs-toolbar {
|
|
66
|
+
background-color: #fff0 !important;
|
|
67
|
+
background-image: none !important;
|
|
68
|
+
box-shadow: none !important;
|
|
69
|
+
margin-bottom: 8px !important;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.tabmail-tab {
|
|
73
|
+
border-radius: 6px !important;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.tabmail-tab[selected="true"] {
|
|
77
|
+
box-shadow: 0 2px 8px -5px #9c9c9c !important;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.tab-background[selected="true"] {
|
|
81
|
+
background-color: #ffffffb8 !important;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
/* Remove active-tab indicator line */
|
|
85
|
+
.tab-line {
|
|
86
|
+
height: 0px !important;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
#tabmail-arrowscrollbox {
|
|
90
|
+
margin-left: 0px !important;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
/* Remove stroke artifact on tab icons */
|
|
94
|
+
.tab-icon-image {
|
|
95
|
+
stroke: #fff0 !important;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
/* Suppress compact-mode sort header label */
|
|
99
|
+
.sort-header-details {
|
|
100
|
+
display: none !important;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
/* =====================================================
|
|
105
|
+
SPACES TOOLBAR & SIDEBAR ICONS
|
|
106
|
+
===================================================== */
|
|
107
|
+
|
|
108
|
+
#spacesToolbar {
|
|
109
|
+
background-color: #fff0 !important;
|
|
110
|
+
background-image: none !important;
|
|
111
|
+
border: 0px !important;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
/* Hide default icon images; replaced via background-image below */
|
|
115
|
+
#mailButton img,
|
|
116
|
+
#addressBookButton img,
|
|
117
|
+
#calendarButton img,
|
|
118
|
+
#tasksButton img,
|
|
119
|
+
#chatButton img,
|
|
120
|
+
#settingsButton img,
|
|
121
|
+
#folderPaneGetMessages img {
|
|
122
|
+
display: none !important;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
#mailButton {
|
|
126
|
+
background-image: url("Icons/mail-col.svg") !important;
|
|
127
|
+
background-repeat: no-repeat !important;
|
|
128
|
+
background-size: 20px 20px !important;
|
|
129
|
+
background-position: center !important;
|
|
130
|
+
width: 30px !important;
|
|
131
|
+
filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3)) !important;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
#addressBookButton {
|
|
135
|
+
background-image: url("Icons/contact-col.svg") !important;
|
|
136
|
+
background-repeat: no-repeat !important;
|
|
137
|
+
background-size: 20px 20px !important;
|
|
138
|
+
background-position: center !important;
|
|
139
|
+
width: 30px !important;
|
|
140
|
+
filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3)) !important;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
#calendarButton {
|
|
144
|
+
background-image: url("Icons/calendar-col.svg") !important;
|
|
145
|
+
background-repeat: no-repeat !important;
|
|
146
|
+
background-size: 16px 16px !important;
|
|
147
|
+
background-position: center !important;
|
|
148
|
+
width: 30px !important;
|
|
149
|
+
filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3)) !important;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
#tasksButton {
|
|
153
|
+
background-image: url("Icons/tasks-col.svg") !important;
|
|
154
|
+
background-repeat: no-repeat !important;
|
|
155
|
+
background-size: 20px 20px !important;
|
|
156
|
+
background-position: center !important;
|
|
157
|
+
width: 30px !important;
|
|
158
|
+
filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3)) !important;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
#chatButton {
|
|
162
|
+
background-image: url("Icons/chat-col.svg") !important;
|
|
163
|
+
background-repeat: no-repeat !important;
|
|
164
|
+
background-size: 20px 20px !important;
|
|
165
|
+
background-position: center !important;
|
|
166
|
+
width: 30px !important;
|
|
167
|
+
filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3)) !important;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
#settingsButton {
|
|
171
|
+
background-image: url("Icons/settings.svg") !important;
|
|
172
|
+
background-repeat: no-repeat !important;
|
|
173
|
+
background-size: 20px 20px !important;
|
|
174
|
+
background-position: center !important;
|
|
175
|
+
width: 30px !important;
|
|
176
|
+
filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3)) !important;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
/* Hide settings button label text */
|
|
180
|
+
.settings-btn-container #settingsButton,
|
|
181
|
+
.settings-btn-container:hover #settingsButton {
|
|
182
|
+
color: #fff0 !important;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
#folderPaneGetMessages {
|
|
186
|
+
background-image: url("Icons/sync.svg") !important;
|
|
187
|
+
background-repeat: no-repeat !important;
|
|
188
|
+
background-size: 20px 20px !important;
|
|
189
|
+
background-position: center !important;
|
|
190
|
+
width: 30px !important;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
|
|
194
|
+
/* =====================================================
|
|
195
|
+
FOLDER TREE
|
|
196
|
+
===================================================== */
|
|
197
|
+
|
|
198
|
+
/* Account-level row: larger text, no icon */
|
|
199
|
+
#folderTree li[data-server-type] > .container > .name {
|
|
200
|
+
font-weight: normal !important;
|
|
201
|
+
font-size: 1.18rem !important;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
#folderTree li[data-server-type]:not(:first-of-type) > .container {
|
|
205
|
+
margin-top: 10px !important;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
/* Folder icon overrides */
|
|
209
|
+
#folderTree li[data-folder-type="inbox"] > .container > .icon {
|
|
210
|
+
content: none !important;
|
|
211
|
+
mask-image: url("Icons/inbox.svg") !important;
|
|
212
|
+
mask-repeat: no-repeat !important;
|
|
213
|
+
mask-size: 16px 16px !important;
|
|
214
|
+
mask-position: center !important;
|
|
215
|
+
background-color: #5aa4ef !important;
|
|
216
|
+
}
|
|
217
|
+
#folderTree li[data-folder-type="inbox"] > .container > .icon[style*="--icon-color"] {
|
|
218
|
+
background-color: var(--icon-color) !important;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
#folderTree li[data-folder-type="drafts"] > .container > .icon {
|
|
222
|
+
background-image: url("Icons/drafts.svg") !important;
|
|
223
|
+
background-repeat: no-repeat !important;
|
|
224
|
+
background-size: 16px 16px !important;
|
|
225
|
+
background-position: center !important;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
#folderTree li[data-folder-type="sent"] > .container > .icon {
|
|
229
|
+
background-image: url("Icons/sent.svg") !important;
|
|
230
|
+
background-repeat: no-repeat !important;
|
|
231
|
+
background-size: 16px 16px !important;
|
|
232
|
+
background-position: center !important;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
#folderTree li[data-folder-type="junk"] > .container > .icon {
|
|
236
|
+
mask-image: url("Icons/junk.svg") !important;
|
|
237
|
+
mask-repeat: no-repeat !important;
|
|
238
|
+
mask-size: 16px 16px !important;
|
|
239
|
+
mask-position: center !important;
|
|
240
|
+
background-color: #df4646 !important;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
#folderTree li[data-folder-type="trash"] > .container > .icon {
|
|
244
|
+
mask-image: url("Icons/trash.svg") !important;
|
|
245
|
+
mask-repeat: no-repeat !important;
|
|
246
|
+
mask-size: 16px 16px !important;
|
|
247
|
+
mask-position: center !important;
|
|
248
|
+
background-color: #8785a3 !important;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
#folderTree li[data-folder-type="archive"] > .container > .icon {
|
|
252
|
+
mask-image: url("Icons/archive.svg") !important;
|
|
253
|
+
mask-repeat: no-repeat !important;
|
|
254
|
+
mask-size: 16px 16px !important;
|
|
255
|
+
mask-position: center !important;
|
|
256
|
+
background-color: #8785a3 !important;
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
#folderTree li[data-folder-type="outbox"] > .container > .icon {
|
|
260
|
+
mask-image: url("Icons/outbox.svg") !important;
|
|
261
|
+
mask-repeat: no-repeat !important;
|
|
262
|
+
mask-size: 16px 16px !important;
|
|
263
|
+
mask-position: center !important;
|
|
264
|
+
background-color: #6aadb5 !important;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
/* Templates Icon */
|
|
268
|
+
#folderTree li[data-folder-type="templates"] > .container > .icon {
|
|
269
|
+
content: none !important;
|
|
270
|
+
mask-image: url("Icons/templates.svg") !important;
|
|
271
|
+
mask-repeat: no-repeat !important;
|
|
272
|
+
mask-size: 16px 16px !important;
|
|
273
|
+
mask-position: center !important;
|
|
274
|
+
background-color: #21a366 !important; /* replace with your preferred colour */
|
|
275
|
+
}
|
|
276
|
+
#folderTree li[data-folder-type="templates"] > .container > .icon[style*="--icon-color"] {
|
|
277
|
+
background-color: var(--icon-color) !important;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
/* Generic folder icon */
|
|
281
|
+
#folderTree li:not([data-folder-type]) > .container > .icon {
|
|
282
|
+
content: none !important;
|
|
283
|
+
mask-image: url("Icons/folder.svg") !important;
|
|
284
|
+
mask-repeat: no-repeat !important;
|
|
285
|
+
mask-size: 16px 16px !important;
|
|
286
|
+
mask-position: center !important;
|
|
287
|
+
background-color: #ffcc42 !important;
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
#folderTree li:not([data-folder-type]) > .container > .icon[style*="--icon-color"] {
|
|
291
|
+
background-color: var(--icon-color) !important;
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
/* Tag folder icons — covers ALL tags including custom ones */
|
|
295
|
+
#folderTree li[data-tag-key] > .container > .icon {
|
|
296
|
+
display: block !important;
|
|
297
|
+
width: 16px !important;
|
|
298
|
+
height: 16px !important;
|
|
299
|
+
background-color: var(--icon-color) !important;
|
|
300
|
+
mask-image: url("Icons/ic_fluent_tag_24_filled.svg") !important;
|
|
301
|
+
mask-repeat: no-repeat !important;
|
|
302
|
+
mask-size: 16px 16px !important;
|
|
303
|
+
mask-position: center !important;
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
/* Override with tag back-color for the 5 built-in labels */
|
|
307
|
+
#folderTree li[data-tag-key="$label1"] > .container > .icon { background-color: var(--tag-\$label1-backcolor) !important; }
|
|
308
|
+
#folderTree li[data-tag-key="$label2"] > .container > .icon { background-color: var(--tag-\$label2-backcolor) !important; }
|
|
309
|
+
#folderTree li[data-tag-key="$label3"] > .container > .icon { background-color: var(--tag-\$label3-backcolor) !important; }
|
|
310
|
+
#folderTree li[data-tag-key="$label4"] > .container > .icon { background-color: var(--tag-\$label4-backcolor) !important; }
|
|
311
|
+
#folderTree li[data-tag-key="$label5"] > .container > .icon { background-color: var(--tag-\$label5-backcolor) !important; }
|
|
312
|
+
|
|
313
|
+
/* Mail Account Icon */
|
|
314
|
+
|
|
315
|
+
#folderTree li[data-server-type] > .container > .icon {
|
|
316
|
+
content: none !important;
|
|
317
|
+
list-style-image: none !important;
|
|
318
|
+
display: block !important;
|
|
319
|
+
width: 16px !important;
|
|
320
|
+
height: 16px !important;
|
|
321
|
+
mask-image: url("Icons/ic_fluent_mail_all_24_filled.svg") !important;
|
|
322
|
+
mask-repeat: no-repeat !important;
|
|
323
|
+
mask-size: 16px 16px !important;
|
|
324
|
+
mask-position: center !important;
|
|
325
|
+
background-color: #5aa4ef !important;
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
/* Unread count badge */
|
|
329
|
+
.unread > .container > .unread-count {
|
|
330
|
+
display: unset !important;
|
|
331
|
+
background-color: #71717a00 !important;
|
|
332
|
+
color: #2065b0 !important;
|
|
333
|
+
font-size: 1.01rem !important;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
/* Twisty indent */
|
|
337
|
+
ul[role="tree"] .container .twisty,
|
|
338
|
+
ol[role="tree"] .container .twisty {
|
|
339
|
+
margin-left: 6px !important;
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
/* Selected row indicator offset */
|
|
343
|
+
:is(ul, ol)[role="tree"] li.selected > .container::before {
|
|
344
|
+
transform: translateX(3px) !important;
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
/* Selected/focused folder row */
|
|
348
|
+
:is(ul, ol)[role="tree"] li.selected.current > .container {
|
|
349
|
+
border-color: #e1e1e1 !important;
|
|
350
|
+
background-color: #e1e1e1 !important;
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
/* FIX FOR ICON CLASHES IN NAVIGATOR */
|
|
354
|
+
|
|
355
|
+
#folderTree li[data-folder-type="sent"] > .container > .icon {
|
|
356
|
+
/ content: radial-gradient; /
|
|
357
|
+
--icon-color: #FFFFFF00 !important;
|
|
358
|
+
}
|
|
359
|
+
#folderTree li[data-folder-type="drafts"] > .container > .icon {
|
|
360
|
+
/ content: var(--icon-draft); /
|
|
361
|
+
--icon-color: #FFFFFF00 !important;
|
|
362
|
+
}
|
|
363
|
+
#folderTree li[data-folder-type="inbox"] > .container > .icon {
|
|
364
|
+
/ content: var(--icon-inbox); /
|
|
365
|
+
--icon-color: #FFFFFF00 !important;
|
|
366
|
+
}
|
|
367
|
+
#folderTree li[data-folder-type="trash"] > .container > .icon {
|
|
368
|
+
/ content: var(--icon-trash); */
|
|
369
|
+
--icon-color: #FFFFFF00 !important;
|
|
370
|
+
}
|
|
371
|
+
#folderTree li[data-folder-type="junk"] > .container > .icon {
|
|
372
|
+
content: var(--icon-spam);
|
|
373
|
+
--icon-color: #FFFFFF00 !important;
|
|
374
|
+
}
|
|
375
|
+
#folderTree li .icon {
|
|
376
|
+
content: none !important;
|
|
377
|
+
display: block !important;
|
|
378
|
+
overflow: hidden !important;
|
|
379
|
+
}
|
|
380
|
+
/* =====================================================
|
|
381
|
+
THREAD PANE
|
|
382
|
+
===================================================== */
|
|
383
|
+
|
|
384
|
+
#threadPaneHeaderBar {
|
|
385
|
+
border-bottom: 0px !important;
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
/* Filter and display button icons */
|
|
389
|
+
#threadPaneQuickFilterButton {
|
|
390
|
+
background-image: url("Icons/filter.svg") !important;
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
#threadPaneDisplayButton,
|
|
394
|
+
#displayButton {
|
|
395
|
+
background-image: url("Icons/list.svg") !important;
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
/* Hide thread reply count controls */
|
|
399
|
+
button .replies-icon,
|
|
400
|
+
button .thread-replies {
|
|
401
|
+
display: none !important;
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
/* Subject indent for child rows with replies */
|
|
405
|
+
tr.children .thread-card-button:has(.thread-replies[data-l10n-id]) ~ .thread-card-subject-container .subject {
|
|
406
|
+
margin-left: 15px !important;
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
/* Card layout spacing */
|
|
410
|
+
.thread-card-dynamic-row {
|
|
411
|
+
gap: 0px !important;
|
|
412
|
+
row-gap: 0px !important;
|
|
413
|
+
padding-bottom: 0px !important;
|
|
414
|
+
margin-bottom: 0px !important;
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
.thread-card-dynamic-row > .thread-card-button {
|
|
418
|
+
align-self: end !important;
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
/* Card subject text */
|
|
422
|
+
.thread-card-subject-container {
|
|
423
|
+
color: #606060;
|
|
424
|
+
font-size: 0.96rem !important;
|
|
425
|
+
width: 85%;
|
|
426
|
+
}
|
|
427
|
+
|
|
428
|
+
/* Sender name */
|
|
429
|
+
.sender {
|
|
430
|
+
font-size: 1.15rem !important;
|
|
431
|
+
font-weight: 500 !important;
|
|
432
|
+
margin-top: 8px !important;
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
& .card-container .sender {
|
|
436
|
+
padding-inline-start: 3px !important;
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
/* Compact sender text for short-height cards */
|
|
440
|
+
tr.card-layout[style*="height: 49px"] .sender,
|
|
441
|
+
tr.card-layout[style*="height: 50px"] .sender {
|
|
442
|
+
font-size: 1rem !important;
|
|
443
|
+
font-weight: 500 !important;
|
|
444
|
+
margin-top: 5px !important;
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
/* Child thread subject font size */
|
|
448
|
+
tr.card-layout.children span.subject {
|
|
449
|
+
font-size: 0.95em !important;
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
/* Unread indicator dot */
|
|
453
|
+
#threadTree[rows="thread-card"] .card-layout td .card-container .read-status {
|
|
454
|
+
content: var(--read-status-icon) !important;
|
|
455
|
+
height: var(--read-status-size) !important;
|
|
456
|
+
width: var(--read-status-size) !important;
|
|
457
|
+
fill: #4ade8000 !important;
|
|
458
|
+
stroke: #16a34a00 !important;
|
|
459
|
+
margin-left: 0 !important;
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
/* Unread indicator inline offset */
|
|
463
|
+
#threadTree[rows="thread-card"] .card-layout td .card-container::before {
|
|
464
|
+
inset-inline-start: calc(var(--indicator-width) * 2 - var(--indicator-gap)) !important;
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
/* Remove row highlight behind cards; apply highlight to card itself */
|
|
468
|
+
[is="tree-view-table-body"] tr.selected.current {
|
|
469
|
+
background-color: transparent !important;
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
[is="tree-view-table-body"] .card-layout.selected.current .card-container {
|
|
473
|
+
background-color: #cde6f7 !important;
|
|
474
|
+
border: 1px solid #bfbfbf !important;
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
/* Unfocused selected card */
|
|
478
|
+
#threadTree[rows="thread-card"]:not(:focus, :focus-within) .card-layout.selected.current .card-container,
|
|
479
|
+
#threadTree[rows="thread-card"]:not(:focus, :focus-within) .card-layout[data-properties~="junk"].selected.current .card-container {
|
|
480
|
+
background-color: #e1e1e1 !important;
|
|
481
|
+
border: 1px solid #bfbfbf !important;
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
&.selected.current {
|
|
485
|
+
--tree-card-background: #e1e1e1;
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
/* Selected table-layout row colour */
|
|
489
|
+
tr.table-layout.selected.current {
|
|
490
|
+
color: #45a0ef !important;
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
/* Twisty button position fix */
|
|
494
|
+
.button.button-flat.button-reset.twisty.thread-card-button {
|
|
495
|
+
margin-top: -38px !important;
|
|
496
|
+
}
|
|
497
|
+
|
|
498
|
+
.thread-card-icon-info {
|
|
499
|
+
margin-top: -15px;
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
/* Grouped-by-sort child rows */
|
|
503
|
+
tree-view[data-show-grouped-by-sort="true"] .card-layout.children {
|
|
504
|
+
height: 30px !important;
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
tree-view[data-show-grouped-by-sort="true"] .card-layout.children *,
|
|
508
|
+
tree-view[data-show-grouped-by-sort="true"] .card-layout.children:hover,
|
|
509
|
+
tree-view[data-show-grouped-by-sort="true"] .card-layout.children *:hover {
|
|
510
|
+
background: none !important;
|
|
511
|
+
background-color: transparent !important;
|
|
512
|
+
box-shadow: none !important;
|
|
513
|
+
border-color: transparent !important;
|
|
514
|
+
color: inherit !important;
|
|
515
|
+
filter: none !important;
|
|
516
|
+
outline: none !important;
|
|
517
|
+
text-decoration: none !important;
|
|
518
|
+
transition: none !important;
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
/* Empty pane placeholder icon */
|
|
522
|
+
#placeholderNoMessages::before {
|
|
523
|
+
background-image: url("Icons/mail.svg") !important;
|
|
524
|
+
}
|
|
525
|
+
|
|
526
|
+
/* List header indent */
|
|
527
|
+
.list-header-title {
|
|
528
|
+
margin-left: 10px !important;
|
|
529
|
+
}
|
|
530
|
+
|
|
531
|
+
|
|
532
|
+
/* =====================================================
|
|
533
|
+
MESSAGE HEADER & READING PANE
|
|
534
|
+
===================================================== */
|
|
535
|
+
|
|
536
|
+
/* Header label vertical alignment */
|
|
537
|
+
.message-header-label {
|
|
538
|
+
align-self: center !important;
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
#expandedtoLabel,
|
|
542
|
+
#expandedccLabel,
|
|
543
|
+
#expandedreply-toLabel {
|
|
544
|
+
margin-top: 3px !important;
|
|
545
|
+
}
|
|
546
|
+
|
|
547
|
+
/* Recipient avatar */
|
|
548
|
+
.recipient-avatar {
|
|
549
|
+
height: 45px !important;
|
|
550
|
+
width: 45px !important;
|
|
551
|
+
font-size: 1.3rem !important;
|
|
552
|
+
color: #fff !important;
|
|
553
|
+
background-color: #69797e !important;
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
.recipients-list {
|
|
557
|
+
margin-top: 5px !important;
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
.recipient-multi-line-name {
|
|
561
|
+
font-size: 1.4rem !important;
|
|
562
|
+
}
|
|
563
|
+
|
|
564
|
+
/* Address book button in recipient row */
|
|
565
|
+
.recipient-address-book-button {
|
|
566
|
+
width: 12px !important;
|
|
567
|
+
height: 12px !important;
|
|
568
|
+
mask-image: url("Icons/person.svg") !important;
|
|
569
|
+
mask-repeat: no-repeat !important;
|
|
570
|
+
mask-size: 12px 12px !important;
|
|
571
|
+
mask-position: center !important;
|
|
572
|
+
background-color: #5aa4ef !important;
|
|
573
|
+
}
|
|
574
|
+
|
|
575
|
+
.recipient-address-book-button img {
|
|
576
|
+
display: none !important;
|
|
577
|
+
}
|
|
578
|
+
|
|
579
|
+
/* To/Cc/Reply-To headings */
|
|
580
|
+
#toHeading,
|
|
581
|
+
#ccHeading,
|
|
582
|
+
#reply-toHeading {
|
|
583
|
+
margin-top: 5px !important;
|
|
584
|
+
font-weight: bolder !important;
|
|
585
|
+
}
|
|
586
|
+
|
|
587
|
+
/* Info bar (e.g. remote content notice), credit jevandusen */
|
|
588
|
+
.infobar.animated:not([value="maybeScam"]) {
|
|
589
|
+
width: 98% !important;
|
|
590
|
+
margin-inline: auto !important;
|
|
591
|
+
--message-bar-background-color: #e6f2fa !important;
|
|
592
|
+
margin-block-end: 10px !important;
|
|
593
|
+
}
|
|
594
|
+
|
|
595
|
+
.infobar.animated:not([value="maybeScam"]) .notification-button.small-button.footer-button.button-menu-list {
|
|
596
|
+
background-color: #fff0 !important;
|
|
597
|
+
padding: 3px !important;
|
|
598
|
+
padding-right: 20px !important;
|
|
599
|
+
padding-left: 10px !important;
|
|
600
|
+
border: none !important;
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
.notification-button.small-button.footer-button.button-menu-list .button-text {
|
|
604
|
+
margin-bottom: 3px !important;
|
|
605
|
+
margin-right: 1px;
|
|
606
|
+
}
|
|
607
|
+
|
|
608
|
+
|
|
609
|
+
/* =====================================================
|
|
610
|
+
TOOLBAR ACTION BUTTONS (reply, forward, trash, etc.)
|
|
611
|
+
===================================================== */
|
|
612
|
+
|
|
613
|
+
.toolbarbutton-1 {
|
|
614
|
+
background-color: #fff !important;
|
|
615
|
+
}
|
|
616
|
+
|
|
617
|
+
.toolbarbutton-1:hover {
|
|
618
|
+
background-color: #f1f0f0 !important;
|
|
619
|
+
}
|
|
620
|
+
|
|
621
|
+
.toolbarbutton-1 .toolbarbutton-icon {
|
|
622
|
+
box-sizing: border-box !important;
|
|
623
|
+
width: 18px !important;
|
|
624
|
+
height: 18px !important;
|
|
625
|
+
color: #005f99 !important;
|
|
626
|
+
}
|
|
627
|
+
|
|
628
|
+
.toolbarbutton-icon {
|
|
629
|
+
margin-left: 5px;
|
|
630
|
+
margin-right: -5px;
|
|
631
|
+
}
|
|
632
|
+
|
|
633
|
+
/* Borders on message header buttons */
|
|
634
|
+
#messageHeader:not(.message-header-buttons-only-icons) .toolbarbutton-1.message-header-view-button:not([is="toolbarbutton-menu-button"]) {
|
|
635
|
+
border-color: #ececee !important;
|
|
636
|
+
}
|
|
637
|
+
|
|
638
|
+
#hdrReplyAllButton, #hdrReplyListButton {
|
|
639
|
+
border-radius: var(--button-border-radius) !important;
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
#hdrReplyAllButton .toolbarbutton-menubutton-button,
|
|
643
|
+
#hdrReplyAllButton .toolbarbutton-menubutton-dropmarker,
|
|
644
|
+
#hdrReplyListButton .toolbarbutton-menubutton-button,
|
|
645
|
+
#hdrReplyListButton .toolbarbutton-menubutton-dropmarker,
|
|
646
|
+
#hdrReplyListButton {
|
|
647
|
+
border-color: #ececee !important;
|
|
648
|
+
}
|
|
649
|
+
|
|
650
|
+
#hdrReplyListButton .toolbarbutton-menubutton-button,
|
|
651
|
+
#hdrReplyListButton .toolbarbutton-menubutton-dropmarker {
|
|
652
|
+
box-sizing: border-box !important;
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
.toolbarbutton-menu-dropmarker {
|
|
656
|
+
margin-right: 5px;
|
|
657
|
+
}
|
|
658
|
+
|
|
659
|
+
.message-header-view-button .toolbarbutton-text {
|
|
660
|
+
padding-inline-start: 6px !important;
|
|
661
|
+
padding: 8px !important;
|
|
662
|
+
}
|
|
663
|
+
|
|
664
|
+
.icons-beside-text,
|
|
665
|
+
.icons-only {
|
|
666
|
+
border-bottom: 0px solid rgba(0, 0, 0, 0.15) !important;
|
|
667
|
+
}
|
|
668
|
+
|
|
669
|
+
/* "More actions" button: hide default icon, inject custom SVG via ::before */
|
|
670
|
+
#otherActionsButton {
|
|
671
|
+
position: relative !important;
|
|
672
|
+
padding-left: 20px !important;
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
#otherActionsButton .toolbarbutton-icon {
|
|
676
|
+
display: none;
|
|
677
|
+
}
|
|
678
|
+
|
|
679
|
+
#otherActionsButton::before {
|
|
680
|
+
content: "" !important;
|
|
681
|
+
display: block !important;
|
|
682
|
+
position: absolute !important;
|
|
683
|
+
width: 16px;
|
|
684
|
+
height: 16px;
|
|
685
|
+
left: 6px;
|
|
686
|
+
top: 50%;
|
|
687
|
+
transform: translateY(-50%);
|
|
688
|
+
mask-image: url("Icons/more.svg") !important;
|
|
689
|
+
mask-repeat: no-repeat !important;
|
|
690
|
+
mask-size: contain !important;
|
|
691
|
+
background-color: #5aa4ef !important;
|
|
692
|
+
pointer-events: none;
|
|
693
|
+
}
|
|
694
|
+
|
|
695
|
+
/* Custom masked icons for each header action button */
|
|
696
|
+
#hdrReplyButton .toolbarbutton-icon,
|
|
697
|
+
#hdrReplyToSenderButton .toolbarbutton-icon {
|
|
698
|
+
list-style-image: none !important;
|
|
699
|
+
mask-image: url("Icons/reply.svg") !important;
|
|
700
|
+
mask-repeat: no-repeat !important;
|
|
701
|
+
mask-size: 16px 16px !important;
|
|
702
|
+
mask-position: center !important;
|
|
703
|
+
background-color: #b566bf !important;
|
|
704
|
+
width: 16px !important;
|
|
705
|
+
height: 16px !important;
|
|
706
|
+
}
|
|
707
|
+
|
|
708
|
+
#hdrReplyAllButton .toolbarbutton-icon {
|
|
709
|
+
list-style-image: none !important;
|
|
710
|
+
mask-image: url("Icons/reply-all.svg") !important;
|
|
711
|
+
mask-repeat: no-repeat !important;
|
|
712
|
+
mask-size: 16px 16px !important;
|
|
713
|
+
mask-position: center !important;
|
|
714
|
+
background-color: #b566bf !important;
|
|
715
|
+
width: 16px !important;
|
|
716
|
+
height: 16px !important;
|
|
717
|
+
}
|
|
718
|
+
|
|
719
|
+
#hdrReplyListButton .toolbarbutton-icon {
|
|
720
|
+
list-style-image: none !important;
|
|
721
|
+
mask-image: url("Icons/list-reply.svg") !important;
|
|
722
|
+
mask-repeat: no-repeat !important;
|
|
723
|
+
mask-size: 16px 16px !important;
|
|
724
|
+
mask-position: center !important;
|
|
725
|
+
background-color: #1e8bcd !important;
|
|
726
|
+
width: 16px !important;
|
|
727
|
+
height: 16px !important;
|
|
728
|
+
}
|
|
729
|
+
|
|
730
|
+
#hdrForwardButton .toolbarbutton-icon {
|
|
731
|
+
list-style-image: none !important;
|
|
732
|
+
mask-image: url("Icons/forward.svg") !important;
|
|
733
|
+
mask-repeat: no-repeat !important;
|
|
734
|
+
mask-size: 16px 16px !important;
|
|
735
|
+
mask-position: center !important;
|
|
736
|
+
background-color: #1e8bcd !important;
|
|
737
|
+
width: 16px !important;
|
|
738
|
+
height: 16px !important;
|
|
739
|
+
}
|
|
740
|
+
|
|
741
|
+
#hdrArchiveButton .toolbarbutton-icon {
|
|
742
|
+
list-style-image: none !important;
|
|
743
|
+
mask-image: url("Icons/archive.svg") !important;
|
|
744
|
+
mask-repeat: no-repeat !important;
|
|
745
|
+
mask-size: 16px 16px !important;
|
|
746
|
+
mask-position: center !important;
|
|
747
|
+
background-color: #8785a3 !important;
|
|
748
|
+
width: 16px !important;
|
|
749
|
+
height: 16px !important;
|
|
750
|
+
}
|
|
751
|
+
|
|
752
|
+
#hdrJunkButton .toolbarbutton-icon {
|
|
753
|
+
list-style-image: none !important;
|
|
754
|
+
mask-image: url("Icons/junk.svg") !important;
|
|
755
|
+
mask-repeat: no-repeat !important;
|
|
756
|
+
mask-size: 16px 16px !important;
|
|
757
|
+
mask-position: center !important;
|
|
758
|
+
background-color: #e16060 !important;
|
|
759
|
+
width: 16px !important;
|
|
760
|
+
height: 16px !important;
|
|
761
|
+
}
|
|
762
|
+
|
|
763
|
+
#hdrTrashButton .toolbarbutton-icon {
|
|
764
|
+
list-style-image: none !important;
|
|
765
|
+
mask-image: url("Icons/trash.svg") !important;
|
|
766
|
+
mask-repeat: no-repeat !important;
|
|
767
|
+
mask-size: 16px 16px !important;
|
|
768
|
+
mask-position: center !important;
|
|
769
|
+
background-color: #8785a3 !important;
|
|
770
|
+
width: 16px !important;
|
|
771
|
+
height: 16px !important;
|
|
772
|
+
}
|
|
773
|
+
|
|
774
|
+
|
|
775
|
+
/* =====================================================
|
|
776
|
+
SEARCH BAR
|
|
777
|
+
===================================================== */
|
|
778
|
+
|
|
779
|
+
global-search-bar {
|
|
780
|
+
opacity: 0.7 !important;
|
|
781
|
+
padding: 5px !important;
|
|
782
|
+
}
|
|
783
|
+
|
|
784
|
+
.search-button-icon {
|
|
785
|
+
margin-right: 5px !important;
|
|
786
|
+
}
|
|
787
|
+
|
|
788
|
+
|
|
789
|
+
/* =====================================================
|
|
790
|
+
ADDRESS BOOK PANE
|
|
791
|
+
===================================================== */
|
|
792
|
+
|
|
793
|
+
#booksPaneCreateList {
|
|
794
|
+
background-image: url("Icons/book.svg") !important;
|
|
795
|
+
}
|
|
796
|
+
|
|
797
|
+
.bookRow-icon {
|
|
798
|
+
background-image: url("Icons/notepad-person.svg") !important;
|
|
799
|
+
}
|
|
800
|
+
|
|
801
|
+
/* Remove top border on contacts list */
|
|
802
|
+
#cards[rows="ab-card-row"] {
|
|
803
|
+
border-top: 0px solid var(--splitter-color) !important;
|
|
804
|
+
}
|
|
805
|
+
|
|
806
|
+
|
|
807
|
+
/* =====================================================
|
|
808
|
+
TAB ICONS
|
|
809
|
+
===================================================== */
|
|
810
|
+
|
|
811
|
+
/* Each rule replaces a Thunderbird default tab icon with a custom masked SVG */
|
|
812
|
+
|
|
813
|
+
.tab-icon-image[src*="chrome://messenger/skin/icons/new/compact/inbox.svg"] {
|
|
814
|
+
content: none !important;
|
|
815
|
+
mask-image: url("Icons/inbox.svg") !important;
|
|
816
|
+
mask-repeat: no-repeat !important;
|
|
817
|
+
mask-size: 16px 16px !important;
|
|
818
|
+
mask-position: center !important;
|
|
819
|
+
background-color: #525b65 !important;
|
|
820
|
+
width: 16px !important;
|
|
821
|
+
height: 16px !important;
|
|
822
|
+
}
|
|
823
|
+
|
|
824
|
+
.tab-icon-image[src*="chrome://messenger/skin/icons/new/compact/folder.svg"] {
|
|
825
|
+
content: none !important;
|
|
826
|
+
mask-image: url("Icons/folder.svg") !important;
|
|
827
|
+
mask-repeat: no-repeat !important;
|
|
828
|
+
mask-size: 16px 16px !important;
|
|
829
|
+
mask-position: center !important;
|
|
830
|
+
background-color: #525b65 !important;
|
|
831
|
+
width: 16px !important;
|
|
832
|
+
height: 16px !important;
|
|
833
|
+
}
|
|
834
|
+
|
|
835
|
+
#folderTree li[data-folder-type="drafts"] > .container > .icon {
|
|
836
|
+
mask-image: url("Icons/drafts.svg") !important;
|
|
837
|
+
mask-repeat: no-repeat !important;
|
|
838
|
+
mask-size: 16px 16px !important;
|
|
839
|
+
mask-position: center !important;
|
|
840
|
+
background-color: var(--folder-color-draft) !important;
|
|
841
|
+
}
|
|
842
|
+
|
|
843
|
+
#folderTree li[data-folder-type="sent"] > .container > .icon {
|
|
844
|
+
mask-image: url("Icons/sent.svg") !important;
|
|
845
|
+
mask-repeat: no-repeat !important;
|
|
846
|
+
mask-size: 16px 16px !important;
|
|
847
|
+
mask-position: center !important;
|
|
848
|
+
background-color: var(--folder-color-sent) !important;
|
|
849
|
+
}
|
|
850
|
+
|
|
851
|
+
.tab-icon-image[src*="chrome://messenger/skin/icons/new/compact/spam.svg"] {
|
|
852
|
+
content: none !important;
|
|
853
|
+
mask-image: url("Icons/junk.svg") !important;
|
|
854
|
+
mask-repeat: no-repeat !important;
|
|
855
|
+
mask-size: 16px 16px !important;
|
|
856
|
+
mask-position: center !important;
|
|
857
|
+
background-color: #525b65 !important;
|
|
858
|
+
width: 16px !important;
|
|
859
|
+
height: 16px !important;
|
|
860
|
+
}
|
|
861
|
+
|
|
862
|
+
.tab-icon-image[src*="chrome://messenger/skin/icons/new/compact/trash.svg"] {
|
|
863
|
+
content: none !important;
|
|
864
|
+
mask-image: url("Icons/trash.svg") !important;
|
|
865
|
+
mask-repeat: no-repeat !important;
|
|
866
|
+
mask-size: 16px 16px !important;
|
|
867
|
+
mask-position: center !important;
|
|
868
|
+
background-color: #525b65 !important;
|
|
869
|
+
width: 16px !important;
|
|
870
|
+
height: 16px !important;
|
|
871
|
+
}
|
|
872
|
+
|
|
873
|
+
.tab-icon-image[src*="chrome://messenger/skin/icons/new/compact/address-book.svg"] {
|
|
874
|
+
content: none !important;
|
|
875
|
+
mask-image: url("Icons/contact.svg") !important;
|
|
876
|
+
mask-repeat: no-repeat !important;
|
|
877
|
+
mask-size: 16px 16px !important;
|
|
878
|
+
mask-position: center !important;
|
|
879
|
+
background-color: #525b65 !important;
|
|
880
|
+
width: 16px !important;
|
|
881
|
+
height: 16px !important;
|
|
882
|
+
}
|
|
883
|
+
|
|
884
|
+
.tab-icon-image[src*="chrome://messenger/skin/icons/new/compact/tasks.svg"] {
|
|
885
|
+
content: none !important;
|
|
886
|
+
mask-image: url("Icons/tasks.svg") !important;
|
|
887
|
+
mask-repeat: no-repeat !important;
|
|
888
|
+
mask-size: 16px 16px !important;
|
|
889
|
+
mask-position: center !important;
|
|
890
|
+
background-color: #525b65 !important;
|
|
891
|
+
width: 16px !important;
|
|
892
|
+
height: 16px !important;
|
|
893
|
+
}
|
|
894
|
+
|
|
895
|
+
.tab-icon-image[src*="chrome://messenger/skin/icons/new/compact/calendar.svg"] {
|
|
896
|
+
content: none !important;
|
|
897
|
+
mask-image: url("Icons/calendar.svg") !important;
|
|
898
|
+
mask-repeat: no-repeat !important;
|
|
899
|
+
mask-size: 16px 16px !important;
|
|
900
|
+
mask-position: center !important;
|
|
901
|
+
background-color: #525b65 !important;
|
|
902
|
+
width: 16px !important;
|
|
903
|
+
height: 16px !important;
|
|
904
|
+
}
|
|
905
|
+
|
|
906
|
+
.tab-icon-image[src*="chrome://messenger/skin/icons/new/compact/chat.svg"] {
|
|
907
|
+
content: none !important;
|
|
908
|
+
mask-image: url("Icons/chat.svg") !important;
|
|
909
|
+
mask-repeat: no-repeat !important;
|
|
910
|
+
mask-size: 16px 16px !important;
|
|
911
|
+
mask-position: center !important;
|
|
912
|
+
background-color: #525b65 !important;
|
|
913
|
+
width: 16px !important;
|
|
914
|
+
height: 16px !important;
|
|
915
|
+
}
|
|
916
|
+
|
|
917
|
+
.tab-icon-image[src*="chrome://messenger/skin/icons/new/compact/settings.svg"] {
|
|
918
|
+
content: none !important;
|
|
919
|
+
mask-image: url("Icons/settings-tab.svg") !important;
|
|
920
|
+
mask-repeat: no-repeat !important;
|
|
921
|
+
mask-size: 16px 16px !important;
|
|
922
|
+
mask-position: center !important;
|
|
923
|
+
background-color: #525b65 !important;
|
|
924
|
+
width: 16px !important;
|
|
925
|
+
height: 16px !important;
|
|
926
|
+
}
|
|
927
|
+
|
|
928
|
+
.tab-icon-image[src*="chrome://messenger/skin/icons/new/compact/mail-secure.svg"] {
|
|
929
|
+
content: none !important;
|
|
930
|
+
mask-image: url("Icons/mail.svg") !important;
|
|
931
|
+
mask-repeat: no-repeat !important;
|
|
932
|
+
mask-size: 16px 16px !important;
|
|
933
|
+
mask-position: center !important;
|
|
934
|
+
background-color: #525b65 !important;
|
|
935
|
+
width: 16px !important;
|
|
936
|
+
height: 16px !important;
|
|
937
|
+
}
|
|
938
|
+
|
|
939
|
+
.tab-icon-image[src*="chrome://messenger/skin/icons/new/compact/account-settings.svg"] {
|
|
940
|
+
content: none !important;
|
|
941
|
+
mask-image: url("Icons/person-tab.svg") !important;
|
|
942
|
+
mask-repeat: no-repeat !important;
|
|
943
|
+
mask-size: 16px 16px !important;
|
|
944
|
+
mask-position: center !important;
|
|
945
|
+
background-color: #525b65 !important;
|
|
946
|
+
width: 16px !important;
|
|
947
|
+
height: 16px !important;
|
|
948
|
+
}
|
|
949
|
+
|
|
950
|
+
.tab-icon-image[src*="chrome://mozapps/skin/extensions/extension.svg"] {
|
|
951
|
+
content: none !important;
|
|
952
|
+
mask-image: url("Icons/extention.svg") !important;
|
|
953
|
+
mask-repeat: no-repeat !important;
|
|
954
|
+
mask-size: 16px 16px !important;
|
|
955
|
+
mask-position: center !important;
|
|
956
|
+
background-color: #525b65 !important;
|
|
957
|
+
width: 16px !important;
|
|
958
|
+
height: 16px !important;
|
|
959
|
+
}
|
|
960
|
+
|
|
961
|
+
|
|
962
|
+
/* =====================================================
|
|
963
|
+
DARK MODE
|
|
964
|
+
===================================================== */
|
|
965
|
+
|
|
966
|
+
@media (prefers-color-scheme: dark) {
|
|
967
|
+
|
|
968
|
+
/* Custom maximise icon — dark (Windows only) */
|
|
969
|
+
@media (-moz-platform: windows) {
|
|
970
|
+
.titlebar-max {
|
|
971
|
+
-moz-default-appearance: -moz-window-button-maximize;
|
|
972
|
+
list-style-image: url("Titlebar_Icons/maximize-dark.png") !important;
|
|
973
|
+
opacity: 0.9 !important;
|
|
974
|
+
}
|
|
975
|
+
}
|
|
976
|
+
|
|
977
|
+
/* Make unread messages text lighter */
|
|
978
|
+
|
|
979
|
+
.unread > .container > .unread-count {
|
|
980
|
+
color: #7cb8fa !important;
|
|
981
|
+
}
|
|
982
|
+
|
|
983
|
+
#placeholderNoMessages::before {
|
|
984
|
+
background-image: url("Icons/mail-dark.svg") !important;
|
|
985
|
+
}
|
|
986
|
+
|
|
987
|
+
.toolbarbutton-1 {
|
|
988
|
+
background-color: #3a3a3a !important;
|
|
989
|
+
}
|
|
990
|
+
|
|
991
|
+
.toolbarbutton-1:hover {
|
|
992
|
+
background-color: #272727 !important;
|
|
993
|
+
}
|
|
994
|
+
|
|
995
|
+
.tabmail-tab[selected="true"] {
|
|
996
|
+
box-shadow: 0 2px 8px -5px #9c9c9c !important;
|
|
997
|
+
}
|
|
998
|
+
|
|
999
|
+
.tab-background[selected="true"] {
|
|
1000
|
+
background-color: #262629b8 !important;
|
|
1001
|
+
}
|
|
1002
|
+
|
|
1003
|
+
.thread-card-subject-container {
|
|
1004
|
+
color: #d1d1d1;
|
|
1005
|
+
font-size: 0.96rem !important;
|
|
1006
|
+
}
|
|
1007
|
+
|
|
1008
|
+
/* Notification button text/icon colour fix */
|
|
1009
|
+
.notification-button .button-text,
|
|
1010
|
+
.notification-button .button-icon {
|
|
1011
|
+
color: black !important;
|
|
1012
|
+
fill: black !important;
|
|
1013
|
+
filter: none !important;
|
|
1014
|
+
opacity: 1 !important;
|
|
1015
|
+
}
|
|
1016
|
+
|
|
1017
|
+
.notification-button.button-menu-list {
|
|
1018
|
+
stroke: #000 !important;
|
|
1019
|
+
}
|
|
1020
|
+
|
|
1021
|
+
/* Selected folder row */
|
|
1022
|
+
:is(ul, ol)[role="tree"] li.selected.current > .container {
|
|
1023
|
+
border-color: #515151 !important;
|
|
1024
|
+
background-color: #515151 !important;
|
|
1025
|
+
}
|
|
1026
|
+
|
|
1027
|
+
/* Unfocused selected card */
|
|
1028
|
+
#threadTree[rows="thread-card"]:not(:focus, :focus-within) .card-layout.selected.current .card-container,
|
|
1029
|
+
#threadTree[rows="thread-card"]:not(:focus, :focus-within) .card-layout[data-properties~="junk"].selected.current .card-container {
|
|
1030
|
+
background-color: #515151 !important;
|
|
1031
|
+
border: 1px solid #1f1f1f !important;
|
|
1032
|
+
}
|
|
1033
|
+
|
|
1034
|
+
/* Focused selected card */
|
|
1035
|
+
[is="tree-view-table-body"] .card-layout.selected.current .card-container {
|
|
1036
|
+
background-color: #292929 !important;
|
|
1037
|
+
border: 1px solid #1f1f1f !important;
|
|
1038
|
+
}
|
|
1039
|
+
|
|
1040
|
+
/* Message header button borders */
|
|
1041
|
+
#messageHeader:not(.message-header-buttons-only-icons) .toolbarbutton-1.message-header-view-button:not([is="toolbarbutton-menu-button"]) {
|
|
1042
|
+
border-color: #1f1f1f !important;
|
|
1043
|
+
}
|
|
1044
|
+
|
|
1045
|
+
#hdrReplyAllButton .toolbarbutton-menubutton-button,
|
|
1046
|
+
#hdrReplyAllButton .toolbarbutton-menubutton-dropmarker,
|
|
1047
|
+
#hdrReplyListButton .toolbarbutton-menubutton-button,
|
|
1048
|
+
#hdrReplyListButton .toolbarbutton-menubutton-dropmarker {
|
|
1049
|
+
border-color: #1f1f1f !important;
|
|
1050
|
+
}
|
|
1051
|
+
|
|
1052
|
+
/* Filter and display button icons — dark variants */
|
|
1053
|
+
#threadPaneQuickFilterButton {
|
|
1054
|
+
background-image: url("Icons/filter-dark.svg") !important;
|
|
1055
|
+
}
|
|
1056
|
+
|
|
1057
|
+
#threadPaneDisplayButton {
|
|
1058
|
+
background-image: url("Icons/list-dark.svg") !important;
|
|
1059
|
+
}
|
|
1060
|
+
}
|