and commenting out tab margins also for other than top tabs
[themes.git] / LCARStrek / global / skin / tabbox.css
CommitLineData
7f414a22 1@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
2
3/*============ tabpanels widget =============*/
4
5tabpanels {
6 padding: 5px;
1d798428 7}
8
9/********** Tab widget *********/
10tab {
11 -moz-border-radius: 3px 3px 0px 0px;
12 border: 1px solid #9C9CFF;
13 color: #FF9F00;
14 padding: 3px 5px 3px 5px;
7f414a22 15 -moz-user-focus: normal;
1d798428 16}
17
18/* when a tab is selected this is how it should look */
19tab[selected="true"] {
20 font-weight: bold;
21 background-color: #008484;
22}
23
24tab:hover {
25 background-color: #FFCF00;
26 color: #000000;
27 text-decoration: underline;
28}
29
30tab:hover:active {
31 text-decoration: none;
32}
33
7f414a22 34tabs, tabs[orient="horizontal"] {
35 padding: 0px 4px 0px 4px;
36}
37
38tabs[orient="vertical"] {
39 padding: 4px 0px 4px 0px;
1d798428 40}
41
42 /* top tabs */
7f414a22 43tabbox[orient="vertical"] > tabs[orient="horizontal"] tab {
1d798428 44 border-bottom: none;
45 -moz-border-radius: 8px 8px 0px 0px;
46 padding-bottom: 1px;
7f414a22 47/* margin: 1px 2px 1px 2px; */
1d798428 48}
49
50 /* bottom tabs */
7f414a22 51tabbox[orient="vertical"] > tabpanels + tabs[orient="horizontal"] > tab {
1d798428 52 border-top: none;
1d798428 53 -moz-border-radius: 0px 0px 8px 8px;
54 padding: 1px 5px 3px 5px;
e0084138 55/* margin: 1px 2px 1px 2px; */
1d798428 56}
57
58 /* left tabs */
7f414a22 59tabbox[orient="horizontal"] > tabs[orient="vertical"] tab {
1d798428 60 border-right: none;
61 -moz-border-radius: 8px 0px 0px 8px;
62 padding-right: 1px;
e0084138 63/* margin: 2px 1px 2px 1px; */
1d798428 64}
65
66 /* right tabs */
7f414a22 67tabbox[orient="horizontal"] > tabpanels + tabs[orient="vertical"] > tab {
1d798428 68 border-left: none;
1d798428 69 -moz-border-radius: 0px 8px 8px 0px;
70 padding: 3px 5px 1px 5px;
e0084138 71/* margin: 2px 1px 2px 1px; */
1d798428 72}
73
c9990331 74tabbox {
1d798428 75 border: none;
76}
77
78/* border on bottom only, no padding (used in search) */
c9990331 79tabpanels.light {
1d798428 80 border: none;
81 border-bottom: 1px solid #9C9CFF;
82 padding: 0px;
83}
84
c9990331 85tabpanels {
1d798428 86 -moz-border-radius: 5px;
87 border: 1px solid #9C9CFF;
88 padding: 5px;
89}