source: trunk/Mars/datacenter/db/tabs.css@ 15935

Last change on this file since 15935 was 9154, checked in by Daniela Dorner, 16 years ago
*** empty log message ***
File size: 4.8 KB
Line 
1/* **************************************************
2 * Tab support based on http://www.alistapart.com/articles/slidingdoors/
3 * ************************************************** */
4
5body {
6 /* font: x-small sans-serif; */
7 background: #f9f9f9 url(/ewiki/skins/monobook/headbg.jpg) 0 0 no-repeat;
8 color: black;
9/* margin: 0;
10 padding 0;*/
11}
12
13
14.tabs,.tabs-blue {
15 float:left;
16/* width:5000;*/ /* STUPID HACK */
17/* background:#DAE0D2 url("Tab-bg.gif") repeat-x bottom;*/
18 font-size:93%;
19 line-height:normal;
20 margin: 0;
21 padding: 0;
22}
23.tabs-blue {
24/* background:#CCCCFF url("SDbg.gif") repeat-x bottom;*/
25}
26
27.tabs ul,.tabs-blue ul {
28 margin:0;
29 padding:10px 10px 0px;
30 list-style:none;
31 overflow:hidden;
32/* display:none;*/
33/* border-collapse:collapse;*/
34/* height:2.6ex;*/
35}
36
37.tabs li,.tabs-blue li {
38 background:url("Tab-left.gif") no-repeat left top;
39 margin:0;
40 padding:0 0 0 9px;
41 float:left;
42/* float:right;
43 direction:rtl;*/
44}
45
46/* MediaWiki automatically removes links for the current page and surrounds it with <strong> tags instead */
47.tabs a,.tabs-blue a,.tabs strong,.tabs-blue strong {
48 float:none;
49 display:block;
50 background:url("Tab-right.gif") no-repeat right top;
51 padding: 3px 8px 2px 0px;
52 text-decoration:none;
53 font-weight:bold;
54 font-family:Arial,Helvetica,Sans-serif;
55 font-size: x-small;
56 color:#765;
57}
58
59.tabs-blue li {
60 background:url("SDleft.gif") no-repeat left top;
61/* border-bottom: 1px solid #aa9988;*/
62}
63
64.tabs-blue a,.tabs-blue strong {
65 background:url("SDright.gif") no-repeat right top;
66}
67
68.tabs-blue #current {
69 background-image:url("SDleft_on.gif");
70}
71
72.tabs-blue #magnify {
73 background-image:url("Tab-left.gif");
74 margin: 0 7px 0 0;
75}
76.tabs-blue #magnify a,.tabs-blue #current strong {
77 background-image:url("Tab-right.gif");
78}
79
80.tabs-blue #prevnext {
81 background-image:url("Tab-left.gif");
82 float:right;
83}
84.tabs-blue #prevnext a,.tabs-blue #current strong {
85 background-image:url("Tab-right.gif");
86}
87
88.tabs-blue #current a,.tabs-blue #current strong {
89 background-image:url("SDright_on.gif");
90}
91
92.tabs #current {
93 background-image:url("Tab-left_on.gif");
94}
95
96.tabs-blue #current {
97 border-bottom:none;
98}
99
100.tabs #current a,.tabs #current strong,.tabs-blue #current a, .tabs-blue #current strong {
101 background-image:url("Tab-right_on.gif");
102 color:#825;
103 padding-bottom:3px;
104/* border-bottom:none;*/
105}
106
107.tabcontent {
108 font: x-small sans-serif;
109/* border: 1px dashed #aa9988;
110 padding: 5px 7px 5px 5px;
111 border-top: none;*/
112 border: 1px solid #aa9988;
113 padding: 0;
114
115/* background-color: #f6f6f0;*/
116background-color: #ffffff;
117 color: #000;
118 clear: both;
119 /*opacity: 0.8;*/
120 border-collapse:collapse;
121 /*cursor:url("zoomin.cur");*/
122}
123
124.tabcontent #prevtab {
125 float: left;
126 margin-top: -1.5em;
127 background-color: #DAE0D2;
128 color: #000;
129 padding: .2em .6em;
130 font-size: 130%;
131 border: 1px solid #765;
132}
133
134.tabcontent #nexttab {
135 float: right;
136 margin-top: -1.5em;
137 background-color: #DAE0D2;
138 color: #000;
139 padding: .2em .6em;
140 font-size: 130%;
141 border: 1px solid #765;
142}
143
144/* Commented Backslash Hack
145 hides rule from IE5-Mac \*/
146.tabs a, .tabs-blue a {float:none;}
147/* End IE5-Mac hack */
148.tabs a:hover, .tabs-blue a:hover {
149 color:#001;
150}
151
152.marstable {
153 font: small sans-serif;
154}
155
156.marstable tr {
157 background-color: #eeeeee;
158}
159
160.marstable #title {
161 text-align: center;
162 font-weight: bold;
163 font-size: 150%;
164 background-color: #cccccc;
165 border: 1px solid #bbaa99;
166 background-image:url("box_mtl_ctr.gif");
167}
168
169.marstable #left {
170 text-align: right;
171 padding:0px 5px;
172}
173
174.marstable #middle {
175 text-align: center;
176 padding:1px 5px;
177}
178
179.marstable #right {
180 text-align: left;
181 padding:0px 5px;
182}
183
184.marstable a {
185 font-weight:bold;
186 text-decoration:none;
187 color:#63F;
188}
189
190/* Commented Backslash Hack
191 hides rule from IE5-Mac \*/
192.marstable a {float:none;}
193/* End IE5-Mac hack */
194.marstable a:hover {
195 color:#333;
196}
197
198a.tooltip {
199 text-decoration:none;
200}
201
202.tooltip span.info {
203 display: none;
204}
205
206.tooltip:hover span.info {
207 margin: 20px 5px 5px 5px;
208 padding: 3px 15px 5px 15px;
209 border: 1px solid #808080;
210 background: #F6F6F6;
211 display: block;
212 position: absolute;
213 width: 200px;
214 font-size: small;
215 opacity: 0.94;
216}
217
218.tooltip span.preview {
219 display:none;
220}
221
222.tooltip:hover span.preview {
223 padding: 30px 40px 30px 40px;
224 border: 1px solid #808080;
225 background: #F0F0F8;
226 display: block;
227 position: fixed;
228 top: 100;
229 right: 40;
230 opacity: 0.95;
231 text-align: center;
232 font-size: 14;
233}
234
235.tooltip:hover img {
236 border: 1px solid #808080;
237}
238
239.tooltip span.preview div {
240 padding: 4px 0px 4px;
241 background-color: #C0C0C8;
242 border: 1px solid #808080;
243 border-bottom: none;
244}
Note: See TracBrowser for help on using the repository browser.