-
Notifications
You must be signed in to change notification settings - Fork 0
/
dark_additional_windows.css
122 lines (109 loc) · 2.62 KB
/
dark_additional_windows.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
/* Dark library, page-info and bookmark-properties */
/* Color scheme matches default dark theme */
/* If you are going to open Library in the (places.xhtml) in a tab then this file should also be imported in userContent.css */
@namespace xul url('http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul');
@-moz-document url-prefix(chrome://browser/content/places/),
url(chrome://global/content/commonDialog.xhtml),
url("chrome://mozapps/content/handling/dialog.xhtml"),
url-prefix(chrome://browser/content/pageinfo/),
url-prefix("chrome://mozapps/content/downloads")
{
#placesToolbox,
#placesView,
#placesToolbar,
#main-window,
#topBar,
dialog,
tree {
-moz-appearance: none !important;
background-color: rgb(50, 50, 52) !important;
color: rgb(249, 249, 250) !important;
}
#placesToolbar,
tree {
background: transparent !important;
}
search-textbox,
#searchFilter,
menulist,
input,
textbox,
richlistbox,
treecol,
button,
menu,
#permList {
-moz-appearance: none !important;
color: inherit !important;
}
menulist {
border: 1px solid graytext;
padding-inline-end: 4px;
}
menulist dropmarker {
filter: invert(1);
}
menulist:hover {
border-color: highlight;
background-color: rgba(255, 255, 255, 0.1);
}
.menubar-left {
fill: currentColor;
-moz-context-properties: fill;
}
#searchFilter,
search-textbox,
input,
textbox,
richlistbox {
background-color: rgba(0, 0, 0, 0.2) !important;
}
search-textbox > input,
#searchFilter > input,
input[readonly] {
background-color: transparent !important;
}
treecol:not([hideheader]) {
height: 24px;
}
treecol:hover {
filter: brightness(160%);
}
treechildren::-moz-tree-row(multicol, odd),
#permList {
background-color: rgba(0, 0, 0, 0.2) !important;
}
radiogroup > radio[selected],
radiogroup > radio:hover,
#permList > .permission:hover,
treechildren::-moz-tree-row(hover),
button:hover {
background-color: rgba(255, 255, 255, 0.1) !important;
color: inherit !important;
}
treechildren::-moz-tree-row(selected) {
background-color: Highlight !important;
}
button {
padding: 3px;
}
#placesMenu > menu {
border: none !important;
}
search-textbox,
input,
button {
border: 1px solid graytext;
border-radius: 3px;
}
search-textbox,
input {
padding: 2px;
}
}
/* modal prompts (alert() & friends) */
xul|vbox.paymentDialogContainerFrame,
xul|vbox.tabmodalprompt-mainContainer {
background-color: var(--toolbar-bgcolor) !important;
color: var(--lwt-text-color, -moz-dialogtext) !important;
}