colas@0
|
1 |
package TWiki::Configure::CSS;
|
colas@0
|
2 |
|
colas@0
|
3 |
use strict;
|
colas@0
|
4 |
|
colas@0
|
5 |
use vars qw( $css );
|
colas@0
|
6 |
|
colas@0
|
7 |
sub css {
|
colas@0
|
8 |
local $/ = undef;
|
colas@0
|
9 |
return <DATA>;
|
colas@0
|
10 |
}
|
colas@0
|
11 |
|
colas@0
|
12 |
1;
|
colas@0
|
13 |
__DATA__
|
colas@0
|
14 |
|
colas@0
|
15 |
/* TWiki base CSS */
|
colas@0
|
16 |
|
colas@0
|
17 |
.twikiMakeVisible,
|
colas@0
|
18 |
.twikiMakeVisibleInline,
|
colas@0
|
19 |
.twikiMakeVisibleBlock {
|
colas@0
|
20 |
display:none; /* will be made visible with javascript */
|
colas@0
|
21 |
}
|
colas@0
|
22 |
.twikiLeft {
|
colas@0
|
23 |
float:left;
|
colas@0
|
24 |
position:relative;
|
colas@0
|
25 |
}
|
colas@0
|
26 |
.twikiRight {
|
colas@0
|
27 |
position:relative;
|
colas@0
|
28 |
float:right;
|
colas@0
|
29 |
display:inline;
|
colas@0
|
30 |
margin:0;
|
colas@0
|
31 |
}
|
colas@0
|
32 |
.twikiClear {
|
colas@0
|
33 |
/* to clean up floats */
|
colas@0
|
34 |
margin:0;
|
colas@0
|
35 |
padding:0;
|
colas@0
|
36 |
height:0;
|
colas@0
|
37 |
line-height:0px;
|
colas@0
|
38 |
clear:both;
|
colas@0
|
39 |
display:block;
|
colas@0
|
40 |
}
|
colas@0
|
41 |
.twikiHidden {
|
colas@0
|
42 |
display:none;
|
colas@0
|
43 |
}
|
colas@0
|
44 |
.twikiSmall {
|
colas@0
|
45 |
font-size:86%;
|
colas@0
|
46 |
line-height:110%; /*S3*/
|
colas@0
|
47 |
}
|
colas@0
|
48 |
.twikiSmallish {
|
colas@0
|
49 |
font-size:94%; /*S2*/
|
colas@0
|
50 |
}
|
colas@0
|
51 |
.twikiBroadcastMessage {
|
colas@0
|
52 |
background-color:#ff0;
|
colas@0
|
53 |
padding:.25em .5em;
|
colas@0
|
54 |
margin:0 0 1em 0;
|
colas@0
|
55 |
}
|
colas@0
|
56 |
.twikiBroadcastMessage b,
|
colas@0
|
57 |
.twikiBroadcastMessage strong {
|
colas@0
|
58 |
color:#f00;
|
colas@0
|
59 |
}
|
colas@0
|
60 |
.twikiAlert,
|
colas@0
|
61 |
.twikiAlert code {
|
colas@0
|
62 |
color:#f00;
|
colas@0
|
63 |
}
|
colas@0
|
64 |
.twikiEmulatedLink {
|
colas@0
|
65 |
text-decoration:underline;
|
colas@0
|
66 |
}
|
colas@0
|
67 |
.twikiAccessKey {
|
colas@0
|
68 |
text-decoration:none;
|
colas@0
|
69 |
border-width:0 0 1px 0;
|
colas@0
|
70 |
border-style:solid;
|
colas@0
|
71 |
}
|
colas@0
|
72 |
a:hover .twikiAccessKey {
|
colas@0
|
73 |
text-decoration:none;
|
colas@0
|
74 |
border:none;
|
colas@0
|
75 |
}
|
colas@0
|
76 |
.twikiImage img {
|
colas@0
|
77 |
padding:3px;
|
colas@0
|
78 |
border-width:1px;
|
colas@0
|
79 |
border-style:solid;
|
colas@0
|
80 |
}
|
colas@0
|
81 |
.twikiPreviewArea {
|
colas@0
|
82 |
border-width:1px;
|
colas@0
|
83 |
border-style:solid;
|
colas@0
|
84 |
border-color:#f00;
|
colas@0
|
85 |
margin:0 -0.5em 2em -0.5em;
|
colas@0
|
86 |
padding:.5em;
|
colas@0
|
87 |
}
|
colas@0
|
88 |
|
colas@0
|
89 |
/*
|
colas@0
|
90 |
Basic layout derived from http://www.positioniseverything.net/articles/pie-maker/pagemaker_form.php.
|
colas@0
|
91 |
I've changed many so things that I won't put a full copyright notice. However all hacks (and comments!) are far beyond my knowledge and this deserves full credits:
|
colas@0
|
92 |
|
colas@0
|
93 |
Original copyright notice:
|
colas@0
|
94 |
Parts of these notes are
|
colas@0
|
95 |
(c) Big John @ www.positioniseverything.net and (c) Paul O'Brien @ www.pmob.co.uk, all of whom contributed significantly to the design of
|
colas@0
|
96 |
the css and html code.
|
colas@0
|
97 |
|
colas@0
|
98 |
Reworked for TWiki: (c) Arthur Clemens @ visiblearea.com
|
colas@0
|
99 |
*/
|
colas@0
|
100 |
|
colas@0
|
101 |
html, body {
|
colas@0
|
102 |
margin:0; /*** Do NOT set anything other than a left margin for the page
|
colas@0
|
103 |
as this will break the design ***/
|
colas@0
|
104 |
padding:0;
|
colas@0
|
105 |
border:0;
|
colas@0
|
106 |
/* \*/
|
colas@0
|
107 |
height:100%;
|
colas@0
|
108 |
/* Last height declaration hidden from Mac IE 5.x */
|
colas@0
|
109 |
}
|
colas@0
|
110 |
body {
|
colas@0
|
111 |
background:#fff;
|
colas@0
|
112 |
min-width:100%; /*** This is needed for moz. Otherwise, the header and patternBottomBar will
|
colas@0
|
113 |
slide off the left side of the page if the screen width is narrower than the design.
|
colas@0
|
114 |
Not seen by IE. Left Col + Right Col + Center Col + Both Inner Borders + Both Outer Borders ***/
|
colas@0
|
115 |
text-align:center; /*** IE/Win (not IE/MAC) alignment of page ***/
|
colas@0
|
116 |
}
|
colas@0
|
117 |
.clear {
|
colas@0
|
118 |
clear:both;
|
colas@0
|
119 |
/*** these next attributes are designed to keep the div
|
colas@0
|
120 |
height to 0 pixels high, critical for Safari and Netscape 7 ***/
|
colas@0
|
121 |
height:0px;
|
colas@0
|
122 |
overflow:hidden;
|
colas@0
|
123 |
line-height:1%;
|
colas@0
|
124 |
font-size:0px;
|
colas@0
|
125 |
}
|
colas@0
|
126 |
|
colas@0
|
127 |
#patternWrapper {
|
colas@0
|
128 |
height:100%; /*** moz uses this to make full height design. As this #patternWrapper is inside the #patternPage which is 100% height, moz will not inherit heights further into the design inside this container, which you should be able to do with use of the min-height style. Instead, Mozilla ignores the height:100% or min-height:100% from this point inwards to the center of the design - a nasty bug.
|
colas@0
|
129 |
If you change this to height:100% moz won't expand the design if content grows.
|
colas@0
|
130 |
Aaaghhh. I pulled my hair out over this for days. ***/
|
colas@0
|
131 |
/* \*/
|
colas@0
|
132 |
height:100%;
|
colas@0
|
133 |
/* Last height declaration hidden from Mac IE 5.x */
|
colas@0
|
134 |
/*** Fixes height for non moz browsers, to full height ***/
|
colas@0
|
135 |
}
|
colas@0
|
136 |
#patternWrapp\65 r{ /*** for Opera and Moz (and some others will see it, but NOT Safari) ***/
|
colas@0
|
137 |
height:auto; /*** For moz to stop it fixing height to 100% ***/
|
colas@0
|
138 |
}
|
colas@0
|
139 |
/* \*/
|
colas@0
|
140 |
* html #patternWrapper{
|
colas@0
|
141 |
height:100%;
|
colas@0
|
142 |
}
|
colas@0
|
143 |
|
colas@0
|
144 |
#patternPage {
|
colas@0
|
145 |
margin-left:auto; /*** Mozilla/Opera/Mac IE 5.x alignment of page ***/
|
colas@0
|
146 |
margin-right:auto; /*** Mozilla/Opera/Mac IE 5.x alignment of page ***/
|
colas@0
|
147 |
text-align:left; /*** IE Win re-alignment of page if page is centered ***/
|
colas@0
|
148 |
position:relative;
|
colas@0
|
149 |
width:100%; /*** Needed for Moz/Opera to keep page from sliding to left side of
|
colas@0
|
150 |
page when it calculates auto margins above. Can't use min-width. Note that putting
|
colas@0
|
151 |
width in #patternPage shows it to IE and causes problems, so IE needs a hack
|
colas@0
|
152 |
to remove this width. Left Col + Right Col + Center Col + Both Inner Border + Both Outer Borders ***/
|
colas@0
|
153 |
/* \*/
|
colas@0
|
154 |
|
colas@0
|
155 |
/* Last height declaration hidden from Mac IE 5.x */
|
colas@0
|
156 |
/*** Needed for Moz to give full height design if page content is
|
colas@0
|
157 |
too small to fill the page ***/
|
colas@0
|
158 |
}
|
colas@0
|
159 |
/* Last style with height declaration hidden from Mac IE 5.x */
|
colas@0
|
160 |
/*** Fixes height for IE, back to full height,
|
colas@0
|
161 |
from esc tab hack moz min-height solution ***/
|
colas@0
|
162 |
#patternOuter {
|
colas@0
|
163 |
z-index:1; /*** Critical value for Moz/Opera Background Column colors fudge to work ***/
|
colas@0
|
164 |
position:relative; /*** IE needs this or the contents won't show outside the parent container. ***/
|
colas@0
|
165 |
|
colas@0
|
166 |
height:100%;
|
colas@0
|
167 |
/* Last height declaration hidden from Mac IE 5.x */
|
colas@0
|
168 |
/*** Needed for full height inner borders in Win IE ***/
|
colas@0
|
169 |
}
|
colas@0
|
170 |
|
colas@0
|
171 |
#patternFloatWrap {
|
colas@0
|
172 |
width:100%;
|
colas@0
|
173 |
float:left;
|
colas@0
|
174 |
display:inline;
|
colas@0
|
175 |
}
|
colas@0
|
176 |
|
colas@0
|
177 |
#patternLeftBar {
|
colas@0
|
178 |
/* Left bar width is defined in viewleftbar.pattern.tmpl */
|
colas@0
|
179 |
float:left;
|
colas@0
|
180 |
display:inline;
|
colas@0
|
181 |
overflow:hidden;
|
colas@0
|
182 |
}
|
colas@0
|
183 |
#patternLeftBarContents {
|
colas@0
|
184 |
position:relative;
|
colas@0
|
185 |
/* for margins and paddings use style.css */
|
colas@0
|
186 |
}
|
colas@0
|
187 |
#patternMain {
|
colas@0
|
188 |
width:100%;
|
colas@0
|
189 |
float:right;
|
colas@0
|
190 |
display:inline;
|
colas@0
|
191 |
}
|
colas@0
|
192 |
#patternTopBar {
|
colas@0
|
193 |
/* Top bar height is defined in viewtopbar.pattern.tmpl */
|
colas@0
|
194 |
z-index:1; /*** Critical value for Moz/Opera Background Column colors fudge to work ***/
|
colas@0
|
195 |
position:absolute;
|
colas@0
|
196 |
top:0px;
|
colas@0
|
197 |
width:100%;
|
colas@0
|
198 |
}
|
colas@0
|
199 |
#patternTopBarContents {
|
colas@0
|
200 |
height:1%; /* or Win IE won't display a background */
|
colas@0
|
201 |
/* for margins/paddings use style.css */
|
colas@0
|
202 |
}
|
colas@0
|
203 |
#patternTopToolBar {
|
colas@0
|
204 |
/* Top bar y and height is defined in viewtopbar.pattern.tmpl */
|
colas@0
|
205 |
z-index:1; /*** Critical value for Moz/Opera Background Column colors fudge to work ***/
|
colas@0
|
206 |
position:absolute;
|
colas@0
|
207 |
width:100%;
|
colas@0
|
208 |
}
|
colas@0
|
209 |
#patternBottomBar {
|
colas@0
|
210 |
z-index:1; /* Critical value for Moz/Opera Background Column colors fudge to work */
|
colas@0
|
211 |
clear:both;
|
colas@0
|
212 |
width:100%;
|
colas@0
|
213 |
}
|
colas@0
|
214 |
|
colas@0
|
215 |
/* -----------------------------------------------------------
|
colas@0
|
216 |
STYLE
|
colas@0
|
217 |
Appearance: margins, padding, fonts, borders
|
colas@0
|
218 |
----------------------------------------------------------- */
|
colas@0
|
219 |
|
colas@0
|
220 |
|
colas@0
|
221 |
/* ----------------------------------------------------------------------------
|
colas@0
|
222 |
CONSTANTS
|
colas@0
|
223 |
|
colas@0
|
224 |
Sizes
|
colas@0
|
225 |
----------------------------------------
|
colas@0
|
226 |
S1 line-height 1.5em
|
colas@0
|
227 |
S2 somewhat smaller font size 94%
|
colas@0
|
228 |
S3 small font size, twikiSmall font-size:86%; line-height:110%;
|
colas@0
|
229 |
S4 horizontal bar padding (h2, patternTop) 5px
|
colas@0
|
230 |
S5 form and attachment padding 20px
|
colas@0
|
231 |
S6 left margin left bar 1em
|
colas@0
|
232 |
|
colas@0
|
233 |
------------------------------------------------------------------------- */
|
colas@0
|
234 |
|
colas@0
|
235 |
/* GENERAL HTML ELEMENTS */
|
colas@0
|
236 |
|
colas@0
|
237 |
html body {
|
colas@0
|
238 |
font-size:104%; /* to change the site's font size, change #patternPage below */
|
colas@0
|
239 |
voice-family:"\"}\"";
|
colas@0
|
240 |
voice-family:inherit;
|
colas@0
|
241 |
font-size:small;
|
colas@0
|
242 |
}
|
colas@0
|
243 |
html>body { /* Mozilla */
|
colas@0
|
244 |
font-size:small;
|
colas@0
|
245 |
}
|
colas@0
|
246 |
p {
|
colas@0
|
247 |
margin:1em 0 0 0;
|
colas@0
|
248 |
}
|
colas@0
|
249 |
table {
|
colas@0
|
250 |
}
|
colas@0
|
251 |
th {
|
colas@0
|
252 |
line-height:1.15em;
|
colas@0
|
253 |
}
|
colas@0
|
254 |
label {
|
colas@0
|
255 |
padding:.15em .3em .15em 0; /* same vertical padding as twikiInputField */
|
colas@0
|
256 |
}
|
colas@0
|
257 |
strong, b {
|
colas@0
|
258 |
font-weight:bold;
|
colas@0
|
259 |
}
|
colas@0
|
260 |
hr {
|
colas@0
|
261 |
height:1px;
|
colas@0
|
262 |
border:none;
|
colas@0
|
263 |
}
|
colas@0
|
264 |
/* put overflow pre in a scroll area */
|
colas@0
|
265 |
pre {
|
colas@0
|
266 |
width:100%;
|
colas@0
|
267 |
margin:1em 0; /* Win IE tries to make this bigger otherwise */
|
colas@0
|
268 |
}
|
colas@0
|
269 |
/* IE behavior for pre is defined in css.pattern.tmpl in conditional comment */
|
colas@0
|
270 |
html>body pre { /* hide from IE */
|
colas@0
|
271 |
/*\*/ overflow:auto !important; /* */ overflow:scroll; width:auto; /* for Mac Safari */
|
colas@0
|
272 |
}
|
colas@0
|
273 |
ol, ul {
|
colas@0
|
274 |
margin-top:0;
|
colas@0
|
275 |
}
|
colas@0
|
276 |
ol li, ul li {}
|
colas@0
|
277 |
blockquote {
|
colas@0
|
278 |
padding:.5em 1.25em;
|
colas@0
|
279 |
}
|
colas@0
|
280 |
.patternRenamePage blockquote,
|
colas@0
|
281 |
.patternPrintPage blockquote {
|
colas@0
|
282 |
border-style:solid;
|
colas@0
|
283 |
border-width:0 0 0 3px;
|
colas@0
|
284 |
}
|
colas@0
|
285 |
form {
|
colas@0
|
286 |
display:inline;
|
colas@0
|
287 |
margin:0;
|
colas@0
|
288 |
padding:0;
|
colas@0
|
289 |
}
|
colas@0
|
290 |
|
colas@0
|
291 |
/* Text */
|
colas@0
|
292 |
h1 {
|
colas@0
|
293 |
padding:0.25em 0 0 0;
|
colas@0
|
294 |
margin:0 0 .5em 0;
|
colas@0
|
295 |
}
|
colas@0
|
296 |
h2, h3, h4, h5, h6 {
|
colas@0
|
297 |
padding:0;
|
colas@0
|
298 |
margin:1em 0 .1em 0;
|
colas@0
|
299 |
}
|
colas@0
|
300 |
h1, h2, h3, h4, h5, h6 {
|
colas@0
|
301 |
font-weight:normal;
|
colas@0
|
302 |
line-height:1em;
|
colas@0
|
303 |
}
|
colas@0
|
304 |
h1 { font-size:215%; }
|
colas@0
|
305 |
h2 { font-size:153%; }
|
colas@0
|
306 |
h3 { font-size:133%; font-weight:bold; }
|
colas@0
|
307 |
h4 { font-size:122%; font-weight:bold; }
|
colas@0
|
308 |
h5 { font-size:110%; font-weight:bold; }
|
colas@0
|
309 |
h6 { font-size:95%; font-weight:bold; }
|
colas@0
|
310 |
h2, h3, h4, h5, h6 {
|
colas@0
|
311 |
display:block;
|
colas@0
|
312 |
/* give header a background color for easy scanning:*/
|
colas@0
|
313 |
padding:.25em 10px;
|
colas@0
|
314 |
margin:1.25em -10px .35em -10px;
|
colas@0
|
315 |
border-width:0 0 1px 0;
|
colas@0
|
316 |
border-style:solid;
|
colas@0
|
317 |
height:auto;
|
colas@0
|
318 |
}
|
colas@0
|
319 |
|
colas@0
|
320 |
h1.patternTemplateTitle {
|
colas@0
|
321 |
font-size:180%;
|
colas@0
|
322 |
text-align:center;
|
colas@0
|
323 |
}
|
colas@0
|
324 |
h2.patternTemplateTitle {
|
colas@0
|
325 |
text-align:center;
|
colas@0
|
326 |
margin-top:.5em;
|
colas@0
|
327 |
background:none;
|
colas@0
|
328 |
border:none;
|
colas@0
|
329 |
}
|
colas@0
|
330 |
/* Links */
|
colas@0
|
331 |
/* somehow the twikiNewLink style have to be before the general link styles */
|
colas@0
|
332 |
.twikiNewLink {
|
colas@0
|
333 |
border-width:0 0 1px 0;
|
colas@0
|
334 |
border-style:solid;
|
colas@0
|
335 |
}
|
colas@0
|
336 |
.twikiNewLink a {
|
colas@0
|
337 |
text-decoration:none;
|
colas@0
|
338 |
margin-left:1px;
|
colas@0
|
339 |
}
|
colas@0
|
340 |
.twikiNewLink a sup {
|
colas@0
|
341 |
text-align:center;
|
colas@0
|
342 |
padding:0 2px;
|
colas@0
|
343 |
vertical-align:baseline;
|
colas@0
|
344 |
font-size:100%;
|
colas@0
|
345 |
text-decoration:none;
|
colas@0
|
346 |
}
|
colas@0
|
347 |
.twikiNewLink a:link sup,
|
colas@0
|
348 |
.twikiNewLink a:visited sup {
|
colas@0
|
349 |
border-width:1px;
|
colas@0
|
350 |
border-style:solid;
|
colas@0
|
351 |
text-decoration:none;
|
colas@0
|
352 |
}
|
colas@0
|
353 |
.twikiNewLink a:hover sup {
|
colas@0
|
354 |
text-decoration:none;
|
colas@0
|
355 |
}
|
colas@0
|
356 |
|
colas@0
|
357 |
:link:focus,
|
colas@0
|
358 |
:visited:focus,
|
colas@0
|
359 |
:link,
|
colas@0
|
360 |
:visited,
|
colas@0
|
361 |
:link:active,
|
colas@0
|
362 |
:visited:active {
|
colas@0
|
363 |
text-decoration:underline;
|
colas@0
|
364 |
}
|
colas@0
|
365 |
:link:hover,
|
colas@0
|
366 |
:visited:hover {
|
colas@0
|
367 |
text-decoration:none;
|
colas@0
|
368 |
}
|
colas@0
|
369 |
img {
|
colas@0
|
370 |
vertical-align:text-bottom;
|
colas@0
|
371 |
border:0;
|
colas@0
|
372 |
}
|
colas@0
|
373 |
|
colas@0
|
374 |
|
colas@0
|
375 |
/* -----------------------------------------------------------
|
colas@0
|
376 |
Plugin elements
|
colas@0
|
377 |
----------------------------------------------------------- */
|
colas@0
|
378 |
|
colas@0
|
379 |
/* TagMePlugin */
|
colas@0
|
380 |
.tagMePlugin select {
|
colas@0
|
381 |
margin:0 .25em 0 0;
|
colas@0
|
382 |
}
|
colas@0
|
383 |
.tagMePlugin input {
|
colas@0
|
384 |
border:0px;
|
colas@0
|
385 |
}
|
colas@0
|
386 |
|
colas@0
|
387 |
/* EditTablePlugin */
|
colas@0
|
388 |
.editTable .twikiTable {
|
colas@0
|
389 |
margin:0 0 2px 0;
|
colas@0
|
390 |
}
|
colas@0
|
391 |
.editTableEditImageButton {
|
colas@0
|
392 |
border:none;
|
colas@0
|
393 |
}
|
colas@0
|
394 |
|
colas@0
|
395 |
/* TablePlugin */
|
colas@0
|
396 |
.twikiTable {
|
colas@0
|
397 |
border-style:solid;
|
colas@0
|
398 |
border-width:1px;
|
colas@0
|
399 |
margin:2px 0;
|
colas@0
|
400 |
border-collapse:collapse;
|
colas@0
|
401 |
}
|
colas@0
|
402 |
.twikiTable td {
|
colas@0
|
403 |
padding:.25em .5em;
|
colas@0
|
404 |
border-width:1px;
|
colas@0
|
405 |
}
|
colas@0
|
406 |
.twikiTable th {
|
colas@0
|
407 |
border-left-style:solid;
|
colas@0
|
408 |
border-width:1px;
|
colas@0
|
409 |
padding:.4em .5em;
|
colas@0
|
410 |
}
|
colas@0
|
411 |
.twikiTable th.twikiFirstCol {
|
colas@0
|
412 |
border-left-style:none;
|
colas@0
|
413 |
}
|
colas@0
|
414 |
.twikiTable a:link,
|
colas@0
|
415 |
.twikiTable a:visited {
|
colas@0
|
416 |
text-decoration:underline;
|
colas@0
|
417 |
}
|
colas@0
|
418 |
.twikiTable a:hover {
|
colas@0
|
419 |
text-decoration:underline;
|
colas@0
|
420 |
}
|
colas@0
|
421 |
|
colas@0
|
422 |
.twikiEditForm {
|
colas@0
|
423 |
margin:0 0 .5em 0;
|
colas@0
|
424 |
}
|
colas@0
|
425 |
|
colas@0
|
426 |
/* TwistyContrib */
|
colas@0
|
427 |
.twistyTrigger a:link,
|
colas@0
|
428 |
.twistyTrigger a:visited {
|
colas@0
|
429 |
text-decoration:none;
|
colas@0
|
430 |
}
|
colas@0
|
431 |
.twistyTrigger a:link .twikiLinkLabel,
|
colas@0
|
432 |
.twistyTrigger a:visited .twikiLinkLabel {
|
colas@0
|
433 |
text-decoration:none;
|
colas@0
|
434 |
}
|
colas@0
|
435 |
|
colas@0
|
436 |
/*tipsOfTheDay*/
|
colas@0
|
437 |
.tipsOfTheDay {
|
colas@0
|
438 |
padding:10px;
|
colas@0
|
439 |
}
|
colas@0
|
440 |
|
colas@0
|
441 |
/* -----------------------------------------------------------
|
colas@0
|
442 |
TWiki styles
|
colas@0
|
443 |
----------------------------------------------------------- */
|
colas@0
|
444 |
|
colas@0
|
445 |
#twikiLogin {
|
colas@0
|
446 |
width:40em;
|
colas@0
|
447 |
margin:0 auto;
|
colas@0
|
448 |
text-align:center;
|
colas@0
|
449 |
}
|
colas@0
|
450 |
#twikiLogin .twikiFormSteps {
|
colas@0
|
451 |
border-width:5px;
|
colas@0
|
452 |
}
|
colas@0
|
453 |
.twikiAttachments,
|
colas@0
|
454 |
.twikiForm {
|
colas@0
|
455 |
margin:1em 0;
|
colas@0
|
456 |
padding:1px; /* fixes disappearing borders because of overflow:auto; in twikiForm */
|
colas@0
|
457 |
}
|
colas@0
|
458 |
.twikiTable h2, .twikiFormTable h2,
|
colas@0
|
459 |
.twikiTable h3, .twikiFormTable h3,
|
colas@0
|
460 |
.twikiTable h4, .twikiFormTable h4,
|
colas@0
|
461 |
.twikiTable h5, .twikiFormTable h5,
|
colas@0
|
462 |
.twikiTable h6, .twikiFormTable h6 {
|
colas@0
|
463 |
border:0;
|
colas@0
|
464 |
margin-top:0;
|
colas@0
|
465 |
margin-bottom:0;
|
colas@0
|
466 |
}
|
colas@0
|
467 |
.twikiFormTable th {
|
colas@0
|
468 |
font-weight:normal;
|
colas@0
|
469 |
}
|
colas@0
|
470 |
.twikiFormTable .twikiTable th {
|
colas@0
|
471 |
font-weight:bold;
|
colas@0
|
472 |
}
|
colas@0
|
473 |
.patternEditPage .twikiFormTable td,
|
colas@0
|
474 |
.patternEditPage .twikiFormTable th {
|
colas@0
|
475 |
padding:.3em .4em;
|
colas@0
|
476 |
border-style:solid;
|
colas@0
|
477 |
border-width:0 0 1px 0;
|
colas@0
|
478 |
vertical-align:middle;
|
colas@0
|
479 |
}
|
colas@0
|
480 |
|
colas@0
|
481 |
.patternContent .twikiAttachments,
|
colas@0
|
482 |
.patternContent .twikiForm {
|
colas@0
|
483 |
/* form or attachment table inside topic area */
|
colas@0
|
484 |
font-size:94%; /*S2*/
|
colas@0
|
485 |
padding:1em 20px; /*S5*/ /* top:use less padding for the toggle link; bottom:use less space in case the table is folded in */
|
colas@0
|
486 |
border-width:1px 0 0 0;
|
colas@0
|
487 |
border-style:solid;
|
colas@0
|
488 |
margin:0;
|
colas@0
|
489 |
}
|
colas@0
|
490 |
.twikiAttachments table,
|
colas@0
|
491 |
table.twikiFormTable {
|
colas@0
|
492 |
margin:5px 0;
|
colas@0
|
493 |
border-collapse:collapse;
|
colas@0
|
494 |
padding:0px;
|
colas@0
|
495 |
border-spacing:0px;
|
colas@0
|
496 |
empty-cells:show;
|
colas@0
|
497 |
border-style:solid;
|
colas@0
|
498 |
border-width:1px;
|
colas@0
|
499 |
}
|
colas@0
|
500 |
.twikiAttachments table {
|
colas@0
|
501 |
line-height:1.5em; /*S1*/
|
colas@0
|
502 |
width:auto;
|
colas@0
|
503 |
voice-family:"\"}\""; /* hide the following for Explorer 5.x */
|
colas@0
|
504 |
voice-family:inherit;
|
colas@0
|
505 |
width:100%;
|
colas@0
|
506 |
}
|
colas@0
|
507 |
.twikiAttachments th {
|
colas@0
|
508 |
border-style:none none solid solid;
|
colas@0
|
509 |
border-width:1px;
|
colas@0
|
510 |
}
|
colas@0
|
511 |
.twikiAttachments th,
|
colas@0
|
512 |
table.twikiFormTable th.twikiFormTableHRow {
|
colas@0
|
513 |
padding:3px 6px;
|
colas@0
|
514 |
height:2.5em;
|
colas@0
|
515 |
vertical-align:middle;
|
colas@0
|
516 |
}
|
colas@0
|
517 |
table.twikiFormTable th.twikiFormTableHRow {
|
colas@0
|
518 |
text-align:center;
|
colas@0
|
519 |
}
|
colas@0
|
520 |
.twikiFormTableFooter {}
|
colas@0
|
521 |
.twikiAttachments td,
|
colas@0
|
522 |
table.twikiFormTable td {
|
colas@0
|
523 |
padding:3px 6px;
|
colas@0
|
524 |
height:1.5em; /*S1*/
|
colas@0
|
525 |
text-align:left;
|
colas@0
|
526 |
vertical-align:top;
|
colas@0
|
527 |
}
|
colas@0
|
528 |
.twikiAttachments th.twikiFirstCol,
|
colas@0
|
529 |
.twikiAttachments td.twikiFirstCol {
|
colas@0
|
530 |
/* make more width for the icon column */
|
colas@0
|
531 |
width:26px;
|
colas@0
|
532 |
text-align:center;
|
colas@0
|
533 |
}
|
colas@0
|
534 |
.twikiAttachments caption {
|
colas@0
|
535 |
display:none;
|
colas@0
|
536 |
}
|
colas@0
|
537 |
table.twikiFormTable th.twikiFormTableHRow a:link,
|
colas@0
|
538 |
table.twikiFormTable th.twikiFormTableHRow a:visited {
|
colas@0
|
539 |
text-decoration:none;
|
colas@0
|
540 |
}
|
colas@0
|
541 |
.twikiAttachments .twistyTrigger .twikiLinkLabel {
|
colas@0
|
542 |
font-size:122%; /* h4 size */
|
colas@0
|
543 |
font-weight:bold;
|
colas@0
|
544 |
}
|
colas@0
|
545 |
.patternAttachmentCount {
|
colas@0
|
546 |
font-weight:normal;
|
colas@0
|
547 |
}
|
colas@0
|
548 |
.twikiFormSteps {
|
colas@0
|
549 |
text-align:left;
|
colas@0
|
550 |
border-width:1px 0 0 0;
|
colas@0
|
551 |
border-style:solid;
|
colas@0
|
552 |
}
|
colas@0
|
553 |
.twikiFormStep {
|
colas@0
|
554 |
line-height:140%;
|
colas@0
|
555 |
padding:1em 40px;
|
colas@0
|
556 |
border-width:0 0 1px 0;
|
colas@0
|
557 |
border-style:solid;
|
colas@0
|
558 |
}
|
colas@0
|
559 |
.twikiFormStep h2,
|
colas@0
|
560 |
.twikiFormStep h3,
|
colas@0
|
561 |
.twikiFormStep h4 {
|
colas@0
|
562 |
border:none;
|
colas@0
|
563 |
margin:0;
|
colas@0
|
564 |
padding:0;
|
colas@0
|
565 |
background:none;
|
colas@0
|
566 |
}
|
colas@0
|
567 |
.twikiFormStep h2 {
|
colas@0
|
568 |
font-size:130%;
|
colas@0
|
569 |
font-weight:bold;
|
colas@0
|
570 |
}
|
colas@0
|
571 |
.twikiFormStep h3 {
|
colas@0
|
572 |
font-size:115%;
|
colas@0
|
573 |
font-weight:bold;
|
colas@0
|
574 |
}
|
colas@0
|
575 |
.twikiFormStep h4 {
|
colas@0
|
576 |
font-size:104%;
|
colas@0
|
577 |
font-weight:bold;
|
colas@0
|
578 |
}
|
colas@0
|
579 |
.twikiFormStep p {
|
colas@0
|
580 |
margin:.35em 0;
|
colas@0
|
581 |
}
|
colas@0
|
582 |
.twikiFormStep blockquote {
|
colas@0
|
583 |
margin-left:1em;
|
colas@0
|
584 |
padding-top:.25em;
|
colas@0
|
585 |
padding-bottom:.25em;
|
colas@0
|
586 |
}
|
colas@0
|
587 |
.twikiActionFormStepSign {
|
colas@0
|
588 |
position:absolute;
|
colas@0
|
589 |
font-size:104%;
|
colas@0
|
590 |
margin-left:-20px; /* half of S5 */
|
colas@0
|
591 |
margin-top:-.15em;
|
colas@0
|
592 |
}
|
colas@0
|
593 |
.twikiToc {
|
colas@0
|
594 |
margin:1em 0;
|
colas@0
|
595 |
padding:.3em 0 .6em 0;
|
colas@0
|
596 |
}
|
colas@0
|
597 |
.twikiToc ul {
|
colas@0
|
598 |
list-style:none;
|
colas@0
|
599 |
padding:0 0 0 .5em;
|
colas@0
|
600 |
margin:0;
|
colas@0
|
601 |
}
|
colas@0
|
602 |
.twikiToc li {
|
colas@0
|
603 |
margin-left:1em;
|
colas@0
|
604 |
padding-left:1em;
|
colas@0
|
605 |
background-repeat:no-repeat;
|
colas@0
|
606 |
background-position:0 .5em;
|
colas@0
|
607 |
}
|
colas@0
|
608 |
.twikiToc .twikiTocTitle {
|
colas@0
|
609 |
margin:0;
|
colas@0
|
610 |
padding:0;
|
colas@0
|
611 |
font-weight:bold;
|
colas@0
|
612 |
}
|
colas@0
|
613 |
|
colas@0
|
614 |
.twikiSmall {
|
colas@0
|
615 |
font-size:86%; /*S3*/
|
colas@0
|
616 |
line-height:125%;
|
colas@0
|
617 |
}
|
colas@0
|
618 |
.twikiSmallish {
|
colas@0
|
619 |
font-size:94%; /*S2*/
|
colas@0
|
620 |
line-height:125%;
|
colas@0
|
621 |
}
|
colas@0
|
622 |
.twikiNew {}
|
colas@0
|
623 |
.twikiSummary {
|
colas@0
|
624 |
font-size:86%; /*S3*/
|
colas@0
|
625 |
line-height:110%;
|
colas@0
|
626 |
}
|
colas@0
|
627 |
.twikiEmulatedLink {
|
colas@0
|
628 |
text-decoration:underline;
|
colas@0
|
629 |
}
|
colas@0
|
630 |
.twikiPageForm table {
|
colas@0
|
631 |
border-width:1px;
|
colas@0
|
632 |
border-style:solid;
|
colas@0
|
633 |
}
|
colas@0
|
634 |
.twikiPageForm table {
|
colas@0
|
635 |
width:100%;
|
colas@0
|
636 |
}
|
colas@0
|
637 |
.twikiPageForm th,
|
colas@0
|
638 |
.twikiPageForm td {
|
colas@0
|
639 |
border:0;
|
colas@0
|
640 |
padding:.5em 1em;
|
colas@0
|
641 |
}
|
colas@0
|
642 |
.twikiPageForm td {}
|
colas@0
|
643 |
.twikiPageForm td.first {
|
colas@0
|
644 |
padding-top:1em;
|
colas@0
|
645 |
}
|
colas@0
|
646 |
.twikiBroadcastMessage,
|
colas@0
|
647 |
.twikiNotification {
|
colas@0
|
648 |
padding:.5em 20px; /*S5*/
|
colas@0
|
649 |
}
|
colas@0
|
650 |
.twikiNotification {
|
colas@0
|
651 |
margin:1em 0;
|
colas@0
|
652 |
}
|
colas@0
|
653 |
.twikiBroadcastMessage {
|
colas@0
|
654 |
margin:0 0 1.25em 0;
|
colas@0
|
655 |
border-width:1px;
|
colas@0
|
656 |
border-style:solid none;
|
colas@0
|
657 |
}
|
colas@0
|
658 |
.twikiHelp {
|
colas@0
|
659 |
height:1%; /* for IE */
|
colas@0
|
660 |
padding:1em;
|
colas@0
|
661 |
margin:0 0 -1px 0;
|
colas@0
|
662 |
}
|
colas@0
|
663 |
.twikiHelp ul {
|
colas@0
|
664 |
margin:0;
|
colas@0
|
665 |
padding-left:20px;
|
colas@0
|
666 |
}
|
colas@0
|
667 |
.twikiAccessKey {
|
colas@0
|
668 |
text-decoration:none;
|
colas@0
|
669 |
border-width:0 0 1px 0;
|
colas@0
|
670 |
border-style:solid;
|
colas@0
|
671 |
}
|
colas@0
|
672 |
.twikiWebIndent {
|
colas@0
|
673 |
margin:0 0 0 1em;
|
colas@0
|
674 |
}
|
colas@0
|
675 |
a.twikiLinkInHeaderRight {
|
colas@0
|
676 |
float:right;
|
colas@0
|
677 |
display:block;
|
colas@0
|
678 |
margin:0 0 0 5px;
|
colas@0
|
679 |
}
|
colas@0
|
680 |
.twikiLinkLabel {}
|
colas@0
|
681 |
.twikiImage img {
|
colas@0
|
682 |
padding:3px;
|
colas@0
|
683 |
border-width:1px;
|
colas@0
|
684 |
border-style:solid;
|
colas@0
|
685 |
}
|
colas@0
|
686 |
.twikiImage a:link,
|
colas@0
|
687 |
.twikiImage a:visited {
|
colas@0
|
688 |
background:none;
|
colas@0
|
689 |
}
|
colas@0
|
690 |
#twikiLogo img {
|
colas@0
|
691 |
margin:0;
|
colas@0
|
692 |
padding:0;
|
colas@0
|
693 |
}
|
colas@0
|
694 |
.twikiNoBreak {
|
colas@0
|
695 |
white-space:nowrap;
|
colas@0
|
696 |
}
|
colas@0
|
697 |
|
colas@0
|
698 |
/* -----------------------------------------------------------
|
colas@0
|
699 |
Pattern skin specific elements
|
colas@0
|
700 |
----------------------------------------------------------- */
|
colas@0
|
701 |
|
colas@0
|
702 |
/* LAYOUT ELEMENTS */
|
colas@0
|
703 |
/* for specific layout sub-elements see further down */
|
colas@0
|
704 |
|
colas@0
|
705 |
#patternPage {
|
colas@0
|
706 |
font-family:arial, verdana, sans-serif;
|
colas@0
|
707 |
line-height:1.5em; /*S1*/
|
colas@0
|
708 |
/* change font size here */
|
colas@0
|
709 |
font-size:105%;
|
colas@0
|
710 |
}
|
colas@0
|
711 |
#patternTopBar {
|
colas@0
|
712 |
border-width:1px;
|
colas@0
|
713 |
border-style:none none solid none;
|
colas@0
|
714 |
}
|
colas@0
|
715 |
#patternBottomBar {
|
colas@0
|
716 |
border-width:1px 0 0 0;
|
colas@0
|
717 |
border-style:solid;
|
colas@0
|
718 |
}
|
colas@0
|
719 |
#patternBottomBarContents {}
|
colas@0
|
720 |
#patternWebBottomBar {
|
colas@0
|
721 |
font-size:94%; /*S2*/
|
colas@0
|
722 |
line-height:125%;
|
colas@0
|
723 |
text-align:left;
|
colas@0
|
724 |
}
|
colas@0
|
725 |
#patternLeftBarContents {
|
colas@0
|
726 |
margin:0 0 1em 0;
|
colas@0
|
727 |
padding-right:.5em;
|
colas@0
|
728 |
padding-left:1em;
|
colas@0
|
729 |
/* bottom padding is set in colors.css for the reflection image */
|
colas@0
|
730 |
}
|
colas@0
|
731 |
|
colas@0
|
732 |
/* top paddings */
|
colas@0
|
733 |
#patternMainContents,
|
colas@0
|
734 |
#patternBottomBarContents,
|
colas@0
|
735 |
#patternLeftBarContents {
|
colas@0
|
736 |
padding-top:1em;
|
colas@0
|
737 |
}
|
colas@0
|
738 |
.patternNoViewPage #patternMainContents {
|
colas@0
|
739 |
padding-top:1.5em;
|
colas@0
|
740 |
}
|
colas@0
|
741 |
|
colas@0
|
742 |
/* right paddings */
|
colas@0
|
743 |
#patternMainContents,
|
colas@0
|
744 |
#patternTopBarContents,
|
colas@0
|
745 |
#patternBottomBarContents {
|
colas@0
|
746 |
padding-right:2.5em;
|
colas@0
|
747 |
}
|
colas@0
|
748 |
|
colas@0
|
749 |
|
colas@0
|
750 |
/* left paddings */
|
colas@0
|
751 |
#patternTopBarContents {
|
colas@0
|
752 |
padding-left:1em; /*S6*/
|
colas@0
|
753 |
}
|
colas@0
|
754 |
#patternMainContents {
|
colas@0
|
755 |
padding-left:2.5em;
|
colas@0
|
756 |
}
|
colas@0
|
757 |
#patternBottomBarContents {
|
colas@0
|
758 |
padding-left:2.5em;
|
colas@0
|
759 |
}
|
colas@0
|
760 |
|
colas@0
|
761 |
/* bottom paddings */
|
colas@0
|
762 |
#patternMainContents,
|
colas@0
|
763 |
#patternBottomBarContents {
|
colas@0
|
764 |
padding-bottom:2em;
|
colas@0
|
765 |
}
|
colas@0
|
766 |
|
colas@0
|
767 |
.patternTopic {
|
colas@0
|
768 |
margin:.5em 0 2em 0;
|
colas@0
|
769 |
}
|
colas@0
|
770 |
.patternViewPage #patternBottomBarContents {
|
colas@0
|
771 |
padding-left:1em; /*S6*/
|
colas@0
|
772 |
}
|
colas@0
|
773 |
.patternNoViewPage #patternMainContents,
|
colas@0
|
774 |
.patternNoViewPage #patternBottomBarContents {
|
colas@0
|
775 |
margin-left:4%;
|
colas@0
|
776 |
margin-right:4%;
|
colas@0
|
777 |
}
|
colas@0
|
778 |
.patternEditPage #patternMainContents,
|
colas@0
|
779 |
.patternEditPage #patternBottomBarContents {
|
colas@0
|
780 |
margin-left:2%;
|
colas@0
|
781 |
margin-right:2%;
|
colas@0
|
782 |
}
|
colas@0
|
783 |
|
colas@0
|
784 |
#patternLeftBarContents {}
|
colas@0
|
785 |
#patternLeftBarContents img {
|
colas@0
|
786 |
margin:0 3px 0 0;
|
colas@0
|
787 |
vertical-align:text-bottom;
|
colas@0
|
788 |
}
|
colas@0
|
789 |
#patternLeftBarContents a:link,
|
colas@0
|
790 |
#patternLeftBarContents a:visited {
|
colas@0
|
791 |
text-decoration:none;
|
colas@0
|
792 |
}
|
colas@0
|
793 |
#patternLeftBarContents ul {
|
colas@0
|
794 |
padding:0;
|
colas@0
|
795 |
margin:0;
|
colas@0
|
796 |
list-style:none;
|
colas@0
|
797 |
}
|
colas@0
|
798 |
#patternLeftBarContents h2 {
|
colas@0
|
799 |
border:none;
|
colas@0
|
800 |
background-color:transparent;
|
colas@0
|
801 |
}
|
colas@0
|
802 |
#patternLeftBarContents .patternLeftBarPersonal,
|
colas@0
|
803 |
#patternLeftBarContents .patternWebIndicator {
|
colas@0
|
804 |
padding:0 1em .75em 1em;
|
colas@0
|
805 |
margin:0 -1em .75em -1em; /*S6*/
|
colas@0
|
806 |
}
|
colas@0
|
807 |
.patternWebIndicator a {
|
colas@0
|
808 |
font-size:1.1em;
|
colas@0
|
809 |
font-weight:bold;
|
colas@0
|
810 |
}
|
colas@0
|
811 |
|
colas@0
|
812 |
#patternLeftBarContents li {
|
colas@0
|
813 |
overflow:hidden;
|
colas@0
|
814 |
}
|
colas@0
|
815 |
html>body #patternLeftBarContents li { /* Mozilla */
|
colas@0
|
816 |
overflow:visible;
|
colas@0
|
817 |
}
|
colas@0
|
818 |
|
colas@0
|
819 |
/* form options in top bar */
|
colas@0
|
820 |
.patternMetaMenu input,
|
colas@0
|
821 |
.patternMetaMenu select,
|
colas@0
|
822 |
.patternMetaMenu select option {
|
colas@0
|
823 |
margin:0;
|
colas@0
|
824 |
}
|
colas@0
|
825 |
.patternMetaMenu select option {
|
colas@0
|
826 |
padding:1px 0 0 0;
|
colas@0
|
827 |
}
|
colas@0
|
828 |
.patternMetaMenu ul {
|
colas@0
|
829 |
padding:0;
|
colas@0
|
830 |
margin:0;
|
colas@0
|
831 |
list-style:none;
|
colas@0
|
832 |
}
|
colas@0
|
833 |
.patternMetaMenu ul li {
|
colas@0
|
834 |
padding:0;
|
colas@0
|
835 |
display:inline;
|
colas@0
|
836 |
}
|
colas@0
|
837 |
.patternMetaMenu ul li .twikiInputField,
|
colas@0
|
838 |
.patternMetaMenu ul li .twikiSelect {
|
colas@0
|
839 |
margin:0 0 0 .5em;
|
colas@0
|
840 |
}
|
colas@0
|
841 |
|
colas@0
|
842 |
.patternHomePath a:link,
|
colas@0
|
843 |
.patternHomePath a:visited {
|
colas@0
|
844 |
text-decoration:none;
|
colas@0
|
845 |
border-style:none none solid none;
|
colas@0
|
846 |
border-width:1px;
|
colas@0
|
847 |
}
|
colas@0
|
848 |
|
colas@0
|
849 |
.patternToolBar {
|
colas@0
|
850 |
}
|
colas@0
|
851 |
.patternToolBar .patternButton {
|
colas@0
|
852 |
float:left;
|
colas@0
|
853 |
}
|
colas@0
|
854 |
.patternToolBar .patternButton s,
|
colas@0
|
855 |
.patternToolBar .patternButton strike,
|
colas@0
|
856 |
.patternToolBar .patternButton a:link,
|
colas@0
|
857 |
.patternToolBar .patternButton a:visited {
|
colas@0
|
858 |
display:block;
|
colas@0
|
859 |
border-width:1px;
|
colas@0
|
860 |
border-style:solid;
|
colas@0
|
861 |
padding:.1em .35em;
|
colas@0
|
862 |
margin:-.2em 0 .2em .25em;
|
colas@0
|
863 |
font-weight:bold;
|
colas@0
|
864 |
}
|
colas@0
|
865 |
.patternToolBar .patternButton a:link,
|
colas@0
|
866 |
.patternToolBar .patternButton a:visited {
|
colas@0
|
867 |
text-decoration:none;
|
colas@0
|
868 |
outline:none;
|
colas@0
|
869 |
}
|
colas@0
|
870 |
.patternToolBar .patternButton a:hover,
|
colas@0
|
871 |
.patternToolBar .patternButton a:hover {
|
colas@0
|
872 |
border-width:1px;
|
colas@0
|
873 |
border-style:solid;
|
colas@0
|
874 |
}
|
colas@0
|
875 |
.patternToolBar .patternButton a:active {
|
colas@0
|
876 |
outline:none;
|
colas@0
|
877 |
}
|
colas@0
|
878 |
.patternToolBar a:hover .twikiAccessKey {
|
colas@0
|
879 |
border-width:0 0 1px 0;
|
colas@0
|
880 |
border-style:solid;
|
colas@0
|
881 |
}
|
colas@0
|
882 |
.patternToolBar .patternButton s,
|
colas@0
|
883 |
.patternToolBar .patternButton strike {
|
colas@0
|
884 |
text-decoration:none;
|
colas@0
|
885 |
}
|
colas@0
|
886 |
|
colas@0
|
887 |
.patternTopicActions {
|
colas@0
|
888 |
border-width:0 0 1px 0;
|
colas@0
|
889 |
border-style:solid;
|
colas@0
|
890 |
}
|
colas@0
|
891 |
.patternTopicAction {
|
colas@0
|
892 |
line-height:1.5em;
|
colas@0
|
893 |
padding:.4em 20px; /*S5*/
|
colas@0
|
894 |
border-width:1px 0 0 0;
|
colas@0
|
895 |
border-style:solid;
|
colas@0
|
896 |
height:1%; /* for IE */
|
colas@0
|
897 |
}
|
colas@0
|
898 |
.patternOopsPage .patternTopicActions,
|
colas@0
|
899 |
.patternEditPage .patternTopicActions {
|
colas@0
|
900 |
margin:1em 0 0 0;
|
colas@0
|
901 |
}
|
colas@0
|
902 |
.patternAttachPage .patternTopicAction,
|
colas@0
|
903 |
.patternRenamePage .patternTopicAction {
|
colas@0
|
904 |
padding-left:40px;
|
colas@0
|
905 |
}
|
colas@0
|
906 |
.patternActionButtons a:link,
|
colas@0
|
907 |
.patternActionButtons a:visited {
|
colas@0
|
908 |
padding:1px 1px 2px 1px;
|
colas@0
|
909 |
}
|
colas@0
|
910 |
.patternTopicAction .patternActionButtons a:link,
|
colas@0
|
911 |
.patternTopicAction .patternActionButtons a:visited {
|
colas@0
|
912 |
text-decoration:none;
|
colas@0
|
913 |
}
|
colas@0
|
914 |
.patternTopicAction .patternActionButtons .patternButton s,
|
colas@0
|
915 |
.patternTopicAction .patternActionButtons .patternButton strike {
|
colas@0
|
916 |
text-decoration:none;
|
colas@0
|
917 |
}
|
colas@0
|
918 |
.patternTopicAction .patternSaveOptions {
|
colas@0
|
919 |
margin-top:.5em;
|
colas@0
|
920 |
}
|
colas@0
|
921 |
.patternTopicAction .patternSaveOptions .patternSaveOptionsContents {
|
colas@0
|
922 |
padding:.2em 0;
|
colas@0
|
923 |
}
|
colas@0
|
924 |
.patternNoViewPage .patternTopicAction {
|
colas@0
|
925 |
margin-top:-1px;
|
colas@0
|
926 |
}
|
colas@0
|
927 |
.patternInfo {
|
colas@0
|
928 |
margin:1.5em 0 0 0;
|
colas@0
|
929 |
}
|
colas@0
|
930 |
.patternHomePath .patternRevInfo {
|
colas@0
|
931 |
font-size:94%;
|
colas@0
|
932 |
}
|
colas@0
|
933 |
.patternMoved {
|
colas@0
|
934 |
margin:1em 0;
|
colas@0
|
935 |
}
|
colas@0
|
936 |
.patternMoved i,
|
colas@0
|
937 |
.patternMoved em {
|
colas@0
|
938 |
font-style:normal;
|
colas@0
|
939 |
}
|
colas@0
|
940 |
.patternTopicFooter {
|
colas@0
|
941 |
margin:1em 0 0 0;
|
colas@0
|
942 |
}
|
colas@0
|
943 |
|
colas@0
|
944 |
/* WebSearch, WebSearchAdvanced */
|
colas@0
|
945 |
#twikiSearchTable {
|
colas@0
|
946 |
background:none;
|
colas@0
|
947 |
border-bottom:0;
|
colas@0
|
948 |
}
|
colas@0
|
949 |
#twikiSearchTable th,
|
colas@0
|
950 |
#twikiSearchTable td {
|
colas@0
|
951 |
padding:1em;
|
colas@0
|
952 |
border-width:0 0 1px 0;
|
colas@0
|
953 |
border-style:solid;
|
colas@0
|
954 |
}
|
colas@0
|
955 |
#twikiSearchTable th {
|
colas@0
|
956 |
width:20%;
|
colas@0
|
957 |
text-align:right;
|
colas@0
|
958 |
}
|
colas@0
|
959 |
#twikiSearchTable td {
|
colas@0
|
960 |
width:80%;
|
colas@0
|
961 |
}
|
colas@0
|
962 |
|
colas@0
|
963 |
/* -----------------------------------------------------------
|
colas@0
|
964 |
Search results
|
colas@0
|
965 |
styles and overridden styles used in search.pattern.tmpl
|
colas@0
|
966 |
----------------------------------------------------------- */
|
colas@0
|
967 |
|
colas@0
|
968 |
.patternSearchResults {
|
colas@0
|
969 |
/* no longer used in search.pattern.tmpl, but remains in rename templates */
|
colas@0
|
970 |
margin:0 0 1em 0;
|
colas@0
|
971 |
}
|
colas@0
|
972 |
.patternSearchResults blockquote {
|
colas@0
|
973 |
margin:1em 0 1em 5em;
|
colas@0
|
974 |
}
|
colas@0
|
975 |
h3.patternSearchResultsHeader,
|
colas@0
|
976 |
h4.patternSearchResultsHeader {
|
colas@0
|
977 |
display:block;
|
colas@0
|
978 |
border-width:0 0 1px 0;
|
colas@0
|
979 |
border-style:solid;
|
colas@0
|
980 |
height:1%; /* or WIN/IE wont draw the backgound */
|
colas@0
|
981 |
font-weight:bold;
|
colas@0
|
982 |
}
|
colas@0
|
983 |
.patternSearchResults h3 {
|
colas@0
|
984 |
font-size:115%; /* same as twikiFormStep */
|
colas@0
|
985 |
margin:0;
|
colas@0
|
986 |
padding:.5em 40px; /*S5*/
|
colas@0
|
987 |
font-weight:bold;
|
colas@0
|
988 |
}
|
colas@0
|
989 |
h4.patternSearchResultsHeader {
|
colas@0
|
990 |
font-size:100%;
|
colas@0
|
991 |
padding-top:.3em;
|
colas@0
|
992 |
padding-bottom:.3em;
|
colas@0
|
993 |
font-weight:normal;
|
colas@0
|
994 |
}
|
colas@0
|
995 |
.patternSearchResult .twikiTopRow {
|
colas@0
|
996 |
padding-top:.2em;
|
colas@0
|
997 |
margin-top:.1em;
|
colas@0
|
998 |
}
|
colas@0
|
999 |
.patternSearchResult .twikiBottomRow {
|
colas@0
|
1000 |
margin-bottom:.1em;
|
colas@0
|
1001 |
padding-bottom:.25em;
|
colas@0
|
1002 |
border-width:0 0 1px 0;
|
colas@0
|
1003 |
border-style:solid;
|
colas@0
|
1004 |
}
|
colas@0
|
1005 |
.patternSearchResult .twikiAlert {
|
colas@0
|
1006 |
font-weight:bold;
|
colas@0
|
1007 |
}
|
colas@0
|
1008 |
.patternSearchResult .twikiSummary .twikiAlert {
|
colas@0
|
1009 |
font-weight:normal;
|
colas@0
|
1010 |
}
|
colas@0
|
1011 |
.patternSearchResult .twikiNew {
|
colas@0
|
1012 |
border-width:1px;
|
colas@0
|
1013 |
border-style:solid;
|
colas@0
|
1014 |
font-size:86%; /*S3*/
|
colas@0
|
1015 |
padding:0 1px;
|
colas@0
|
1016 |
font-weight:bold;
|
colas@0
|
1017 |
}
|
colas@0
|
1018 |
.patternSearchResults .twikiHelp {
|
colas@0
|
1019 |
display:block;
|
colas@0
|
1020 |
width:auto;
|
colas@0
|
1021 |
padding:.1em 5px;
|
colas@0
|
1022 |
margin:1em -5px .35em -5px;
|
colas@0
|
1023 |
}
|
colas@0
|
1024 |
.patternSearchResult .twikiSRAuthor {
|
colas@0
|
1025 |
width:15%;
|
colas@0
|
1026 |
text-align:left;
|
colas@0
|
1027 |
}
|
colas@0
|
1028 |
.patternSearchResult .twikiSRRev {
|
colas@0
|
1029 |
width:30%;
|
colas@0
|
1030 |
text-align:left;
|
colas@0
|
1031 |
}
|
colas@0
|
1032 |
.patternSearchResultCount {
|
colas@0
|
1033 |
margin:1em 0 3em 0;
|
colas@0
|
1034 |
}
|
colas@0
|
1035 |
.patternSearched {
|
colas@0
|
1036 |
}
|
colas@0
|
1037 |
.patternSaveHelp {
|
colas@0
|
1038 |
line-height:1.5em;
|
colas@0
|
1039 |
padding:.5em 20px; /*S5*/
|
colas@0
|
1040 |
}
|
colas@0
|
1041 |
|
colas@0
|
1042 |
/* Search results in book view format */
|
colas@0
|
1043 |
|
colas@0
|
1044 |
.patternBookView {
|
colas@0
|
1045 |
border-width:0 0 2px 2px;
|
colas@0
|
1046 |
border-style:solid;
|
colas@0
|
1047 |
/* border color in cssdynamic.pattern.tmpl */
|
colas@0
|
1048 |
margin:.5em 0 1.5em -5px;
|
colas@0
|
1049 |
padding:0 0 0 5px;
|
colas@0
|
1050 |
}
|
colas@0
|
1051 |
.patternBookView .twikiTopRow {
|
colas@0
|
1052 |
padding:.25em 5px .15em 5px; /*S4*/
|
colas@0
|
1053 |
margin:1em -5px .15em -5px; /*S4*/
|
colas@0
|
1054 |
}
|
colas@0
|
1055 |
.patternBookView .twikiBottomRow {
|
colas@0
|
1056 |
font-size:100%;
|
colas@0
|
1057 |
padding:1em 0 1em 0;
|
colas@0
|
1058 |
width:auto;
|
colas@0
|
1059 |
border:none;
|
colas@0
|
1060 |
}
|
colas@0
|
1061 |
|
colas@0
|
1062 |
/* pages that are not view */
|
colas@0
|
1063 |
|
colas@0
|
1064 |
/* edit.pattern.tmpl */
|
colas@0
|
1065 |
|
colas@0
|
1066 |
.patternEditPage .twikiForm {
|
colas@0
|
1067 |
margin:1em 0 0 0;
|
colas@0
|
1068 |
}
|
colas@0
|
1069 |
.patternEditPage .twikiForm h1,
|
colas@0
|
1070 |
.patternEditPage .twikiForm h2,
|
colas@0
|
1071 |
.patternEditPage .twikiForm h3 {
|
colas@0
|
1072 |
/* same as twikiFormStep */
|
colas@0
|
1073 |
font-size:120%;
|
colas@0
|
1074 |
font-weight:bold;
|
colas@0
|
1075 |
}
|
colas@0
|
1076 |
.twikiEditboxStyleMono {
|
colas@0
|
1077 |
font-family:"Courier New", courier, monaco, monospace;
|
colas@0
|
1078 |
}
|
colas@0
|
1079 |
.twikiEditboxStyleProportional {
|
colas@0
|
1080 |
font-family:arial, verdana, sans-serif;
|
colas@0
|
1081 |
}
|
colas@0
|
1082 |
.twikiChangeFormButtonHolder {
|
colas@0
|
1083 |
float:right;
|
colas@0
|
1084 |
margin:.5em 0 -.5em 0;
|
colas@0
|
1085 |
}
|
colas@0
|
1086 |
.twikiFormHolder { /* constrains the textarea */
|
colas@0
|
1087 |
width:100%;
|
colas@0
|
1088 |
}
|
colas@0
|
1089 |
.patternSigLine {
|
colas@0
|
1090 |
padding:.25em 20px;
|
colas@0
|
1091 |
border-style:none none solid none;
|
colas@0
|
1092 |
border-width:1px;
|
colas@0
|
1093 |
height:1%; /* for IE */
|
colas@0
|
1094 |
}
|
colas@0
|
1095 |
.patternOopsPage .patternTopicActions,
|
colas@0
|
1096 |
.patternEditPage .patternTopicActions {
|
colas@0
|
1097 |
margin:1em 0 0 0;
|
colas@0
|
1098 |
}
|
colas@0
|
1099 |
.patternTextareaButton {
|
colas@0
|
1100 |
margin:0 0 0 1px;
|
colas@0
|
1101 |
display:block;
|
colas@0
|
1102 |
cursor:pointer;
|
colas@0
|
1103 |
border-style:solid;
|
colas@0
|
1104 |
border-width:1px;
|
colas@0
|
1105 |
}
|
colas@0
|
1106 |
.patternButtonFontSelector {
|
colas@0
|
1107 |
margin:0 8px 0 0;
|
colas@0
|
1108 |
}
|
colas@0
|
1109 |
|
colas@0
|
1110 |
/* preview.pattern.tmpl */
|
colas@0
|
1111 |
|
colas@0
|
1112 |
.twikiPreviewArea {
|
colas@0
|
1113 |
border-width:1px;
|
colas@0
|
1114 |
border-style:solid;
|
colas@0
|
1115 |
margin:0 0 2em 0;
|
colas@0
|
1116 |
padding:1em;
|
colas@0
|
1117 |
height:1%; /* for IE */
|
colas@0
|
1118 |
}
|
colas@0
|
1119 |
|
colas@0
|
1120 |
/* attach.pattern.tmpl */
|
colas@0
|
1121 |
|
colas@0
|
1122 |
.patternAttachPage .twikiAttachments table {
|
colas@0
|
1123 |
width:auto;
|
colas@0
|
1124 |
}
|
colas@0
|
1125 |
.patternAttachPage .twikiAttachments {
|
colas@0
|
1126 |
margin-top:0;
|
colas@0
|
1127 |
}
|
colas@0
|
1128 |
.patternMoveAttachment {
|
colas@0
|
1129 |
margin:.5em 0 0 0;
|
colas@0
|
1130 |
text-align:right;
|
colas@0
|
1131 |
}
|
colas@0
|
1132 |
|
colas@0
|
1133 |
/* rdiff.pattern.tmpl */
|
colas@0
|
1134 |
|
colas@0
|
1135 |
.patternDiff {
|
colas@0
|
1136 |
/* same as patternBookView */
|
colas@0
|
1137 |
border-width:0 0 2px 2px;
|
colas@0
|
1138 |
border-style:solid;
|
colas@0
|
1139 |
margin:.5em 0 1.5em -5px;
|
colas@0
|
1140 |
padding:0 0 0 5px;
|
colas@0
|
1141 |
}
|
colas@0
|
1142 |
.patternDiff h4.patternSearchResultsHeader {
|
colas@0
|
1143 |
padding:.5em;
|
colas@0
|
1144 |
}
|
colas@0
|
1145 |
.patternDiffPage .patternRevInfo ul {
|
colas@0
|
1146 |
padding:0;
|
colas@0
|
1147 |
margin:2em 0 0 0;
|
colas@0
|
1148 |
list-style:none;
|
colas@0
|
1149 |
}
|
colas@0
|
1150 |
.patternDiffPage .twikiDiffTable {
|
colas@0
|
1151 |
margin:2em 0;
|
colas@0
|
1152 |
}
|
colas@0
|
1153 |
tr.twikiDiffDebug td {
|
colas@0
|
1154 |
border-width:1px;
|
colas@0
|
1155 |
border-style:solid;
|
colas@0
|
1156 |
}
|
colas@0
|
1157 |
.patternDiffPage td.twikiDiffDebugLeft {
|
colas@0
|
1158 |
border-bottom:none;
|
colas@0
|
1159 |
}
|
colas@0
|
1160 |
.patternDiffPage .twikiDiffTable th {
|
colas@0
|
1161 |
padding:.25em .5em;
|
colas@0
|
1162 |
}
|
colas@0
|
1163 |
.patternDiffPage .twikiDiffTable td {
|
colas@0
|
1164 |
padding:.25em;
|
colas@0
|
1165 |
}
|
colas@0
|
1166 |
.twikiDiffLineNumberHeader {
|
colas@0
|
1167 |
padding:.3em 0;
|
colas@0
|
1168 |
}
|
colas@0
|
1169 |
|
colas@0
|
1170 |
|
colas@0
|
1171 |
/* PatternSkin colors */
|
colas@0
|
1172 |
/* Generated by AttachContentPlugin from TWiki.PatternSkinColorSettings */
|
colas@0
|
1173 |
|
colas@0
|
1174 |
/* LAYOUT ELEMENTS */
|
colas@0
|
1175 |
|
colas@0
|
1176 |
#patternTopBar {
|
colas@0
|
1177 |
border-color:#e7e2da;
|
colas@0
|
1178 |
background-color:#fefcf7;
|
colas@0
|
1179 |
}
|
colas@0
|
1180 |
#patternMain { /* don't set a background here; use patternOuter */ }
|
colas@0
|
1181 |
#patternOuter {
|
colas@0
|
1182 |
background-color:#fff; /* Sets background of center col */
|
colas@0
|
1183 |
border-color:#cfcfcf;
|
colas@0
|
1184 |
}
|
colas@0
|
1185 |
#patternLeftBar,
|
colas@0
|
1186 |
#patternWrapper {
|
colas@0
|
1187 |
background-color:#f5f9fb;
|
colas@0
|
1188 |
}
|
colas@0
|
1189 |
#patternBottomBar {
|
colas@0
|
1190 |
border-color:#e7e2da;
|
colas@0
|
1191 |
}
|
colas@0
|
1192 |
#patternBottomBarContents,
|
colas@0
|
1193 |
#patternBottomBarContents a:link,
|
colas@0
|
1194 |
#patternBottomBarContents a:visited {
|
colas@0
|
1195 |
color:#777;
|
colas@0
|
1196 |
}
|
colas@0
|
1197 |
#patternBottomBarContents a:hover {
|
colas@0
|
1198 |
color:#fff;
|
colas@0
|
1199 |
}
|
colas@0
|
1200 |
|
colas@0
|
1201 |
/* GENERAL HTML ELEMENTS */
|
colas@0
|
1202 |
|
colas@0
|
1203 |
html body {
|
colas@0
|
1204 |
background-color:#fff;
|
colas@0
|
1205 |
color:#000;
|
colas@0
|
1206 |
}
|
colas@0
|
1207 |
/* be kind to netscape 4 that doesn't understand inheritance */
|
colas@0
|
1208 |
body, p, li, ul, ol, dl, dt, dd, acronym, h1, h2, h3, h4, h5, h6 {
|
colas@0
|
1209 |
background-color:transparent;
|
colas@0
|
1210 |
}
|
colas@0
|
1211 |
hr {
|
colas@0
|
1212 |
color:#e7e2da;
|
colas@0
|
1213 |
background-color:#e7e2da;
|
colas@0
|
1214 |
}
|
colas@0
|
1215 |
pre, code, tt {
|
colas@0
|
1216 |
color:#7A4707;
|
colas@0
|
1217 |
}
|
colas@0
|
1218 |
blockquote {
|
colas@0
|
1219 |
background-color:#f1f6fa;
|
colas@0
|
1220 |
}
|
colas@0
|
1221 |
.patternRenamePage blockquote,
|
colas@0
|
1222 |
.patternPrintPage blockquote {
|
colas@0
|
1223 |
border-color:#ddd;
|
colas@0
|
1224 |
}
|
colas@0
|
1225 |
blockquote h2 {
|
colas@0
|
1226 |
background:none;
|
colas@0
|
1227 |
}
|
colas@0
|
1228 |
h1, h2, h3, h4, h5, h6 {
|
colas@0
|
1229 |
color:#800;
|
colas@0
|
1230 |
}
|
colas@0
|
1231 |
h2 {
|
colas@0
|
1232 |
background-color:#fdfaf2;
|
colas@0
|
1233 |
border-color:#e7e2da;
|
colas@0
|
1234 |
}
|
colas@0
|
1235 |
h3, h4, h5, h6 {
|
colas@0
|
1236 |
border-color:#e7e2da;
|
colas@0
|
1237 |
}
|
colas@0
|
1238 |
/* to override old Render.pm coded font color style */
|
colas@0
|
1239 |
.twikiNewLink font {
|
colas@0
|
1240 |
color:inherit;
|
colas@0
|
1241 |
}
|
colas@0
|
1242 |
.twikiNewLink a:link sup,
|
colas@0
|
1243 |
.twikiNewLink a:visited sup {
|
colas@0
|
1244 |
color:#777;
|
colas@0
|
1245 |
border-color:#ddd;
|
colas@0
|
1246 |
}
|
colas@0
|
1247 |
.twikiNewLink a:hover sup {
|
colas@0
|
1248 |
background-color:#d6000f;
|
colas@0
|
1249 |
color:#fff;
|
colas@0
|
1250 |
border-color:#d6000f;
|
colas@0
|
1251 |
}
|
colas@0
|
1252 |
.twikiNewLink {
|
colas@0
|
1253 |
border-color:#ddd;
|
colas@0
|
1254 |
}
|
colas@0
|
1255 |
:link:focus,
|
colas@0
|
1256 |
:visited:focus,
|
colas@0
|
1257 |
:link,
|
colas@0
|
1258 |
:visited,
|
colas@0
|
1259 |
:link:active,
|
colas@0
|
1260 |
:visited:active {
|
colas@0
|
1261 |
color:#4571d0;
|
colas@0
|
1262 |
background-color:transparent;
|
colas@0
|
1263 |
}
|
colas@0
|
1264 |
:link:hover,
|
colas@0
|
1265 |
:visited:hover {
|
colas@0
|
1266 |
color:#fff;
|
colas@0
|
1267 |
background-color:#d6000f;
|
colas@0
|
1268 |
background-image:none;
|
colas@0
|
1269 |
}
|
colas@0
|
1270 |
:link:hover img,
|
colas@0
|
1271 |
:visited:hover img {
|
colas@0
|
1272 |
background-color:transparent;
|
colas@0
|
1273 |
}
|
colas@0
|
1274 |
.patternTopic a:visited {
|
colas@0
|
1275 |
color:#666;
|
colas@0
|
1276 |
}
|
colas@0
|
1277 |
.patternTopic a:hover {
|
colas@0
|
1278 |
color:#fff;
|
colas@0
|
1279 |
}
|
colas@0
|
1280 |
#patternMainContents h1 a:link, #patternMainContents h1 a:visited,
|
colas@0
|
1281 |
#patternMainContents h2 a:link, #patternMainContents h2 a:visited,
|
colas@0
|
1282 |
#patternMainContents h3 a:link, #patternMainContents h3 a:visited,
|
colas@0
|
1283 |
#patternMainContents h4 a:link, #patternMainContents h4 a:visited,
|
colas@0
|
1284 |
#patternMainContents h5 a:link, #patternMainContents h5 a:visited,
|
colas@0
|
1285 |
#patternMainContents h6 a:link, #patternMainContents h6 a:visited {
|
colas@0
|
1286 |
color:#800;
|
colas@0
|
1287 |
}
|
colas@0
|
1288 |
#patternMainContents h1 a:hover,
|
colas@0
|
1289 |
#patternMainContents h2 a:hover,
|
colas@0
|
1290 |
#patternMainContents h3 a:hover,
|
colas@0
|
1291 |
#patternMainContents h4 a:hover,
|
colas@0
|
1292 |
#patternMainContents h5 a:hover,
|
colas@0
|
1293 |
#patternMainContents h6 a:hover {
|
colas@0
|
1294 |
color:#fff;
|
colas@0
|
1295 |
}
|
colas@0
|
1296 |
.patternTopic .twikiUnvisited a:visited {
|
colas@0
|
1297 |
color:#4571d0;
|
colas@0
|
1298 |
}
|
colas@0
|
1299 |
.patternTopic .twikiUnvisited a:hover {
|
colas@0
|
1300 |
color:#fff;
|
colas@0
|
1301 |
}
|
colas@0
|
1302 |
|
colas@0
|
1303 |
|
colas@0
|
1304 |
|
colas@0
|
1305 |
/* -----------------------------------------------------------
|
colas@0
|
1306 |
Plugin elements
|
colas@0
|
1307 |
----------------------------------------------------------- */
|
colas@0
|
1308 |
|
colas@0
|
1309 |
/* TablePlugin */
|
colas@0
|
1310 |
.twikiTable,
|
colas@0
|
1311 |
.twikiTable td {
|
colas@0
|
1312 |
border-color:#e7e2da;
|
colas@0
|
1313 |
}
|
colas@0
|
1314 |
.twikiTable th {
|
colas@0
|
1315 |
border-color:#e7e2da #fff;
|
colas@0
|
1316 |
}
|
colas@0
|
1317 |
.twikiTable th a:link,
|
colas@0
|
1318 |
.twikiTable th a:visited,
|
colas@0
|
1319 |
.twikiTable th a font {
|
colas@0
|
1320 |
color:#fff;
|
colas@0
|
1321 |
}
|
colas@0
|
1322 |
|
colas@0
|
1323 |
/* TwistyContrib */
|
colas@0
|
1324 |
.twistyPlaceholder {
|
colas@0
|
1325 |
color:#777;
|
colas@0
|
1326 |
}
|
colas@0
|
1327 |
a:hover.twistyTrigger {
|
colas@0
|
1328 |
color:#fff;
|
colas@0
|
1329 |
}
|
colas@0
|
1330 |
|
colas@0
|
1331 |
/* TipsContrib */
|
colas@0
|
1332 |
.tipsOfTheDay {
|
colas@0
|
1333 |
background-color:#fff9d1;
|
colas@0
|
1334 |
}
|
colas@0
|
1335 |
|
colas@0
|
1336 |
/* RevCommentPlugin */
|
colas@0
|
1337 |
.revComment .patternTopicAction {
|
colas@0
|
1338 |
background-color:#fefcf6;
|
colas@0
|
1339 |
}
|
colas@0
|
1340 |
|
colas@0
|
1341 |
/* -----------------------------------------------------------
|
colas@0
|
1342 |
TWiki styles
|
colas@0
|
1343 |
----------------------------------------------------------- */
|
colas@0
|
1344 |
|
colas@0
|
1345 |
.twikiGrayText {
|
colas@0
|
1346 |
color:#777;
|
colas@0
|
1347 |
}
|
colas@0
|
1348 |
.twikiGrayText a:link,
|
colas@0
|
1349 |
.twikiGrayText a:visited {
|
colas@0
|
1350 |
color:#777;
|
colas@0
|
1351 |
}
|
colas@0
|
1352 |
.twikiGrayText a:hover {
|
colas@0
|
1353 |
color:#fff;
|
colas@0
|
1354 |
}
|
colas@0
|
1355 |
|
colas@0
|
1356 |
table.twikiFormTable th.twikiFormTableHRow,
|
colas@0
|
1357 |
table.twikiFormTable td.twikiFormTableRow {
|
colas@0
|
1358 |
color:#777;
|
colas@0
|
1359 |
}
|
colas@0
|
1360 |
.twikiEditForm {
|
colas@0
|
1361 |
color:#000;
|
colas@0
|
1362 |
}
|
colas@0
|
1363 |
.twikiEditForm .twikiFormTable,
|
colas@0
|
1364 |
.twikiEditForm .twikiFormTable th,
|
colas@0
|
1365 |
.twikiEditForm .twikiFormTable td {
|
colas@0
|
1366 |
border-color:#e7e2da;
|
colas@0
|
1367 |
}
|
colas@0
|
1368 |
/* use a different table background color mix: no odd/even rows, no white background */
|
colas@0
|
1369 |
.twikiEditForm .twikiFormTable td {
|
colas@0
|
1370 |
background-color:#f7fafc;
|
colas@0
|
1371 |
}
|
colas@0
|
1372 |
.twikiEditForm .twikiFormTable th {
|
colas@0
|
1373 |
background-color:#f0f6fb;
|
colas@0
|
1374 |
}
|
colas@0
|
1375 |
.patternContent .twikiAttachments,
|
colas@0
|
1376 |
.patternContent .twikiForm {
|
colas@0
|
1377 |
background-color:#fefcf6;
|
colas@0
|
1378 |
border-color:#e7e2da;
|
colas@0
|
1379 |
}
|
colas@0
|
1380 |
.twikiAttachments table,
|
colas@0
|
1381 |
table.twikiFormTable {
|
colas@0
|
1382 |
border-color:#e7e2da;
|
colas@0
|
1383 |
background-color:#fff;
|
colas@0
|
1384 |
}
|
colas@0
|
1385 |
.twikiAttachments table {
|
colas@0
|
1386 |
background-color:#fff;
|
colas@0
|
1387 |
}
|
colas@0
|
1388 |
.twikiAttachments td,
|
colas@0
|
1389 |
.twikiAttachments th {
|
colas@0
|
1390 |
border-color:#e7e2da;
|
colas@0
|
1391 |
}
|
colas@0
|
1392 |
.twikiAttachments .twikiTable th font,
|
colas@0
|
1393 |
table.twikiFormTable th.twikiFormTableHRow font {
|
colas@0
|
1394 |
color:#4571d0;
|
colas@0
|
1395 |
}
|
colas@0
|
1396 |
|
colas@0
|
1397 |
.twikiFormSteps {
|
colas@0
|
1398 |
background-color:#f1f6fa;
|
colas@0
|
1399 |
border-color:#d9e8ef;
|
colas@0
|
1400 |
}
|
colas@0
|
1401 |
.twikiFormStep {
|
colas@0
|
1402 |
border-color:#d9e8ef;
|
colas@0
|
1403 |
}
|
colas@0
|
1404 |
.twikiFormStep h3,
|
colas@0
|
1405 |
.twikiFormStep h4 {
|
colas@0
|
1406 |
color:#777;
|
colas@0
|
1407 |
}
|
colas@0
|
1408 |
.twikiFormStep h3,
|
colas@0
|
1409 |
.twikiFormStep h4 {
|
colas@0
|
1410 |
background-color:transparent;
|
colas@0
|
1411 |
}
|
colas@0
|
1412 |
.twikiActionFormStepSign {
|
colas@0
|
1413 |
color:#4571d0;
|
colas@0
|
1414 |
}
|
colas@0
|
1415 |
.twikiToc .twikiTocTitle {
|
colas@0
|
1416 |
color:#777;
|
colas@0
|
1417 |
}
|
colas@0
|
1418 |
.twikiBroadcastMessage {
|
colas@0
|
1419 |
background-color:#fff9d1;
|
colas@0
|
1420 |
border-color:#ffdf4c;
|
colas@0
|
1421 |
}
|
colas@0
|
1422 |
.twikiNotification {
|
colas@0
|
1423 |
background-color:#fff9d1;
|
colas@0
|
1424 |
}
|
colas@0
|
1425 |
.twikiHelp {
|
colas@0
|
1426 |
background-color:#fff9d1;
|
colas@0
|
1427 |
}
|
colas@0
|
1428 |
.twikiBroadcastMessage b,
|
colas@0
|
1429 |
.twikiBroadcastMessage strong {
|
colas@0
|
1430 |
color:#f00;
|
colas@0
|
1431 |
}
|
colas@0
|
1432 |
.twikiAlert,
|
colas@0
|
1433 |
.twikiAlert code {
|
colas@0
|
1434 |
color:#f00;
|
colas@0
|
1435 |
}
|
colas@0
|
1436 |
.twikiEmulatedLink {
|
colas@0
|
1437 |
color:#4571d0;
|
colas@0
|
1438 |
}
|
colas@0
|
1439 |
.twikiPageForm table {
|
colas@0
|
1440 |
border-color:#e7e2da;
|
colas@0
|
1441 |
background:#fff;
|
colas@0
|
1442 |
}
|
colas@0
|
1443 |
.twikiPageForm hr {
|
colas@0
|
1444 |
border-color:#cfcfcf;
|
colas@0
|
1445 |
background-color:#cfcfcf;
|
colas@0
|
1446 |
color:#cfcfcf;
|
colas@0
|
1447 |
}
|
colas@0
|
1448 |
.twikiAccessKey {
|
colas@0
|
1449 |
color:inherit;
|
colas@0
|
1450 |
border-color:#777;
|
colas@0
|
1451 |
}
|
colas@0
|
1452 |
a:link .twikiAccessKey,
|
colas@0
|
1453 |
a:visited .twikiAccessKey {
|
colas@0
|
1454 |
color:inherit;
|
colas@0
|
1455 |
}
|
colas@0
|
1456 |
a:hover .twikiAccessKey {
|
colas@0
|
1457 |
color:inherit;
|
colas@0
|
1458 |
}
|
colas@0
|
1459 |
.twikiImage img {
|
colas@0
|
1460 |
border-color:#eee;
|
colas@0
|
1461 |
background-color:#fff;
|
colas@0
|
1462 |
}
|
colas@0
|
1463 |
#patternTopBar .twikiImage img {
|
colas@0
|
1464 |
background-color:transparent;
|
colas@0
|
1465 |
}
|
colas@0
|
1466 |
.twikiImage a:hover img {
|
colas@0
|
1467 |
border-color:#d6000f;
|
colas@0
|
1468 |
}
|
colas@0
|
1469 |
|
colas@0
|
1470 |
/* -----------------------------------------------------------
|
colas@0
|
1471 |
Pattern skin specific elements
|
colas@0
|
1472 |
----------------------------------------------------------- */
|
colas@0
|
1473 |
#patternPage {
|
colas@0
|
1474 |
background-color:#fff;
|
colas@0
|
1475 |
}
|
colas@0
|
1476 |
.patternHomePath a:link,
|
colas@0
|
1477 |
.patternHomePath a:visited {
|
colas@0
|
1478 |
border-color:#ddd;
|
colas@0
|
1479 |
color:#666;
|
colas@0
|
1480 |
}
|
colas@0
|
1481 |
.patternTop a:hover {
|
colas@0
|
1482 |
border:none;
|
colas@0
|
1483 |
color:#fff;
|
colas@0
|
1484 |
}
|
colas@0
|
1485 |
.patternHomePath .patternRevInfo,
|
colas@0
|
1486 |
.patternHomePath .patternRevInfo a:link,
|
colas@0
|
1487 |
.patternHomePath .patternRevInfo a:visited {
|
colas@0
|
1488 |
color:#777;
|
colas@0
|
1489 |
}
|
colas@0
|
1490 |
.patternHomePath .patternRevInfo a:hover {
|
colas@0
|
1491 |
color:#fff;
|
colas@0
|
1492 |
}
|
colas@0
|
1493 |
|
colas@0
|
1494 |
/* Left bar */
|
colas@0
|
1495 |
#patternLeftBarContents {
|
colas@0
|
1496 |
color:#000;
|
colas@0
|
1497 |
}
|
colas@0
|
1498 |
#patternLeftBarContents hr {
|
colas@0
|
1499 |
color:#d9e8ef;
|
colas@0
|
1500 |
background-color:#d9e8ef;
|
colas@0
|
1501 |
}
|
colas@0
|
1502 |
#patternLeftBarContents a:link,
|
colas@0
|
1503 |
#patternLeftBarContents a:visited {
|
colas@0
|
1504 |
color:#555;
|
colas@0
|
1505 |
}
|
colas@0
|
1506 |
#patternLeftBarContents a:hover {
|
colas@0
|
1507 |
color:#fff;
|
colas@0
|
1508 |
}
|
colas@0
|
1509 |
#patternLeftBarContents .patternLeftBarPersonal a:link,
|
colas@0
|
1510 |
#patternLeftBarContents .patternLeftBarPersonal a:visited {
|
colas@0
|
1511 |
color:#4571d0;
|
colas@0
|
1512 |
}
|
colas@0
|
1513 |
#patternLeftBarContents .patternLeftBarPersonal a:hover {
|
colas@0
|
1514 |
color:#fff;
|
colas@0
|
1515 |
}
|
colas@0
|
1516 |
|
colas@0
|
1517 |
.patternTopicActions {
|
colas@0
|
1518 |
border-color:#e7e2da;
|
colas@0
|
1519 |
background-color:#fdfaf2;
|
colas@0
|
1520 |
color:#777;
|
colas@0
|
1521 |
}
|
colas@0
|
1522 |
.patternTopicAction {
|
colas@0
|
1523 |
border-color:#e7e2da;
|
colas@0
|
1524 |
}
|
colas@0
|
1525 |
.patternTopicAction s,
|
colas@0
|
1526 |
.patternTopicAction strike {
|
colas@0
|
1527 |
color:#aaa;
|
colas@0
|
1528 |
}
|
colas@0
|
1529 |
.patternTopicAction .twikiSeparator {
|
colas@0
|
1530 |
color:#e7e2da;
|
colas@0
|
1531 |
}
|
colas@0
|
1532 |
.patternActionButtons a:link,
|
colas@0
|
1533 |
.patternActionButtons a:visited {
|
colas@0
|
1534 |
color:#be000a;
|
colas@0
|
1535 |
}
|
colas@0
|
1536 |
.patternActionButtons a:hover {
|
colas@0
|
1537 |
color:#fff;
|
colas@0
|
1538 |
}
|
colas@0
|
1539 |
.patternTopicAction .twikiAccessKey {
|
colas@0
|
1540 |
color:#be000a;
|
colas@0
|
1541 |
border-color:#be000a;
|
colas@0
|
1542 |
}
|
colas@0
|
1543 |
.patternTopicAction a:hover .twikiAccessKey {
|
colas@0
|
1544 |
color:#fff;
|
colas@0
|
1545 |
}
|
colas@0
|
1546 |
.patternTopicAction label {
|
colas@0
|
1547 |
color:#000;
|
colas@0
|
1548 |
}
|
colas@0
|
1549 |
.patternHelpCol {
|
colas@0
|
1550 |
color:#777;
|
colas@0
|
1551 |
}
|
colas@0
|
1552 |
.patternSigLine {
|
colas@0
|
1553 |
color:#777;
|
colas@0
|
1554 |
}
|
colas@0
|
1555 |
.patternToolBar a:link .twikiAccessKey,
|
colas@0
|
1556 |
.patternToolBar a:visited .twikiAccessKey {
|
colas@0
|
1557 |
color:inherit;
|
colas@0
|
1558 |
border-color:#666;
|
colas@0
|
1559 |
}
|
colas@0
|
1560 |
.patternToolBar a:hover .twikiAccessKey {
|
colas@0
|
1561 |
background-color:transparent;
|
colas@0
|
1562 |
color:inherit;
|
colas@0
|
1563 |
border-color:#666;
|
colas@0
|
1564 |
}
|
colas@0
|
1565 |
.patternSaveHelp {
|
colas@0
|
1566 |
background-color:#fff;
|
colas@0
|
1567 |
}
|
colas@0
|
1568 |
|
colas@0
|
1569 |
/* WebSearch, WebSearchAdvanced */
|
colas@0
|
1570 |
table#twikiSearchTable {
|
colas@0
|
1571 |
border-color:#d9e8ef;
|
colas@0
|
1572 |
}
|
colas@0
|
1573 |
table#twikiSearchTable th,
|
colas@0
|
1574 |
table#twikiSearchTable td {
|
colas@0
|
1575 |
background-color:#fff;
|
colas@0
|
1576 |
border-color:#d9e8ef;
|
colas@0
|
1577 |
}
|
colas@0
|
1578 |
table#twikiSearchTable hr {
|
colas@0
|
1579 |
border-color:#d9e8ef;
|
colas@0
|
1580 |
background-color:#d9e8ef;
|
colas@0
|
1581 |
}
|
colas@0
|
1582 |
table#twikiSearchTable th {
|
colas@0
|
1583 |
color:#000;
|
colas@0
|
1584 |
}
|
colas@0
|
1585 |
|
colas@0
|
1586 |
/* -----------------------------------------------------------
|
colas@0
|
1587 |
Search results
|
colas@0
|
1588 |
styles and overridden styles used in search.pattern.tmpl
|
colas@0
|
1589 |
----------------------------------------------------------- */
|
colas@0
|
1590 |
|
colas@0
|
1591 |
h3.patternSearchResultsHeader,
|
colas@0
|
1592 |
h4.patternSearchResultsHeader {
|
colas@0
|
1593 |
background-color:#fefcf6;
|
colas@0
|
1594 |
border-color:#e7e2da;
|
colas@0
|
1595 |
}
|
colas@0
|
1596 |
h4.patternSearchResultsHeader {
|
colas@0
|
1597 |
color:#000;
|
colas@0
|
1598 |
}
|
colas@0
|
1599 |
.patternNoViewPage h4.patternSearchResultsHeader {
|
colas@0
|
1600 |
color:#800;
|
colas@0
|
1601 |
}
|
colas@0
|
1602 |
.patternSearchResult .twikiBottomRow {
|
colas@0
|
1603 |
border-color:#e7e2da;
|
colas@0
|
1604 |
}
|
colas@0
|
1605 |
.patternSearchResult .twikiAlert {
|
colas@0
|
1606 |
color:#f00;
|
colas@0
|
1607 |
}
|
colas@0
|
1608 |
.patternSearchResult .twikiSummary .twikiAlert {
|
colas@0
|
1609 |
color:#900;
|
colas@0
|
1610 |
}
|
colas@0
|
1611 |
.patternSearchResult .twikiNew {
|
colas@0
|
1612 |
background-color:#ECFADC;
|
colas@0
|
1613 |
border-color:#049804;
|
colas@0
|
1614 |
color:#049804;
|
colas@0
|
1615 |
}
|
colas@0
|
1616 |
.patternViewPage .patternSearchResultsBegin {
|
colas@0
|
1617 |
border-color:#e7e2da;
|
colas@0
|
1618 |
}
|
colas@0
|
1619 |
|
colas@0
|
1620 |
/* Search results in book view format */
|
colas@0
|
1621 |
|
colas@0
|
1622 |
.patternBookView .twikiTopRow {
|
colas@0
|
1623 |
background-color:transparent; /* set to WEBBGCOLOR in css.pattern.tmpl */
|
colas@0
|
1624 |
color:#777;
|
colas@0
|
1625 |
}
|
colas@0
|
1626 |
.patternBookView .twikiBottomRow {
|
colas@0
|
1627 |
border-color:#e7e2da;
|
colas@0
|
1628 |
}
|
colas@0
|
1629 |
.patternBookView .patternSearchResultCount {
|
colas@0
|
1630 |
color:#777;
|
colas@0
|
1631 |
}
|
colas@0
|
1632 |
|
colas@0
|
1633 |
/* edit.pattern.tmpl */
|
colas@0
|
1634 |
|
colas@0
|
1635 |
.patternEditPage .patternSigLine {
|
colas@0
|
1636 |
background-color:#fefcf6;
|
colas@0
|
1637 |
border-color:#e7e2da;
|
colas@0
|
1638 |
}
|
colas@0
|
1639 |
|
colas@0
|
1640 |
/* preview.pattern.tmpl */
|
colas@0
|
1641 |
|
colas@0
|
1642 |
.twikiPreviewArea {
|
colas@0
|
1643 |
border-color:#f00;
|
colas@0
|
1644 |
background-color:#fff;
|
colas@0
|
1645 |
}
|
colas@0
|
1646 |
|
colas@0
|
1647 |
/* rdiff.pattern.tmpl */
|
colas@0
|
1648 |
|
colas@0
|
1649 |
.patternDiff {
|
colas@0
|
1650 |
border-color:#6b7f93;
|
colas@0
|
1651 |
}
|
colas@0
|
1652 |
.patternDiff h4.patternSearchResultsHeader {
|
colas@0
|
1653 |
background-color:#6b7f93;
|
colas@0
|
1654 |
color:#fff;
|
colas@0
|
1655 |
}
|
colas@0
|
1656 |
.patternDiff h4.patternSearchResultsHeader a:link,
|
colas@0
|
1657 |
.patternDiff h4.patternSearchResultsHeader a:visited {
|
colas@0
|
1658 |
color:#fff;
|
colas@0
|
1659 |
}
|
colas@0
|
1660 |
tr.twikiDiffDebug td {
|
colas@0
|
1661 |
border-color:#e7e2da;
|
colas@0
|
1662 |
}
|
colas@0
|
1663 |
.patternDiffPage .twikiDiffTable th {
|
colas@0
|
1664 |
background-color:#ccc;
|
colas@0
|
1665 |
}
|
colas@0
|
1666 |
/* Changed */
|
colas@0
|
1667 |
.twikiDiffChangedHeader,
|
colas@0
|
1668 |
tr.twikiDiffDebug .twikiDiffChangedText,
|
colas@0
|
1669 |
tr.twikiDiffDebug .twikiDiffChangedText {
|
colas@0
|
1670 |
background:#9f9; /* green - do not change */
|
colas@0
|
1671 |
}
|
colas@0
|
1672 |
/* Deleted */
|
colas@0
|
1673 |
.twikiDiffDeletedHeader,
|
colas@0
|
1674 |
tr.twikiDiffDebug .twikiDiffDeletedMarker,
|
colas@0
|
1675 |
tr.twikiDiffDebug .twikiDiffDeletedText {
|
colas@0
|
1676 |
background-color:#f99; /* red - do not change */
|
colas@0
|
1677 |
}
|
colas@0
|
1678 |
/* Added */
|
colas@0
|
1679 |
.twikiDiffAddedHeader,
|
colas@0
|
1680 |
tr.twikiDiffDebug .twikiDiffAddedMarker,
|
colas@0
|
1681 |
tr.twikiDiffDebug .twikiDiffAddedText {
|
colas@0
|
1682 |
background-color:#ccf; /* violet - do not change */
|
colas@0
|
1683 |
}
|
colas@0
|
1684 |
/* Unchanged */
|
colas@0
|
1685 |
tr.twikiDiffDebug .twikiDiffUnchangedText {
|
colas@0
|
1686 |
color:#777;
|
colas@0
|
1687 |
}
|
colas@0
|
1688 |
.twikiDiffUnchangedTextContents { }
|
colas@0
|
1689 |
.twikiDiffLineNumberHeader {
|
colas@0
|
1690 |
background-color:#ccc;
|
colas@0
|
1691 |
}
|
colas@0
|
1692 |
|
colas@0
|
1693 |
|
colas@0
|
1694 |
/* ----------------------------------------------------------------------- */
|
colas@0
|
1695 |
/* configure styles */
|
colas@0
|
1696 |
/* ----------------------------------------------------------------------- */
|
colas@0
|
1697 |
|
colas@0
|
1698 |
#twikiPassword,
|
colas@0
|
1699 |
#twikiPasswordChange {
|
colas@0
|
1700 |
width:40em;
|
colas@0
|
1701 |
margin:1em auto;
|
colas@0
|
1702 |
}
|
colas@0
|
1703 |
#twikiPassword .twikiFormSteps,
|
colas@0
|
1704 |
#twikiPasswordChange .twikiFormSteps {
|
colas@0
|
1705 |
border-width:5px;
|
colas@0
|
1706 |
}
|
colas@0
|
1707 |
div.foldableBlock h1,
|
colas@0
|
1708 |
div.foldableBlock h2,
|
colas@0
|
1709 |
div.foldableBlock h3,
|
colas@0
|
1710 |
div.foldableBlock h4,
|
colas@0
|
1711 |
div.foldableBlock h5,
|
colas@0
|
1712 |
div.foldableBlock h6 {
|
colas@0
|
1713 |
border:0;
|
colas@0
|
1714 |
margin-top:0;
|
colas@0
|
1715 |
margin-bottom:0;
|
colas@0
|
1716 |
}
|
colas@0
|
1717 |
ul {
|
colas@0
|
1718 |
margin-top:0;
|
colas@0
|
1719 |
margin-bottom:0;
|
colas@0
|
1720 |
}
|
colas@0
|
1721 |
.logo {
|
colas@0
|
1722 |
margin:1em 0 1.5em 0;
|
colas@0
|
1723 |
}
|
colas@0
|
1724 |
.formElem {
|
colas@0
|
1725 |
background-color:#e9ecf2;
|
colas@0
|
1726 |
margin:0.5em 0;
|
colas@0
|
1727 |
padding:0.5em 1em;
|
colas@0
|
1728 |
}
|
colas@0
|
1729 |
.blockLinkAttribute {
|
colas@0
|
1730 |
margin-left:0.35em;
|
colas@0
|
1731 |
}
|
colas@0
|
1732 |
.blockLinkAttribute a:link,
|
colas@0
|
1733 |
.blockLinkAttribute a:visited {
|
colas@0
|
1734 |
text-decoration:none;
|
colas@0
|
1735 |
}
|
colas@0
|
1736 |
a.blockLink {
|
colas@0
|
1737 |
display:block;
|
colas@0
|
1738 |
padding:0.25em 1em;
|
colas@0
|
1739 |
border-bottom:1px solid #aaa;
|
colas@0
|
1740 |
border-top:1px solid #f2f4f6;
|
colas@0
|
1741 |
font-weight:bold;
|
colas@0
|
1742 |
}
|
colas@0
|
1743 |
a:link.blockLink,
|
colas@0
|
1744 |
a:visited.blockLink {
|
colas@0
|
1745 |
text-decoration:underline;
|
colas@0
|
1746 |
}
|
colas@0
|
1747 |
a:link:hover.blockLink {
|
colas@0
|
1748 |
text-decoration:underline;
|
colas@0
|
1749 |
}
|
colas@0
|
1750 |
a:link.blockLinkOff,
|
colas@0
|
1751 |
a:visited.blockLinkOff {
|
colas@0
|
1752 |
background-color:#f2f4f6;
|
colas@0
|
1753 |
}
|
colas@0
|
1754 |
a:link.blockLinkOn,
|
colas@0
|
1755 |
a:visited.blockLinkOn {
|
colas@0
|
1756 |
background-color:#c4cbd6;
|
colas@0
|
1757 |
border-bottom-color:#3f4e67;
|
colas@0
|
1758 |
border-top-color:#fff;
|
colas@0
|
1759 |
}
|
colas@0
|
1760 |
a.blockLink:hover {
|
colas@0
|
1761 |
background-color:#c4cbd6;
|
colas@0
|
1762 |
color:#3f4e67;
|
colas@0
|
1763 |
border-bottom-color:#3f4e67;
|
colas@0
|
1764 |
border-top-color:#fff;
|
colas@0
|
1765 |
}
|
colas@0
|
1766 |
div.explanation {
|
colas@0
|
1767 |
background-color:#fff9d1;
|
colas@0
|
1768 |
padding:0.5em 1em;
|
colas@0
|
1769 |
margin:0.5em 0;
|
colas@0
|
1770 |
}
|
colas@0
|
1771 |
div.specialRemark {
|
colas@0
|
1772 |
background-color:#fff;
|
colas@0
|
1773 |
border:1px solid #ccc;
|
colas@0
|
1774 |
margin:0.5em;
|
colas@0
|
1775 |
padding:0.5em 1em;
|
colas@0
|
1776 |
}
|
colas@0
|
1777 |
div.options {
|
colas@0
|
1778 |
margin:1em 0;
|
colas@0
|
1779 |
}
|
colas@0
|
1780 |
div.options div.optionHeader {
|
colas@0
|
1781 |
padding:0.25em 1em;
|
colas@0
|
1782 |
background-color:#666;
|
colas@0
|
1783 |
color:white;
|
colas@0
|
1784 |
font-weight:bold;
|
colas@0
|
1785 |
}
|
colas@0
|
1786 |
div.options div.optionHeader a {
|
colas@0
|
1787 |
border-width:2px;
|
colas@0
|
1788 |
border-style:solid;
|
colas@0
|
1789 |
border-color:#eee #999 #999 #eee;
|
colas@0
|
1790 |
background-color:#eee;
|
colas@0
|
1791 |
padding:0 .5em;
|
colas@0
|
1792 |
text-decoration:none;
|
colas@0
|
1793 |
}
|
colas@0
|
1794 |
div.options div.optionHeader a:link:hover,
|
colas@0
|
1795 |
div.options div.optionHeader a:visited:hover {
|
colas@0
|
1796 |
background-color:#b4d5ff; /* King's blue */
|
colas@0
|
1797 |
text-decoration:none;
|
colas@0
|
1798 |
color:#333;
|
colas@0
|
1799 |
}
|
colas@0
|
1800 |
div.options .twikiSmall {
|
colas@0
|
1801 |
margin-left:0.5em;
|
colas@0
|
1802 |
color:#bbb;
|
colas@0
|
1803 |
}
|
colas@0
|
1804 |
div.foldableBlock {
|
colas@0
|
1805 |
border-bottom:1px solid #ccc;
|
colas@0
|
1806 |
border-left:1px solid #ddd;
|
colas@0
|
1807 |
border-right:1px solid #ddd;
|
colas@0
|
1808 |
height:auto;
|
colas@0
|
1809 |
width:auto;
|
colas@0
|
1810 |
overflow:auto;
|
colas@0
|
1811 |
}
|
colas@0
|
1812 |
.foldableBlockOpen {
|
colas@0
|
1813 |
display:block;
|
colas@0
|
1814 |
}
|
colas@0
|
1815 |
.foldableBlockClosed {
|
colas@0
|
1816 |
display:block;
|
colas@0
|
1817 |
}
|
colas@0
|
1818 |
div.foldableBlock td {
|
colas@0
|
1819 |
padding:0.5em 1em;
|
colas@0
|
1820 |
border-top:1px solid #ccc;
|
colas@0
|
1821 |
vertical-align:middle;
|
colas@0
|
1822 |
line-height:1.2em;
|
colas@0
|
1823 |
}
|
colas@0
|
1824 |
div.foldableBlock td.info {
|
colas@0
|
1825 |
border-width:6px;
|
colas@0
|
1826 |
}
|
colas@0
|
1827 |
.info {
|
colas@0
|
1828 |
color:#666; /*T7*/ /* gray */
|
colas@0
|
1829 |
background-color:#f8fbfc;
|
colas@0
|
1830 |
}
|
colas@0
|
1831 |
.firstInfo {
|
colas@0
|
1832 |
color:#000;
|
colas@0
|
1833 |
background-color:#fff;
|
colas@0
|
1834 |
}
|
colas@0
|
1835 |
|
colas@0
|
1836 |
.warn {
|
colas@0
|
1837 |
color:#f60; /* orange */
|
colas@0
|
1838 |
background-color:#FFE8D9; /* light orange */
|
colas@0
|
1839 |
border-bottom:1px solid #f60;
|
colas@0
|
1840 |
}
|
colas@0
|
1841 |
a.info,
|
colas@0
|
1842 |
a.warn,
|
colas@0
|
1843 |
a.error {
|
colas@0
|
1844 |
text-decoration:none;
|
colas@0
|
1845 |
}
|
colas@0
|
1846 |
.error {
|
colas@0
|
1847 |
color:#f00; /*T9*/ /*red*/
|
colas@0
|
1848 |
background-color:#FFD9D9; /* pink */
|
colas@0
|
1849 |
border-bottom:1px solid #f00;
|
colas@0
|
1850 |
}
|
colas@0
|
1851 |
.mandatory,
|
colas@0
|
1852 |
.mandatory input {
|
colas@0
|
1853 |
color:green;
|
colas@0
|
1854 |
background-color:#ECFADC;
|
colas@0
|
1855 |
font-weight: bold;
|
colas@0
|
1856 |
}
|
colas@0
|
1857 |
.mandatory {
|
colas@0
|
1858 |
border-bottom:1px solid green;
|
colas@0
|
1859 |
}
|
colas@0
|
1860 |
.mandatory input {
|
colas@0
|
1861 |
font-weight:normal;
|
colas@0
|
1862 |
}
|
colas@0
|
1863 |
.docdata {
|
colas@0
|
1864 |
padding-top: 1ex;
|
colas@0
|
1865 |
vertical-align: top;
|
colas@0
|
1866 |
}
|
colas@0
|
1867 |
.keydata {
|
colas@0
|
1868 |
font-weight: bold;
|
colas@0
|
1869 |
background-color:#F0F0F0;
|
colas@0
|
1870 |
vertical-align: top;
|
colas@0
|
1871 |
}
|
colas@0
|
1872 |
.subHead {
|
colas@0
|
1873 |
font-weight: bold;
|
colas@0
|
1874 |
font-style: italic;
|
colas@0
|
1875 |
}
|
colas@0
|
1876 |
.firstCol {
|
colas@0
|
1877 |
width: 30%;
|
colas@0
|
1878 |
font-weight: bold;
|
colas@0
|
1879 |
vertical-align: top;
|
colas@0
|
1880 |
}
|
colas@0
|
1881 |
.secondCol {
|
colas@0
|
1882 |
}
|
colas@0
|
1883 |
.hiddenRow {
|
colas@0
|
1884 |
display:none;
|
colas@0
|
1885 |
}
|