1 | /* tab styles */
|
---|
2 |
|
---|
3 | /* unselected label */
|
---|
4 | div.section table.filter tr.tabs td.tab {
|
---|
5 | width: 10em;
|
---|
6 | background: white;
|
---|
7 | text-align: center;
|
---|
8 | color: #0481DA;
|
---|
9 | font-weight: normal;
|
---|
10 | overflow: hidden;
|
---|
11 | cursor: pointer;
|
---|
12 | border-bottom: solid 1px #cad1da;
|
---|
13 | font-size: xx-small;
|
---|
14 | }
|
---|
15 |
|
---|
16 | /* selected label */
|
---|
17 | div.section table.filter tr.tabs td.activeTab {
|
---|
18 | width: 10em;
|
---|
19 | background: #E3E6EB;
|
---|
20 | text-align: center;
|
---|
21 | color: #000066;
|
---|
22 | font-weight: bold;
|
---|
23 | overflow: hidden;
|
---|
24 | font-size: xx-small;
|
---|
25 | }
|
---|
26 |
|
---|
27 | /* unselected upper left corner */
|
---|
28 | td.LeftTab {
|
---|
29 | width: 5px;
|
---|
30 | height: 5px;
|
---|
31 | background-image: url("../icons/tab_unsel_lft_cnr.gif");
|
---|
32 | background-repeat: no-repeat;
|
---|
33 | font-size:2pt;
|
---|
34 | }
|
---|
35 |
|
---|
36 | /* selected upper left corner */
|
---|
37 | td.activeLeftTab {
|
---|
38 | width: 5px;
|
---|
39 | height: 5px;
|
---|
40 | background-image: url("../icons/tab_sel_lft_cnr.gif");
|
---|
41 | background-repeat: no-repeat;
|
---|
42 | font-size:2pt;
|
---|
43 | }
|
---|
44 |
|
---|
45 | /* unselected upper right corner */
|
---|
46 | td.RightTab {
|
---|
47 | width: 5px;
|
---|
48 | height: 5px;
|
---|
49 | background-image: url("../icons/tab_unsel_rt_cnr.gif");
|
---|
50 | background-repeat: no-repeat;
|
---|
51 | font-size:2pt;
|
---|
52 | }
|
---|
53 |
|
---|
54 | /* selected upper right corner */
|
---|
55 | td.activeRightTab {
|
---|
56 | width: 5px;
|
---|
57 | height: 5px;
|
---|
58 | background-image: url("../icons/tab_sel_rt_cnr.gif");
|
---|
59 | background-repeat: no-repeat;
|
---|
60 | font-size:2pt;
|
---|
61 | }
|
---|
62 |
|
---|
63 | /* unselected left gradient */
|
---|
64 | td.leftGrad {
|
---|
65 | width: 5px;
|
---|
66 | border-bottom: solid 1px #cad1da;
|
---|
67 | background-image: url("../icons/tab_unsel_lft_grad.gif");
|
---|
68 | background-repeat: repeat-y;
|
---|
69 | font-size:2pt;
|
---|
70 | }
|
---|
71 |
|
---|
72 | /* selected left gradient */
|
---|
73 | td.activeLeftGrad {
|
---|
74 | width: 5px;
|
---|
75 | background-image: url("../icons/tab_sel_lft_grad.gif");
|
---|
76 | background-repeat: repeat-y;
|
---|
77 | font-size:2pt;
|
---|
78 | }
|
---|
79 |
|
---|
80 | /* unselected right gradient */
|
---|
81 | td.RightGrad {
|
---|
82 | width: 5px;
|
---|
83 | border-bottom: solid 1px #cad1da;
|
---|
84 | background-image: url("../icons/tab_unsel_rt_grad.gif");
|
---|
85 | background-repeat: repeat-y;
|
---|
86 | white-space:nowrap;
|
---|
87 | font-size:2pt;
|
---|
88 | }
|
---|
89 |
|
---|
90 | /* selected right gradient */
|
---|
91 | td.activeRightGrad {
|
---|
92 | width: 5px;
|
---|
93 | background-image: url("../icons/tab_sel_rt_grad.gif");
|
---|
94 | background-repeat: repeat-y;
|
---|
95 | white-space:nowrap;
|
---|
96 | font-size:2pt;
|
---|
97 | }
|
---|
98 |
|
---|
99 | /* unselected label top */
|
---|
100 | td.middleTab {
|
---|
101 | width: 10em;
|
---|
102 | background: white;
|
---|
103 | height: 5px;
|
---|
104 | border-top: solid 1px #cad1da;
|
---|
105 | font-size:2pt;
|
---|
106 | }
|
---|
107 |
|
---|
108 | /* selected label top */
|
---|
109 | td.activeMiddleTab
|
---|
110 | {
|
---|
111 | width: 10em;
|
---|
112 | background: #E3E6EB;
|
---|
113 | height: 5px;
|
---|
114 | border-top: solid 1px #bdc6d2;
|
---|
115 | font-size:2pt;
|
---|
116 | }
|
---|
117 |
|
---|
118 |
|
---|