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
|
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
/* ::::: toolbox ::::: */
toolbox {
-moz-appearance: none;
background-color: rgb(43,43,43);
border-top: 1px solid;
-moz-border-top-colors: rgb(75,75,75);
color: #fff;
}
/* ::::: toolbar & menubar ::::: */
toolbar, menubar {
-moz-appearance: none;
color: #fff;
}
toolbar {
background-color: rgb(43,43,43);
min-width: 1px;
min-height: 19px;
border-top: 1px solid rgb(75,75,75);
border-bottom: 1px solid rgb(75,75,75);
}
toolbar:first-child, menubar {
min-width: 1px;
border-bottom: 1px solid rgb(75,75,75);
border-top: 0px !important;
}
/* ::::: lightweight theme ::::: */
menubar:-moz-lwtheme,
toolbox:-moz-lwtheme,
toolbar:-moz-lwtheme {
-moz-appearance: none;
background: none;
border-style: none;
color: inherit !important;
}
/* ::::: toolbar decorations ::::: */
toolbarseparator {
-moz-appearance: none;
margin: 3px 4px;
background: url("chrome://global/skin/toolbar/toolbar-separator.png") transparent repeat-y;
padding: 0;
width: 1px !important;
}
toolbarspacer {
width: 15px;
}
|