-
Notifications
You must be signed in to change notification settings - Fork 95
/
userChrome.css
350 lines (273 loc) · 13.1 KB
/
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
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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
/*:::::::::::::::::::::::::::::::::::::::::::::::::::: Zotero :::::::::::::::::::::::::::::::::::::::::::::::::::*/
* {border: 0 !important; }
/*change background color and text color of zotero toolbar and menubar*/
#zotero-tb, #zotero-toolbar, #navigator-toolbox, #tab-bar-container { background: #323234 !important;
color: #FFFFFF !important; }
#zotero-toolbar {border-bottom: 1px solid #1d1d1d !important;}
/*change color of menu items to white*/
#navigator-toolbox menu { color: white !important }
/*change color of menu items in drop down menus back to black*/
#manage-attachments-menu label, #developer-menu label, #layout-menu label, #note-font-size-menu label, #font-size-menu label, #debug-output-menu label, #new-item label { color: black !important; }
/*Fixed New Item showing in white*/
#navigator-toolbox menu:first-child { color: unset !important; }
/*Change color of tags selector below collections tree*/
#zotero-tag-selector-container { border-bottom: 1px solid #1d1d1d !important;
border-top:1px solid #1d1d1d !important;}
#zotero-tag-selector-container input { -moz-appearance: none !important;
background: #474749 !important;
border: 1px solid #1d1d1d !important;
color: white !important; }
.tag-selector-list-container {-moz-appearance: none !important;
background: #474749 !important;
color: white !important; }
/* for Zotero 6*/
.tag-selector-item:hover { background: #BBCEF1 !important;
color: black !important; }
.tag-selector-item {
background: #474749 !important;
color:white ; }
.tag-selector-item.selected { background: #7E7E7E !important;
font-weight: bold !important; }
.tag-selector-item.selected:hover { background: #BBCEF1 !important;
font-weight: bold !important; }
#zotero-tb-search { -moz-appearance: none !important;
background-color: #474749 !important;
color: white !important;
border: 1px solid #1d1d1d !important; }
#zotero-pane { background: #323234 !important;
color: black !important; }
/*change background and color of collections and items panes*/
treechildren { background: #323234 !important;
color: #FFFFFF !important; }
/*for Zotero 6*/
.virtualized-table .row{background: #323234 !important; color: #FFFFFF !important;}
.virtualized-table .row.highlighted {background: #BBCEF1 !important; color: black !important;}
.virtualized-table .row.selected {background: #474749 !important; border: 0 !important;
border-bottom: 1px solid #1d1d1d !important;}
.virtualized-table:not(:focus) .row.selected {background: #474749 !important; border: 0 !important;
border-bottom: 1px solid #1d1d1d !important;}
.row:hover { background: #7E7E7E !important;
color: #FFFFFF !important; border: 0 !important; }
.tabs { background: #474749 !important;
color: #FFFFFF !important;
border: 0px !important; }
.tab {-moz-appearance: none !important;
color: #7E7E7E !important;
background: #474749 !important;
border-left: 0px solid rgba(127,127,127) !important;
border-right: 0px solid rgba(127,127,127) !important;}
.tab:hover { background: #7E7E7E !important;
color: #FFFFFF !important;
border: 0px !important; }
.tab:not(:focus){ -moz-appearance: none !important;
color: #7E7E7E ;
background: #474749 ;
border-top: 0px solid #0a84ff !important;
border-left: 1px solid rgba(127,127,127) !important;
border-right: 0px solid rgba(127,127,127) !important;
border-radius: 0px !important;
border-bottom-left-radius: 0px !important;
border-bottom-right-radius: 0px !important; }
.tab.selected:not(.highlighted){ color: #FFFFFF !important;
background: #323234 !important;
border-top: 3px solid #0a84ff !important;
border-left: 0px solid rgba(127,127,127) !important;
border-right: 0px solid #1d1d1d !important;
border-radius: 0px !important;
border-bottom-left-radius: 0px !important;
border-bottom-right-radius: 0px !important; }
.tab-close:hover { background: #7E7E7E !important; }
/*PDF reader notes list*/
.notes-list-container { background: #323234 !important;
color: #ffffff !important; }
.note-row {background: #474749 !important;
color: #ffffff !important; }
.note-row .date {color: #ffffff !important; }
.more-row { background: #474749 !important;
color: #ffffff !important; }
.note-row:hover, .more-row:hover {background: #7E7E7E !important;
color: #FFFFFF !important; }
/*collections tree background*/
#zotero-collections-tree { color: #ffffff; background: #323234 !important; }
/*increase spacing between rows in collections and items and add a border to separate panes (not working on zotero 6)*/
/*#zotero-collections-tree treechildren::-moz-tree-row { height: 30px !important; }
.virtualized-table { rowHeight: 30px !important; } */
/*change background and color of collections when hovering*/
#zotero-collections-tree treechildren::-moz-tree-row(hover) { background: #7E7E7E !important;
color: #FFFFFF !important; border: 0 !important; }
/*change color of selected item in Collections pane (My library or folders) */
#zotero-collections-tree treechildren::-moz-tree-cell(selected) { background: #474749 !important; border: 0 !important;
border-bottom: 1px solid #1d1d1d !important; }
#zotero-collections-tree treechildren::-moz-tree-cell-text(selected) { color: #FFFFFF !important; }
#zotero-collections-tree treechildren { border-right: 1px solid #1d1d1d !important ; }
/*for Zotero 6*/
#zotero-collections-tree .virtualized-table {border-right: 1px solid #1d1d1d !important ; }
/*increase spacing between rows in collections and items (-moz-tree-row not working in zotero 6)*/
/*#zotero-items-tree treechildren::-moz-tree-row { height: 30px !important; }*/
#zotero-items-tree { border-right: 1px solid #1d1d1d !important;
border-bottom: 1px solid #1d1d1d !important;
color: #ffffff; background: #323234 !important; }
/*change background and color of items when hovering*/
#zotero-items-tree treechildren::-moz-tree-row(hover) { background: #7E7E7E !important;
color: #FFFFFF !important; border: 0 !important; }
/*change background and color of items when selecting*/
#zotero-items-tree treechildren::-moz-tree-row(selected) { background: #474749 !important;
color: #FFFFFF !important; border: 0 !important;
border-bottom: 1px solid #1d1d1d !important; }
#zotero-items-tree treechildren::-moz-tree-cell-text(selected) { color: #FFFFFF !important; border: 0 !important; }
/*change background and color of columns field selector*/
#zotero-items-tree treecol { -moz-appearance: none !important;
background: #474749 !important;
color: #FFFFFF !important;
border-bottom: 1px solid #1d1d1d !important;
border-right: 1px solid #1d1d1d !important; }
/*fix columns field selector for Zotero 6*/
#zotero-items-tree .virtualized-table-header { -moz-appearance: none !important;
background: #474749 !important;
color: #FFFFFF !important;
border-bottom: 1px solid #1d1d1d !important;
border-right: 1px solid #1d1d1d !important; }
#zotero-items-tree .virtualized-table-header .cell:hover { background: #7E7E7E !important;
color: #FFFFFF !important;}
.treecol-image { -moz-appearance: none !important;
background: #474749 !important;
color: #FFFFFF !important;
border-bottom: 1px solid #1d1d1d !important; }
/*Change color of fields in item pane (clicky items) when hovering */
#zotero-item-pane-content .zotero-clicky:hover
{ color: black !important;
border-radius: 0px !important; }
#better-bibtex-citekey-display { color: white !important; }
/*change color of buttons, but messes with .zotero-clicky-minus and .zotero-clicky-plus in Tags tab*/
/*Correct Minus and plus clicky buttons */
#zotero-item-pane-content .zotero-clicky-minus:hover { color: transparent !important;}
#zotero-item-pane-content .zotero-clicky-plus:hover { color: transparent !important;}
/*tabs in Preferences dialog - well more like all the tabs except the ones I'll specify later*/
tabpanel { color: black !important;
background: #7E7E7E !important; }
tab[selected="true"] { color: black !important;
background: #7E7E7E !important;
border-top: 3px solid #0a84ff !important; }
tab { -moz-appearance: none !important;
color: #eee !important;
background: #474749 !important;
border-top: 0px solid black !important;
border-left: 0px solid black !important;
border-right: 1px solid #1d1d1d !important;
border-radius: 0px !important;
border-bottom-left-radius: 0px !important;
border-bottom-right-radius: 0px !important; }
tab:hover { color: black !important;
background: #E0E8F6 !important;
box-shadow: inset 0px 0px 0px !important;
border-radius: 0px 0px 0 0 !important; }
/*change items in item pane besides tabs*/
#zotero-duplicates-merge-pane > groupbox > .groupbox-body { background: #323234 !important;
color: #FFFFFF !important;
border: 0 !important; }
#zotero-item-pane-content > groupbox > .groupbox-body { border: 0 !important; background: #323234 !important;
color: #FFFFFF !important; }
/*change color of retraction details background*/
#retraction-details { background: #7f0000 !important; }
/*background of item-pane-content (Zotero 6)*/
.zotero-view-tabbox, .zotero-item-pane-content { background: #323234 !important; color: #FFFFFF !important; }
/*tabs in Item pane*/
#zotero-item-pane-content tabpanel { background: #474749 !important;
color: white !important; }
/*fixed color in drop-down tags: see https://css-tricks.com/solved-with-css-dropdown-menus/*/
#tags-box-container ul li ul { background: #7E7E7E !important; color: white !important; }
#tags-box-container input { -moz-appearance: none !important;
background-color: #7E7E7E !important;
color: white !important;
border: 1px solid #1d1d1d !important;}
/*In PDF reader tab pane*/
.zotero-view-tabbox .tags-box-container ul li ul { background: #7E7E7E !important; color: white !important; }
.zotero-view-tabbox .tags-box-container input { -moz-appearance: none !important;
background-color: #7E7E7E !important;
color: white !important;
border: 1px solid #1d1d1d !important;}
.zotero-view-tabbox tab[selected="true"]{ background: #474749 !important;
border-top: 3px solid #0a84ff !important;}
.zotero-view-tabbox tab { -moz-appearance: none !important;
color: #eee !important;
background: #323234 !important;
border-top: 0px solid #0a84ff !important;
border-left: 0px solid rgba(127,127,127,0.2) !important;
border-right: 1px solid #1d1d1d !important;
border-radius: 0px !important;
border-bottom-left-radius: 0px !important;
border-bottom-right-radius: 0px !important; }
.zotero-view-tabbox tab:hover{ color: #FFFFFF !important;
background: #7E7E7E !important; }
.zotero-view-tabbox tabpanel { background: #474749 !important;
color: #FFFFFF !important; }
.zotero-view-tabbox .zotero-clicky:hover { color: black !important; }
#zotero-item-pane-content tab[selected="true"]{ background: #474749 !important;
border-top: 3px solid #0a84ff !important;}
#zotero-item-pane-content tab { -moz-appearance: none !important;
color: #eee !important;
background: #323234 !important;
border-top: 0px solid #0a84ff !important;
border-left: 0px solid rgba(127,127,127,0.2) !important;
border-right: 1px solid #1d1d1d !important;
border-radius: 0px !important;
border-bottom-left-radius: 0px !important;
border-bottom-right-radius: 0px !important; }
#zotero-item-pane-content tab:hover{ color: #FFFFFF !important;
background: #7E7E7E !important;
box-shadow: inset 0px 0px 0px !important;
border-radius: 0px 0px 0 0 !important; }
/*define color of item type field*/
#item-type-menu { -moz-appearance: none;
color: white !important;
height: 1.5em !important;
min-height: 1.5em !important;
padding: 0 0 0 2px !important;
margin: 1px 5px 0 1px !important;
max-height: 1.5em !important;
border: 1px solid transparent;
background-color: transparent; }
#item-type-menu:hover { color: black !important;
background: #BBCEF1 !important; }
/*define color of date-field-status*/
#zotero-date-field-status { color: #ffffff !important;
padding: 0 10px 0 1px !important; }
/*preferences dialog*/
#zotero-prefpane-general, #zotero-prefpane-sync, #zotero-prefpane-export, #zotero-prefpane-advanced-keys-tab, #wordProcessors, #zotero-quickCopy-format, #sync-reset-form, #zotero-export-options { color: black !important;
background: #7E7E7E !important; }
#zotero-prefpane-general title { background: #474749 !important;
color: #FFFFFF !important; }
prefwindow { color: black !important;
background: #7E7E7E !important; }
prefwindow .chromeclass-toolbar { color: #FFFFFF !important;
background: #323234 !important; }
/*about dialog*/
#aboutcontent { background: #474749 !important;
color: white !important;
padding: 10px; }
#version { color: white !important; }
/*advanced search dialog*/
#zotero-advanced-search-dialog #zotero-search-box-controls { color: black !important;
background: #7E7E7E !important; }
/*Note editor - ongoing*/
#zotero-note-editor linksbox { background-color: #474749 !important;
color: white !important; }
#zotero-note-window h1 { color: white;
font-size: 1.6em;
padding-bottom: none; }
#zotero-note-window h2 { color: white;
font-size: 1.4em;
font-weight: bold;
padding-bottom: none;
border-bottom: none; }
#zotero-note-window h3 { color: white;
font-size: 1.2em; }
#zotero-note-window p { text-indent: 1.75em; }
#zotero-note-window ul, ol { padding-left: 1.75em; }
#zotero-note-window blockquote { margin-top: 0;
margin-bottom: 0;
margin-left: 0;
padding-left: 1.55em;
border-left: 3px solid darkgrey;
color: white (255, 248, 248); }
#zotero-note-window blockquote p { text-indent: 0; }