blob: 0dac5559a3b7b33246db1879d5f156452009cabe (
plain)
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
|
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
#tab2-bar {
color: white;
background: #595959;
border-bottom: 3px solid #285577;
}
.tab2 {
-moz-box-align: center;
border-right: 3px solid #285577;
min-width: 10em;
max-width: 15em;
}
.tab2[selected=true] {
background: #333333;
}
.tab2:hover {
background: #999;
}
.tab2-label {
-moz-box-flex: 100;
margin-left: 4pt;
padding-top: 1pt;
}
.tab2-index {
padding: 0pt 2pt 0pt 3pt;
font-weight: 900;
text-align: center;
}
.tab2-icon {
width: 16px;
height: 16px;
-moz-margin-start: 4pt;
-moz-margin-end: 3pt;
}
|