##// END OF EJS Templates
fixed nasty bug when browsing on renames....
marcink -
r583:95b746f2 default
parent child Browse files
Show More
@@ -1,3649 +1,3646 b''
1 html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td
1 html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td
2 {
2 {
3 margin: 0;
3 margin: 0;
4 padding: 0;
4 padding: 0;
5 border: 0;
5 border: 0;
6 outline: 0;
6 outline: 0;
7 font-size: 100%;
7 font-size: 100%;
8 vertical-align: baseline;
8 vertical-align: baseline;
9 background: transparent;
9 background: transparent;
10 }
10 }
11
11
12 body {
12 body {
13 line-height: 1;
13 line-height: 1;
14 }
14 }
15
15
16 ol,ul {
16 ol,ul {
17 list-style: none;
17 list-style: none;
18 }
18 }
19
19
20 blockquote,q {
20 blockquote,q {
21 quotes: none;
21 quotes: none;
22 }
22 }
23
23
24 blockquote:before,blockquote:after,q:before,q:after {
24 blockquote:before,blockquote:after,q:before,q:after {
25 content: '';
25 content: '';
26 content: none;
26 content: none;
27 }
27 }
28
28
29 :focus {
29 :focus {
30 outline: 0;
30 outline: 0;
31 }
31 }
32
32
33 ins {
33 ins {
34 text-decoration: none;
34 text-decoration: none;
35 }
35 }
36
36
37 del {
37 del {
38 text-decoration: line-through;
38 text-decoration: line-through;
39 }
39 }
40
40
41 /* tables still need 'cellspacing="0"' in the markup */
41 /* tables still need 'cellspacing="0"' in the markup */
42 table {
42 table {
43 border-collapse: collapse;
43 border-collapse: collapse;
44 border-spacing: 0;
44 border-spacing: 0;
45 }
45 }
46
46
47 /*
47 /*
48 main stylesheet
48 main stylesheet
49 */
49 */
50 html {
50 html {
51 height: 100%;
51 height: 100%;
52 }
52 }
53
53
54 body {
54 body {
55 margin: 0;
55 margin: 0;
56 padding: 0;
56 padding: 0;
57 height: 100%;
57 height: 100%;
58 background: #d1d1d1 url("../images/background.png") repeat;
58 background: url("../images/background.png") repeat scroll 0 0 #B0B0B0;
59 font-family: Lucida Grande, Verdana, Lucida Sans Regular,
59 font-family: Lucida Grande, Verdana, Lucida Sans Regular,
60 Lucida Sans Unicode, Arial, sans-serif;
60 Lucida Sans Unicode, Arial, sans-serif;
61 font-size: 12px;
61 font-size: 12px;
62 color: #000000;
62 color: #000000;
63 }
63 }
64
64
65 /*
65 /*
66 images
66 images
67 */
67 */
68 img {
68 img {
69 border: none;
69 border: none;
70 }
70 }
71
71
72 img.icon {
72 img.icon {
73 vertical-align: bottom;
73 vertical-align: bottom;
74 }
74 }
75
75
76 /*
76 /*
77 anchors
77 anchors
78 */
78 */
79 a {
79 a {
80 color: #003367;
80 color: #003367;
81 text-decoration: none;
81 text-decoration: none;
82 cursor: pointer;
82 cursor: pointer;
83 font-weight: bold;
83 font-weight: bold;
84 }
84 }
85
85
86 a:hover {
86 a:hover {
87 color: #316293;
87 color: #316293;
88 text-decoration: underline;
88 text-decoration: underline;
89 }
89 }
90
90
91 /*
91 /*
92 headings
92 headings
93 */
93 */
94 h1,h2,h3,h4,h5,h6 {
94 h1,h2,h3,h4,h5,h6 {
95 color: #292929;
95 color: #292929;
96 font-weight: bold;
96 font-weight: bold;
97 }
97 }
98
98
99 h1 {
99 h1 {
100 font-size: 22px;
100 font-size: 22px;
101 }
101 }
102
102
103 h2 {
103 h2 {
104 font-size: 20px;
104 font-size: 20px;
105 }
105 }
106
106
107 h3 {
107 h3 {
108 font-size: 18px;
108 font-size: 18px;
109 }
109 }
110
110
111 h4 {
111 h4 {
112 font-size: 16px;
112 font-size: 16px;
113 }
113 }
114
114
115 h5 {
115 h5 {
116 font-size: 14px;
116 font-size: 14px;
117 }
117 }
118
118
119 h6 {
119 h6 {
120 font-size: 11px;
120 font-size: 11px;
121 }
121 }
122
122
123 /*
123 /*
124 lists
124 lists
125 */
125 */
126 ul.circle {
126 ul.circle {
127 list-style-type: circle;
127 list-style-type: circle;
128 }
128 }
129
129
130 ul.disc {
130 ul.disc {
131 list-style-type: disc;
131 list-style-type: disc;
132 }
132 }
133
133
134 ul.square {
134 ul.square {
135 list-style-type: square;
135 list-style-type: square;
136 }
136 }
137
137
138 ol.lower-roman {
138 ol.lower-roman {
139 list-style-type: lower-roman;
139 list-style-type: lower-roman;
140 }
140 }
141
141
142 ol.upper-roman {
142 ol.upper-roman {
143 list-style-type: upper-roman;
143 list-style-type: upper-roman;
144 }
144 }
145
145
146 ol.lower-alpha {
146 ol.lower-alpha {
147 list-style-type: lower-alpha;
147 list-style-type: lower-alpha;
148 }
148 }
149
149
150 ol.upper-alpha {
150 ol.upper-alpha {
151 list-style-type: upper-alpha;
151 list-style-type: upper-alpha;
152 }
152 }
153
153
154 ol.decimal {
154 ol.decimal {
155 list-style-type: decimal;
155 list-style-type: decimal;
156 }
156 }
157
157
158 /*
158 /*
159 colors
159 colors
160 */
160 */
161 div.color {
161 div.color {
162 margin: 7px 0 0 60px;
162 margin: 7px 0 0 60px;
163 padding: 1px 1px 1px 0px;
163 padding: 1px 1px 1px 0px;
164 clear: both;
164 clear: both;
165 overflow: hidden;
165 overflow: hidden;
166 position: absolute;
166 position: absolute;
167 background: #FFFFFF;
167 background: #FFFFFF;
168 }
168 }
169
169
170 div.color a {
170 div.color a {
171 margin: 0 0 0 1px;
171 margin: 0 0 0 1px;
172 padding: 0;
172 padding: 0;
173 width: 15px;
173 width: 15px;
174 height: 15px;
174 height: 15px;
175 display: block;
175 display: block;
176 float: left;
176 float: left;
177 }
177 }
178
178
179 div.color a.blue {
179 div.color a.blue {
180 background: #376ea6;
180 background: #376ea6;
181 }
181 }
182
182
183 div.color a.green {
183 div.color a.green {
184 background: #85924b;
184 background: #85924b;
185 }
185 }
186
186
187 div.color a.brown {
187 div.color a.brown {
188 background: #9b6e42;
188 background: #9b6e42;
189 }
189 }
190
190
191 div.color a.purple {
191 div.color a.purple {
192 background: #88528b;
192 background: #88528b;
193 }
193 }
194
194
195 div.color a.red {
195 div.color a.red {
196 background: #bd3220;
196 background: #bd3220;
197 }
197 }
198
198
199 div.color a.greyblue {
199 div.color a.greyblue {
200 background: #566e86;
200 background: #566e86;
201 }
201 }
202
202
203 /*
203 /*
204 options
204 options
205 */
205 */
206 div.options {
206 div.options {
207 margin: 7px 0 0 162px;
207 margin: 7px 0 0 162px;
208 padding: 0;
208 padding: 0;
209 clear: both;
209 clear: both;
210 overflow: hidden;
210 overflow: hidden;
211 position: absolute;
211 position: absolute;
212 background: #FFFFFF;
212 background: #FFFFFF;
213 }
213 }
214
214
215 div.options a {
215 div.options a {
216 margin: 0;
216 margin: 0;
217 padding: 3px 8px 3px 8px;
217 padding: 3px 8px 3px 8px;
218 height: 1%;
218 height: 1%;
219 display: block;
219 display: block;
220 text-decoration: none;
220 text-decoration: none;
221 }
221 }
222
222
223 div.options a:hover {
223 div.options a:hover {
224 text-decoration: none;
224 text-decoration: none;
225 }
225 }
226
226
227 /*
227 /*
228 header
228 header
229 */
229 */
230 #header {
230 #header {
231 margin: 0;
231 margin: 0;
232 padding: 0 30px 0 30px;
232 padding: 0 30px 0 30px;
233 background: #b0b0b0 url("../images/header_background.png") repeat;
234 }
233 }
235
234
236 /*
235 /*
237 header / user
236 header / user
238 */
237 */
239 #header ul#logged-user {
238 #header ul#logged-user {
240 margin: 0;
239 margin: 0;
241 padding: 0;
240 padding: 0;
242 float: right;
241 float: right;
243 }
242 }
244
243
245 #header ul#logged-user li {
244 #header ul#logged-user li {
246 margin:-2px 0 0;
245 margin:-2px 0 0;
247 padding: 10px 12px 10px 12px;
246 padding: 10px 12px 10px 12px;
248 list-style: none;
247 list-style: none;
249 float: left;
248 float: left;
250 border-left: 1px solid #bbbbbb;
249 border-left: 1px solid #bbbbbb;
251 border-right: 1px solid #a5a5a5;
250 border-right: 1px solid #a5a5a5;
252 }
251 }
253
252
254 #header ul#logged-user li.first {
253 #header ul#logged-user li.first {
255 border-left: none;
254 border-left: none;
256 margin: -6px;
255 margin: -6px;
257 }
256 }
258
257
259 #header ul#logged-user li.first div.account {
258 #header ul#logged-user li.first div.account {
260 padding-top: 4px;
259 padding-top: 4px;
261 float: left;
260 float: left;
262 }
261 }
263
262
264 #header ul#logged-user li.last {
263 #header ul#logged-user li.last {
265 border-right: none;
264 border-right: none;
266 }
265 }
267
266
268 #header ul#logged-user li a {
267 #header ul#logged-user li a {
269 color: #4e4e4e;
268 color: #4e4e4e;
270 font-weight: bold;
269 font-weight: bold;
271 text-decoration: none;
270 text-decoration: none;
272 }
271 }
273
272
274 #header ul#logged-user li a:hover {
273 #header ul#logged-user li a:hover {
275 color: #376ea6;
274 color: #376ea6;
276 text-decoration: underline;
275 text-decoration: underline;
277 }
276 }
278
277
279 #header ul#logged-user li.highlight a {
278 #header ul#logged-user li.highlight a {
280 color: #ffffff;
279 color: #ffffff;
281 }
280 }
282
281
283 #header ul#logged-user li.highlight a:hover {
282 #header ul#logged-user li.highlight a:hover {
284 color: #376ea6;
283 color: #376ea6;
285 }
284 }
286
285
287 #header #header-inner {
286 #header #header-inner {
288 margin: 0;
287 margin: 0;
289 padding: 0;
288 padding: 0;
290 height: 40px;
289 height: 40px;
291 clear: both;
290 clear: both;
292 position: relative;
291 position: relative;
293 background: #003367 url("../images/header_inner.png") repeat-x;
292 background: #003367 url("../images/header_inner.png") repeat-x;
294 border-bottom: 2px solid #ffffff;
293 border-bottom: 2px solid #ffffff;
295 }
294 }
296
295
297 /*
296 /*
298 header / home
297 header / home
299 */
298 */
300 #header #header-inner #home {
299 #header #header-inner #home {
301 float: left;
300 float: left;
302 }
301 }
303
302
304 #header #header-inner #home a {
303 #header #header-inner #home a {
305 margin: 0;
304 margin: 0;
306 padding: 0;
305 padding: 0;
307 height: 40px;
306 height: 40px;
308 width: 46px;
307 width: 46px;
309 display: block;
308 display: block;
310 background: url("../images/button_home.png");
309 background: url("../images/button_home.png");
311 background-position: 0 0;
310 background-position: 0 0;
312 }
311 }
313
312
314 #header #header-inner #home a:hover {
313 #header #header-inner #home a:hover {
315 background-position: 0 -40px;
314 background-position: 0 -40px;
316 }
315 }
317
316
318 /*
317 /*
319 header / logo
318 header / logo
320 */
319 */
321 #header #header-inner #logo {
320 #header #header-inner #logo {
322 float: left;
321 float: left;
323 }
322 }
324
323
325 #header #header-inner #logo h1 {
324 #header #header-inner #logo h1 {
326 margin: 13px 0 0 13px;
325 margin: 13px 0 0 13px;
327 padding: 0;
326 padding: 0;
328 color: #FFFFFF;
327 color: #FFFFFF;
329 font-size: 14px;
328 font-size: 14px;
330 text-transform: uppercase;
329 text-transform: uppercase;
331 }
330 }
332
331
333 #header #header-inner #logo a {
332 #header #header-inner #logo a {
334 color: #ffffff;
333 color: #ffffff;
335 text-decoration: none;
334 text-decoration: none;
336 }
335 }
337
336
338 #header #header-inner #logo a:hover {
337 #header #header-inner #logo a:hover {
339 color: #dabf29;
338 color: #dabf29;
340 }
339 }
341
340
342 /*
341 /*
343 header / quick
342 header / quick
344 */
343 */
345 #header #header-inner #quick,#header #header-inner #quick ul {
344 #header #header-inner #quick,#header #header-inner #quick ul {
346 margin: 10px 5px 0 0;
345 margin: 10px 5px 0 0;
347 padding: 0;
346 padding: 0;
348 position: relative;
347 position: relative;
349 float: right;
348 float: right;
350 list-style-type: none;
349 list-style-type: none;
351 list-style-position: outside;
350 list-style-position: outside;
352 }
351 }
353
352
354 #header #header-inner #quick li {
353 #header #header-inner #quick li {
355 margin: 0 5px 0 0;
354 margin: 0 5px 0 0;
356 padding: 0;
355 padding: 0;
357 position: relative;
356 position: relative;
358 float: left;
357 float: left;
359 }
358 }
360
359
361 #header #header-inner #quick li a {
360 #header #header-inner #quick li a {
362 top: 0;
361 top: 0;
363 left: 0;
362 left: 0;
364 padding: 0;
363 padding: 0;
365 height: 1%;
364 height: 1%;
366 display: block;
365 display: block;
367 clear: both;
366 clear: both;
368 overflow: hidden;
367 overflow: hidden;
369 background: #336699 url("../../resources/images/quick_l.png") no-repeat
368 background: #336699 url("../../resources/images/quick_l.png") no-repeat
370 top left;
369 top left;
371 color: #FFFFFF;
370 color: #FFFFFF;
372 font-weight: bold;
371 font-weight: bold;
373 text-decoration: none;
372 text-decoration: none;
374 }
373 }
375
374
376 #header #header-inner #quick li span {
375 #header #header-inner #quick li span {
377 top: 0;
376 top: 0;
378 right: 0;
377 right: 0;
379 margin: 0;
378 margin: 0;
380 padding: 10px 12px 8px 10px;
379 padding: 10px 12px 8px 10px;
381 height: 1%;
380 height: 1%;
382 display: block;
381 display: block;
383 float: left;
382 float: left;
384 background: url("../../resources/images/quick_r.png") no-repeat top
383 background: url("../../resources/images/quick_r.png") no-repeat top
385 right;
384 right;
386 border-left: 1px solid #3f6f9f;
385 border-left: 1px solid #3f6f9f;
387 }
386 }
388
387
389 #header #header-inner #quick li span.normal {
388 #header #header-inner #quick li span.normal {
390 padding: 10px 12px 8px 12px;
389 padding: 10px 12px 8px 12px;
391 border: none;
390 border: none;
392 }
391 }
393
392
394 #header #header-inner #quick li span.icon {
393 #header #header-inner #quick li span.icon {
395 top: 0;
394 top: 0;
396 left: 0;
395 left: 0;
397 padding: 8px 8px 4px 8px;
396 padding: 8px 8px 4px 8px;
398 background: url("../../resources/images/quick_l.png") no-repeat top left;
397 background: url("../../resources/images/quick_l.png") no-repeat top left;
399 border-left: none;
398 border-left: none;
400 border-right: 1px solid #2e5c89;
399 border-right: 1px solid #2e5c89;
401 }
400 }
402
401
403 #header #header-inner #quick li a:hover {
402 #header #header-inner #quick li a:hover {
404 background: #4e4e4e url("../../resources/images/quick_l_selected.png")
403 background: #4e4e4e url("../../resources/images/quick_l_selected.png")
405 no-repeat top left;
404 no-repeat top left;
406 }
405 }
407
406
408 #header #header-inner #quick li a:hover span {
407 #header #header-inner #quick li a:hover span {
409 background: url("../../resources/images/quick_r_selected.png") no-repeat
408 background: url("../../resources/images/quick_r_selected.png") no-repeat
410 top right;
409 top right;
411 border-left: 1px solid #545454;
410 border-left: 1px solid #545454;
412 }
411 }
413
412
414 #header #header-inner #quick li a:hover span.normal {
413 #header #header-inner #quick li a:hover span.normal {
415 border: none;
414 border: none;
416 }
415 }
417
416
418 #header #header-inner #quick li a:hover span.icon {
417 #header #header-inner #quick li a:hover span.icon {
419 background: url("../../resources/images/quick_l_selected.png") no-repeat
418 background: url("../../resources/images/quick_l_selected.png") no-repeat
420 top left;
419 top left;
421 border-left: none;
420 border-left: none;
422 border-right: 1px solid #464646;
421 border-right: 1px solid #464646;
423 }
422 }
424
423
425 #header #header-inner #quick ul {
424 #header #header-inner #quick ul {
426 top: 29px;
425 top: 29px;
427 right: 0;
426 right: 0;
428 margin: 0;
427 margin: 0;
429 padding: 0;
428 padding: 0;
430 min-width: 200px;
429 min-width: 200px;
431 display: none;
430 display: none;
432 position: absolute;
431 position: absolute;
433 background: #FFFFFF;
432 background: #FFFFFF;
434 border: 1px solid #666;
433 border: 1px solid #666;
435 border-top: 1px solid #003367;
434 border-top: 1px solid #003367;
436 z-index: 100;
435 z-index: 100;
437 }
436 }
438
437
439 #header #header-inner #quick ul.repo_switcher {
438 #header #header-inner #quick ul.repo_switcher {
440 max-height: 275px;
439 max-height: 275px;
441 overflow-x: hidden;
440 overflow-x: hidden;
442 overflow-y: auto;
441 overflow-y: auto;
443 white-space: nowrap;
442 white-space: nowrap;
444 }
443 }
445
444
446 #header #header-inner #quick li ul li {
445 #header #header-inner #quick li ul li {
447 border-bottom: 1px solid #dddddd;
446 border-bottom: 1px solid #dddddd;
448 }
447 }
449
448
450 #header #header-inner #quick li ul li.last {
449 #header #header-inner #quick li ul li.last {
451 border: none;
450 border: none;
452 }
451 }
453
452
454 #header #header-inner #quick li ul li a {
453 #header #header-inner #quick li ul li a {
455 margin: 0;
454 margin: 0;
456 padding: 7px 9px 7px 9px;
455 padding: 7px 9px 7px 9px;
457 height: 1%;
456 height: 1%;
458 width: 182px;
457 width: 182px;
459 height: auto;
458 height: auto;
460 display: block;
459 display: block;
461 float: left;
460 float: left;
462 background: #FFFFFF;
461 background: #FFFFFF;
463 color: #003367;
462 color: #003367;
464 font-weight: normal;
463 font-weight: normal;
465 }
464 }
466
465
467 #header #header-inner #quick li ul li a.childs {
466 #header #header-inner #quick li ul li a.childs {
468 margin: 0;
467 margin: 0;
469 padding: 7px 9px 7px 24px;
468 padding: 7px 9px 7px 24px;
470 width: 167px;
469 width: 167px;
471 background: #FFFFFF url("../../resources/images/plus.png") no-repeat 8px
470 background: #FFFFFF url("../../resources/images/plus.png") no-repeat 8px
472 9px;
471 9px;
473 }
472 }
474
473
475 #header #header-inner #quick li ul li a:hover {
474 #header #header-inner #quick li ul li a:hover {
476 color: #000000;
475 color: #000000;
477 background: #FFFFFF;
476 background: #FFFFFF;
478 }
477 }
479
478
480 #header #header-inner #quick li ul li a.childs:hover {
479 #header #header-inner #quick li ul li a.childs:hover {
481 background: #FFFFFF url("../../resources/images/minus.png") no-repeat
480 background: #FFFFFF url("../../resources/images/minus.png") no-repeat
482 8px 9px;
481 8px 9px;
483 }
482 }
484
483
485 #header #header-inner #quick ul ul {
484 #header #header-inner #quick ul ul {
486 top: auto;
485 top: auto;
487 }
486 }
488
487
489 #header #header-inner #quick li ul ul {
488 #header #header-inner #quick li ul ul {
490 right: 200px;
489 right: 200px;
491 max-height: 275px;
490 max-height: 275px;
492 overflow: auto;
491 overflow: auto;
493 overflow-x: hidden;
492 overflow-x: hidden;
494 white-space: nowrap;
493 white-space: nowrap;
495 }
494 }
496
495
497 #header #header-inner #quick li:hover ul ul,#header #header-inner #quick li:hover ul ul ul,#header #header-inner #quick li:hover ul ul ul ul
496 #header #header-inner #quick li:hover ul ul,#header #header-inner #quick li:hover ul ul ul,#header #header-inner #quick li:hover ul ul ul ul
498 {
497 {
499 display: none;
498 display: none;
500 }
499 }
501
500
502 #header #header-inner #quick li:hover ul,#header #header-inner #quick li li:hover ul,#header #header-inner #quick li li li:hover ul,#header #header-inner #quick li li li li:hover ul
501 #header #header-inner #quick li:hover ul,#header #header-inner #quick li li:hover ul,#header #header-inner #quick li li li:hover ul,#header #header-inner #quick li li li li:hover ul
503 {
502 {
504 display: block;
503 display: block;
505 }
504 }
506
505
507 /*ICONS*/
506 /*ICONS*/
508 #header #header-inner #quick li ul li a.journal,#header #header-inner #quick li ul li a.journal:hover
507 #header #header-inner #quick li ul li a.journal,#header #header-inner #quick li ul li a.journal:hover
509 {
508 {
510 background: url("../images/icons/book.png") no-repeat scroll 4px 9px
509 background: url("../images/icons/book.png") no-repeat scroll 4px 9px
511 #FFFFFF;
510 #FFFFFF;
512 margin: 0;
511 margin: 0;
513 padding: 12px 9px 7px 24px;
512 padding: 12px 9px 7px 24px;
514 width: 167px;
513 width: 167px;
515 }
514 }
516
515
517 #header #header-inner #quick li ul li a.private_repo,#header #header-inner #quick li ul li a.private_repo:hover
516 #header #header-inner #quick li ul li a.private_repo,#header #header-inner #quick li ul li a.private_repo:hover
518 {
517 {
519 background: url("../images/icons/lock.png") no-repeat scroll 4px 9px
518 background: url("../images/icons/lock.png") no-repeat scroll 4px 9px
520 #FFFFFF;
519 #FFFFFF;
521 margin: 0;
520 margin: 0;
522 padding: 12px 9px 7px 24px;
521 padding: 12px 9px 7px 24px;
523 min-width: 167px;
522 min-width: 167px;
524 }
523 }
525
524
526 #header #header-inner #quick li ul li a.public_repo,#header #header-inner #quick li ul li a.public_repo:hover
525 #header #header-inner #quick li ul li a.public_repo,#header #header-inner #quick li ul li a.public_repo:hover
527 {
526 {
528 background: url("../images/icons/lock_open.png") no-repeat scroll 4px
527 background: url("../images/icons/lock_open.png") no-repeat scroll 4px
529 9px #FFFFFF;
528 9px #FFFFFF;
530 margin: 0;
529 margin: 0;
531 padding: 12px 9px 7px 24px;
530 padding: 12px 9px 7px 24px;
532 min-width: 167px;
531 min-width: 167px;
533 }
532 }
534
533
535 #header #header-inner #quick li ul li a.repos,#header #header-inner #quick li ul li a.repos:hover
534 #header #header-inner #quick li ul li a.repos,#header #header-inner #quick li ul li a.repos:hover
536 {
535 {
537 background: url("../images/icons/folder_edit.png") no-repeat scroll 4px
536 background: url("../images/icons/folder_edit.png") no-repeat scroll 4px
538 9px #FFFFFF;
537 9px #FFFFFF;
539 margin: 0;
538 margin: 0;
540 padding: 12px 9px 7px 24px;
539 padding: 12px 9px 7px 24px;
541 width: 167px;
540 width: 167px;
542 }
541 }
543
542
544 #header #header-inner #quick li ul li a.users,#header #header-inner #quick li ul li a.users:hover
543 #header #header-inner #quick li ul li a.users,#header #header-inner #quick li ul li a.users:hover
545 {
544 {
546 background: #FFFFFF url("../images/icons/user_edit.png") no-repeat 4px
545 background: #FFFFFF url("../images/icons/user_edit.png") no-repeat 4px
547 9px;
546 9px;
548 margin: 0;
547 margin: 0;
549 padding: 12px 9px 7px 24px;
548 padding: 12px 9px 7px 24px;
550 width: 167px;
549 width: 167px;
551 }
550 }
552
551
553 #header #header-inner #quick li ul li a.settings,#header #header-inner #quick li ul li a.settings:hover
552 #header #header-inner #quick li ul li a.settings,#header #header-inner #quick li ul li a.settings:hover
554 {
553 {
555 background: #FFFFFF url("../images/icons/cog.png") no-repeat 4px 9px;
554 background: #FFFFFF url("../images/icons/cog.png") no-repeat 4px 9px;
556 margin: 0;
555 margin: 0;
557 padding: 12px 9px 7px 24px;
556 padding: 12px 9px 7px 24px;
558 width: 167px;
557 width: 167px;
559 }
558 }
560
559
561 #header #header-inner #quick li ul li a.permissions,#header #header-inner #quick li ul li a.permissions:hover
560 #header #header-inner #quick li ul li a.permissions,#header #header-inner #quick li ul li a.permissions:hover
562 {
561 {
563 background: #FFFFFF url("../images/icons/key.png") no-repeat 4px 9px;
562 background: #FFFFFF url("../images/icons/key.png") no-repeat 4px 9px;
564 margin: 0;
563 margin: 0;
565 padding: 12px 9px 7px 24px;
564 padding: 12px 9px 7px 24px;
566 width: 167px;
565 width: 167px;
567 }
566 }
568
567
569 #header #header-inner #quick li ul li a.fork,#header #header-inner #quick li ul li a.fork:hover
568 #header #header-inner #quick li ul li a.fork,#header #header-inner #quick li ul li a.fork:hover
570 {
569 {
571 background: #FFFFFF url("../images/icons/arrow_divide.png") no-repeat
570 background: #FFFFFF url("../images/icons/arrow_divide.png") no-repeat
572 4px 9px;
571 4px 9px;
573 margin: 0;
572 margin: 0;
574 padding: 12px 9px 7px 24px;
573 padding: 12px 9px 7px 24px;
575 width: 167px;
574 width: 167px;
576 }
575 }
577
576
578 #header #header-inner #quick li ul li a.search,#header #header-inner #quick li ul li a.search:hover
577 #header #header-inner #quick li ul li a.search,#header #header-inner #quick li ul li a.search:hover
579 {
578 {
580 background: #FFFFFF url("../images/icons/search_16.png") no-repeat 4px
579 background: #FFFFFF url("../images/icons/search_16.png") no-repeat 4px
581 9px;
580 9px;
582 margin: 0;
581 margin: 0;
583 padding: 12px 9px 7px 24px;
582 padding: 12px 9px 7px 24px;
584 width: 167px;
583 width: 167px;
585 }
584 }
586
585
587 #header #header-inner #quick li ul li a.delete,#header #header-inner #quick li ul li a.delete:hover
586 #header #header-inner #quick li ul li a.delete,#header #header-inner #quick li ul li a.delete:hover
588 {
587 {
589 background: #FFFFFF url("../images/icons/delete.png") no-repeat 4px 9px;
588 background: #FFFFFF url("../images/icons/delete.png") no-repeat 4px 9px;
590 margin: 0;
589 margin: 0;
591 padding: 12px 9px 7px 24px;
590 padding: 12px 9px 7px 24px;
592 width: 167px;
591 width: 167px;
593 }
592 }
594
593
595 #header #header-inner #quick li ul li a.branches,#header #header-inner #quick li ul li a.branches:hover
594 #header #header-inner #quick li ul li a.branches,#header #header-inner #quick li ul li a.branches:hover
596 {
595 {
597 background: #FFFFFF url("../images/icons/arrow_branch.png") no-repeat
596 background: #FFFFFF url("../images/icons/arrow_branch.png") no-repeat
598 4px 9px;
597 4px 9px;
599 margin: 0;
598 margin: 0;
600 padding: 12px 9px 7px 24px;
599 padding: 12px 9px 7px 24px;
601 width: 167px;
600 width: 167px;
602 }
601 }
603
602
604 #header #header-inner #quick li ul li a.tags,#header #header-inner #quick li ul li a.tags:hover
603 #header #header-inner #quick li ul li a.tags,#header #header-inner #quick li ul li a.tags:hover
605 {
604 {
606 background: #FFFFFF url("../images/icons/tag_blue.png") no-repeat 4px
605 background: #FFFFFF url("../images/icons/tag_blue.png") no-repeat 4px
607 9px;
606 9px;
608 margin: 0;
607 margin: 0;
609 padding: 12px 9px 7px 24px;
608 padding: 12px 9px 7px 24px;
610 width: 167px;
609 width: 167px;
611 }
610 }
612
611
613 /*
612 /*
614 header corners
613 header corners
615 */
614 */
616 #header #header-inner div.corner {
615 #header #header-inner div.corner {
617 height: 6px;
616 height: 6px;
618 width: 6px;
617 width: 6px;
619 position: absolute;
618 position: absolute;
620 background: url("../images/header_inner_corners.png") no-repeat;
619 background: url("../images/header_inner_corners.png") no-repeat;
621 }
620 }
622
621
623 #header #header-inner div.tl {
622 #header #header-inner div.tl {
624 top: 0;
623 top: 0;
625 left: 0;
624 left: 0;
626 background-position: 0 0;
625 background-position: 0 0;
627 }
626 }
628
627
629 #header #header-inner div.tr {
628 #header #header-inner div.tr {
630 top: 0;
629 top: 0;
631 right: 0;
630 right: 0;
632 background-position: -6px 0;
631 background-position: -6px 0;
633 }
632 }
634
633
635 /*
634 /*
636 content / left
635 content / left
637 */
636 */
638 #content #left {
637 #content #left {
639 left: 0;
638 left: 0;
640 width: 280px;
639 width: 280px;
641 position: absolute;
640 position: absolute;
642 }
641 }
643
642
644 /*
643 /*
645 content / left / menu
644 content / left / menu
646 */
645 */
647 #content #left #menu {
646 #content #left #menu {
648 margin: 5px 10px 0 60px;
647 margin: 5px 10px 0 60px;
649 padding: 0;
648 padding: 0;
650 clear: both;
649 clear: both;
651 overflow: hidden;
650 overflow: hidden;
652 }
651 }
653
652
654 /*
653 /*
655 content / left / menu / heading
654 content / left / menu / heading
656 */
655 */
657 #content #left #menu h6 {
656 #content #left #menu h6 {
658 margin: 5px 0 0 0;
657 margin: 5px 0 0 0;
659 padding: 0;
658 padding: 0;
660 clear: both;
659 clear: both;
661 overflow: hidden;
660 overflow: hidden;
662 background: #dfdfdf url("../images/menu.png") repeat-x;
661 background: #dfdfdf url("../images/menu.png") repeat-x;
663 color: #6e6e6e;
662 color: #6e6e6e;
664 }
663 }
665
664
666 #content #left #menu h6 a {
665 #content #left #menu h6 a {
667 margin: 0;
666 margin: 0;
668 padding: 0;
667 padding: 0;
669 height: 1%;
668 height: 1%;
670 display: block;
669 display: block;
671 clear: both;
670 clear: both;
672 overflow: hidden;
671 overflow: hidden;
673 background: url("../images/menu_l.png") no-repeat top left;
672 background: url("../images/menu_l.png") no-repeat top left;
674 color: #6e6e6e;
673 color: #6e6e6e;
675 text-decoration: none;
674 text-decoration: none;
676 }
675 }
677
676
678 #content #left #menu h6 span {
677 #content #left #menu h6 span {
679 margin: 0;
678 margin: 0;
680 padding: 9px 10px 10px 10px;
679 padding: 9px 10px 10px 10px;
681 height: 1%;
680 height: 1%;
682 display: block;
681 display: block;
683 background: url("../images/menu_r.png") no-repeat top right;
682 background: url("../images/menu_r.png") no-repeat top right;
684 }
683 }
685
684
686 #content #left #menu h6.selected {
685 #content #left #menu h6.selected {
687 background: #00376e url("../images/menu_selected.png") repeat-x;
686 background: #00376e url("../images/menu_selected.png") repeat-x;
688 color: #FFFFFF;
687 color: #FFFFFF;
689 }
688 }
690
689
691 #content #left #menu h6.selected a {
690 #content #left #menu h6.selected a {
692 background: url("../images/menu_l_selected.png") no-repeat top left;
691 background: url("../images/menu_l_selected.png") no-repeat top left;
693 color: #ffffff;
692 color: #ffffff;
694 }
693 }
695
694
696 #content #left #menu h6.selected span {
695 #content #left #menu h6.selected span {
697 background: url("../images/menu_r_selected.png") no-repeat top right;
696 background: url("../images/menu_r_selected.png") no-repeat top right;
698 }
697 }
699
698
700 /*
699 /*
701 content / left / menu / links
700 content / left / menu / links
702 */
701 */
703 #content #left #menu ul {
702 #content #left #menu ul {
704 margin: 0;
703 margin: 0;
705 padding: 0;
704 padding: 0;
706 background: #376ea6;
705 background: #376ea6;
707 }
706 }
708
707
709 #content #left #menu ul.opened {
708 #content #left #menu ul.opened {
710 display: block;
709 display: block;
711 }
710 }
712
711
713 #content #left #menu ul.closed {
712 #content #left #menu ul.closed {
714 display: none;
713 display: none;
715 }
714 }
716
715
717 #content #left #menu li {
716 #content #left #menu li {
718 margin: 0;
717 margin: 0;
719 padding: 0;
718 padding: 0;
720 clear: both;
719 clear: both;
721 overflow: hidden;
720 overflow: hidden;
722 list-style: none;
721 list-style: none;
723 border-bottom: 1px solid #5f8bb7;
722 border-bottom: 1px solid #5f8bb7;
724 color: #ffffff;
723 color: #ffffff;
725 }
724 }
726
725
727 #content #left #menu li a {
726 #content #left #menu li a {
728 margin: 0 0 0 6px;
727 margin: 0 0 0 6px;
729 padding: 8px 0 8px 18px;
728 padding: 8px 0 8px 18px;
730 height: 1%;
729 height: 1%;
731 display: block;
730 display: block;
732 float: left;
731 float: left;
733 background: url("../images/colors/colors/blue/menu_arrow.png") no-repeat
732 background: url("../images/colors/colors/blue/menu_arrow.png") no-repeat
734 0 9px;
733 0 9px;
735 color: #ffffff;
734 color: #ffffff;
736 text-decoration: none;
735 text-decoration: none;
737 }
736 }
738
737
739 #content #left #menu li a:hover {
738 #content #left #menu li a:hover {
740 color: #b9dcff;
739 color: #b9dcff;
741 }
740 }
742
741
743 /*
742 /*
744 content / left / menu / collapsible
743 content / left / menu / collapsible
745 */
744 */
746 #content #left #menu li.collapsible {
745 #content #left #menu li.collapsible {
747 background: url("../images/menu_border.png") no-repeat top left;
746 background: url("../images/menu_border.png") no-repeat top left;
748 }
747 }
749
748
750 #content #left #menu li.collapsible a {
749 #content #left #menu li.collapsible a {
751 margin: 0 0 0 6px;
750 margin: 0 0 0 6px;
752 padding: 8px 0 8px 0;
751 padding: 8px 0 8px 0;
753 height: 1%;
752 height: 1%;
754 display: block;
753 display: block;
755 background: transparent;
754 background: transparent;
756 float: left;
755 float: left;
757 font-weight: bold;
756 font-weight: bold;
758 }
757 }
759
758
760 #content #left #menu li.collapsible a.plus {
759 #content #left #menu li.collapsible a.plus {
761 margin: 0;
760 margin: 0;
762 padding: 8px 0 9px 24px;
761 padding: 8px 0 9px 24px;
763 height: 10px;
762 height: 10px;
764 width: 10px;
763 width: 10px;
765 display: block;
764 display: block;
766 float: left;
765 float: left;
767 background: url("../images/menu_plus.png") no-repeat 5px 10px;
766 background: url("../images/menu_plus.png") no-repeat 5px 10px;
768 border: none;
767 border: none;
769 }
768 }
770
769
771 #content #left #menu li.collapsible a.minus {
770 #content #left #menu li.collapsible a.minus {
772 margin: 0;
771 margin: 0;
773 padding: 8px 0 9px 24px;
772 padding: 8px 0 9px 24px;
774 height: 10px;
773 height: 10px;
775 width: 10px;
774 width: 10px;
776 display: block;
775 display: block;
777 float: left;
776 float: left;
778 background: url("../images/menu_minus.png") no-repeat 5px 10px;
777 background: url("../images/menu_minus.png") no-repeat 5px 10px;
779 border: none;
778 border: none;
780 }
779 }
781
780
782 #content #left #menu li ul {
781 #content #left #menu li ul {
783 margin: 0;
782 margin: 0;
784 padding: 0;
783 padding: 0;
785 border-left: 18px solid #285889;
784 border-left: 18px solid #285889;
786 }
785 }
787
786
788 #content #left #menu li ul.expanded {
787 #content #left #menu li ul.expanded {
789 display: block;
788 display: block;
790 }
789 }
791
790
792 #content #left #menu li ul.collapsed {
791 #content #left #menu li ul.collapsed {
793 display: none;
792 display: none;
794 }
793 }
795
794
796 #content #left #menu li ul li {
795 #content #left #menu li ul li {
797 margin: 0;
796 margin: 0;
798 padding: 0;
797 padding: 0;
799 clear: both;
798 clear: both;
800 overflow: hidden;
799 overflow: hidden;
801 list-style: none;
800 list-style: none;
802 border-bottom: 1px solid #5f8bb7;
801 border-bottom: 1px solid #5f8bb7;
803 color: #ffffff;
802 color: #ffffff;
804 }
803 }
805
804
806 #content #left #menu li.collapsible ul li a {
805 #content #left #menu li.collapsible ul li a {
807 font-weight: normal;
806 font-weight: normal;
808 }
807 }
809
808
810 #content #left #menu li.last {
809 #content #left #menu li.last {
811 border-bottom: none;
810 border-bottom: none;
812 }
811 }
813
812
814 /*
813 /*
815 content / left / date picker
814 content / left / date picker
816 */
815 */
817 #content #left #date-picker {
816 #content #left #date-picker {
818 margin: 10px 10px 0 60px;
817 margin: 10px 10px 0 60px;
819 padding: 0;
818 padding: 0;
820 clear: both;
819 clear: both;
821 overflow: hidden;
820 overflow: hidden;
822 }
821 }
823
822
824 #content #left #date-picker .ui-datepicker {
823 #content #left #date-picker .ui-datepicker {
825 width: auto;
824 width: auto;
826 padding: 0;
825 padding: 0;
827 clear: both;
826 clear: both;
828 overflow: hidden;
827 overflow: hidden;
829 background: #FFFFFF;
828 background: #FFFFFF;
830 border: 1px solid #d1d1d1;
829 border: 1px solid #d1d1d1;
831 }
830 }
832
831
833 #content #left #date-picker .ui-datepicker .ui-datepicker-header {
832 #content #left #date-picker .ui-datepicker .ui-datepicker-header {
834 padding: 5px 0;
833 padding: 5px 0;
835 }
834 }
836
835
837 #content #left #date-picker .ui-datepicker .ui-datepicker-prev {
836 #content #left #date-picker .ui-datepicker .ui-datepicker-prev {
838 top: 5px;
837 top: 5px;
839 left: 4px;
838 left: 4px;
840 }
839 }
841
840
842 #content #left #date-picker .ui-datepicker .ui-datepicker-next {
841 #content #left #date-picker .ui-datepicker .ui-datepicker-next {
843 top: 5px;
842 top: 5px;
844 right: 4px;
843 right: 4px;
845 }
844 }
846
845
847 #content #left #date-picker .ui-datepicker .ui-datepicker-prev-hover {
846 #content #left #date-picker .ui-datepicker .ui-datepicker-prev-hover {
848 top: 5px;
847 top: 5px;
849 left: 4px;
848 left: 4px;
850 }
849 }
851
850
852 #content #left #date-picker .ui-datepicker .ui-datepicker-next-hover {
851 #content #left #date-picker .ui-datepicker .ui-datepicker-next-hover {
853 top: 5px;
852 top: 5px;
854 right: 4px;
853 right: 4px;
855 }
854 }
856
855
857 /*
856 /*
858 content / right
857 content / right
859 */
858 */
860 #content #right {
859 #content #right {
861 margin: 0 60px 10px 290px;
860 margin: 0 60px 10px 290px;
862 }
861 }
863
862
864 /*
863 /*
865 content / right / box
864 content / right / box
866 */
865 */
867 #content div.box {
866 #content div.box {
868 margin: 0 0 10px 0;
867 margin: 0 0 10px 0;
869 padding: 0 0 10px 0;
868 padding: 0 0 10px 0;
870 clear: both;
869 clear: both;
871 overflow: hidden;
870 overflow: hidden;
872 background: #ffffff;
871 background: #ffffff;
873 }
872 }
874
873
875 #content div.box-left {
874 #content div.box-left {
876 margin: 0 0 10px;
875 margin: 0 0 10px;
877 width: 49%;
876 width: 49%;
878 clear: none;
877 clear: none;
879 float: left;
878 float: left;
880 }
879 }
881
880
882 #content div.box-right {
881 #content div.box-right {
883 margin: 0 0 10px;
882 margin: 0 0 10px;
884 width: 49%;
883 width: 49%;
885 clear: none;
884 clear: none;
886 float: right;
885 float: right;
887 }
886 }
888
887
889 /*
888 /*
890 content / right / box / title
889 content / right / box / title
891 */
890 */
892 #content div.box div.title {
891 #content div.box div.title {
893 margin: 0 0 20px 0;
892 margin: 0 0 20px 0;
894 padding: 0;
893 padding: 0;
895 clear: both;
894 clear: both;
896 overflow: hidden;
895 overflow: hidden;
897 background: #336699 url("../images/header_inner.png") repeat-x;
896 background: #336699 url("../images/header_inner.png") repeat-x;
898 }
897 }
899
898
900 #content div.box div.title h5 {
899 #content div.box div.title h5 {
901 margin: 0;
900 margin: 0;
902 padding: 11px 0 11px 10px;
901 padding: 11px 0 11px 10px;
903 float: left;
902 float: left;
904 border: none;
903 border: none;
905 color: #ffffff;
904 color: #ffffff;
906 text-transform: uppercase;
905 text-transform: uppercase;
907 }
906 }
908
907
909 #content div.box div.title ul.links {
908 #content div.box div.title ul.links {
910 margin: 0;
909 margin: 0;
911 padding: 0;
910 padding: 0;
912 float: right;
911 float: right;
913 }
912 }
914
913
915 #content div.box div.title ul.links li {
914 #content div.box div.title ul.links li {
916 margin: 0;
915 margin: 0;
917 padding: 0;
916 padding: 0;
918 list-style: none;
917 list-style: none;
919 float: left;
918 float: left;
920 }
919 }
921
920
922 #content div.box div.title ul.links li a {
921 #content div.box div.title ul.links li a {
923 margin: 0;
922 margin: 0;
924 padding: 13px 16px 12px 16px;
923 padding: 13px 16px 12px 16px;
925 height: 1%;
924 height: 1%;
926 display: block;
925 display: block;
927 float: left;
926 float: left;
928 border-left: 1px solid #316293;
927 border-left: 1px solid #316293;
929 color: #ffffff;
928 color: #ffffff;
930 font-size: 11px;
929 font-size: 11px;
931 font-weight: bold;
930 font-weight: bold;
932 text-decoration: none;
931 text-decoration: none;
933 }
932 }
934
933
935 #content div.box div.title ul.links li a:hover {
934 #content div.box div.title ul.links li a:hover {
936 background: url("../../images/title_tab_selected.png") no-repeat bottom
935 background: url("../../images/title_tab_selected.png") no-repeat bottom
937 center;
936 center;
938 color: #bfe3ff;
937 color: #bfe3ff;
939 }
938 }
940
939
941 #content div.box div.title ul.links li.ui-tabs-selected a {
940 #content div.box div.title ul.links li.ui-tabs-selected a {
942 background: url("../../../resources/images/title_tab_selected.png")
941 background: url("../../../resources/images/title_tab_selected.png")
943 no-repeat bottom center;
942 no-repeat bottom center;
944 color: #bfe3ff;
943 color: #bfe3ff;
945 }
944 }
946
945
947 /*
946 /*
948 content / right / box / headings
947 content / right / box / headings
949 */
948 */
950 #content div.box h1,#content div.box h2,#content div.box h3,#content div.box h4,#content div.box h5,#content div.box h6
949 #content div.box h1,#content div.box h2,#content div.box h3,#content div.box h4,#content div.box h5,#content div.box h6
951 {
950 {
952 margin: 10px 20px 10px 20px;
951 margin: 10px 20px 10px 20px;
953 padding: 0 0 15px 0;
952 padding: 0 0 15px 0;
954 clear: both;
953 clear: both;
955 overflow: hidden;
954 overflow: hidden;
956 border-bottom: 1px solid #DDDDDD;
955 border-bottom: 1px solid #DDDDDD;
957 }
956 }
958
957
959 /*
958 /*
960 content / right / box / paragraphs
959 content / right / box / paragraphs
961 */
960 */
962 #content div.box p {
961 #content div.box p {
963 margin: 0 24px 10px 24px;
962 margin: 0 24px 10px 24px;
964 padding: 0;
963 padding: 0;
965 color: #5f5f5f;
964 color: #5f5f5f;
966 font-size: 12px;
965 font-size: 12px;
967 line-height: 150%;
966 line-height: 150%;
968 }
967 }
969
968
970 #content div.box blockquote {
969 #content div.box blockquote {
971 margin: 0 34px 0 34px;
970 margin: 0 34px 0 34px;
972 padding: 0 0 0 14px;
971 padding: 0 0 0 14px;
973 border-left: 4px solid #DDDDDD;
972 border-left: 4px solid #DDDDDD;
974 color: #5f5f5f;
973 color: #5f5f5f;
975 font-size: 11px;
974 font-size: 11px;
976 line-height: 150%;
975 line-height: 150%;
977 }
976 }
978
977
979 #content div.box blockquote p {
978 #content div.box blockquote p {
980 margin: 10px 0 10px 0;
979 margin: 10px 0 10px 0;
981 padding: 0;
980 padding: 0;
982 }
981 }
983
982
984 /*
983 /*
985 content / right / box / lists
984 content / right / box / lists
986 */
985 */
987 #content div.box dl {
986 #content div.box dl {
988 margin: 10px 24px 10px 24px;
987 margin: 10px 24px 10px 24px;
989 }
988 }
990
989
991 #content div.box dt {
990 #content div.box dt {
992 margin: 0;
991 margin: 0;
993 font-size: 12px;
992 font-size: 12px;
994 }
993 }
995
994
996 #content div.box dd {
995 #content div.box dd {
997 margin: 0;
996 margin: 0;
998 padding: 8px 0 8px 15px;
997 padding: 8px 0 8px 15px;
999 font-size: 12px;
998 font-size: 12px;
1000 }
999 }
1001
1000
1002 #content div.box ul.left {
1001 #content div.box ul.left {
1003 float: left;
1002 float: left;
1004 }
1003 }
1005
1004
1006 #content div.box ol.left {
1005 #content div.box ol.left {
1007 float: left;
1006 float: left;
1008 }
1007 }
1009
1008
1010 #content div.box li {
1009 #content div.box li {
1011 padding: 4px 0 4px 0;
1010 padding: 4px 0 4px 0;
1012 font-size: 12px;
1011 font-size: 12px;
1013 }
1012 }
1014
1013
1015 #content div.box ol.lower-roman,#content div.box ol.upper-roman {
1014 #content div.box ol.lower-roman,#content div.box ol.upper-roman {
1016 margin: 10px 24px 10px 44px;
1015 margin: 10px 24px 10px 44px;
1017 }
1016 }
1018
1017
1019 #content div.box ol.lower-alpha,#content div.box ol.upper-alpha {
1018 #content div.box ol.lower-alpha,#content div.box ol.upper-alpha {
1020 margin: 10px 24px 10px 44px;
1019 margin: 10px 24px 10px 44px;
1021 }
1020 }
1022
1021
1023 #content div.box ol.decimal {
1022 #content div.box ol.decimal {
1024 margin: 10px 24px 10px 44px;
1023 margin: 10px 24px 10px 44px;
1025 }
1024 }
1026
1025
1027 #content div.box ul.disc,#content div.box ul.circle {
1026 #content div.box ul.disc,#content div.box ul.circle {
1028 margin: 10px 24px 10px 38px;
1027 margin: 10px 24px 10px 38px;
1029 }
1028 }
1030
1029
1031 #content div.box ul.square {
1030 #content div.box ul.square {
1032 margin: 10px 24px 10px 40px;
1031 margin: 10px 24px 10px 40px;
1033 }
1032 }
1034
1033
1035 /*
1034 /*
1036 content / right / box / images
1035 content / right / box / images
1037 */
1036 */
1038 #content div.box img.left {
1037 #content div.box img.left {
1039 margin: 10px 10px 10px 0;
1038 margin: 10px 10px 10px 0;
1040 border: none;
1039 border: none;
1041 float: left;
1040 float: left;
1042 }
1041 }
1043
1042
1044 #content div.box img.right {
1043 #content div.box img.right {
1045 margin: 10px 0 10px 10px;
1044 margin: 10px 0 10px 10px;
1046 border: none;
1045 border: none;
1047 float: right;
1046 float: right;
1048 }
1047 }
1049
1048
1050 /*
1049 /*
1051 content / right / box / messages
1050 content / right / box / messages
1052 */
1051 */
1053 #content div.box div.messages {
1052 #content div.box div.messages {
1054 margin: 0 20px 0 20px;
1053 margin: 0 20px 0 20px;
1055 padding: 0;
1054 padding: 0;
1056 clear: both;
1055 clear: both;
1057 overflow: hidden;
1056 overflow: hidden;
1058 }
1057 }
1059
1058
1060 #content div.box div.message {
1059 #content div.box div.message {
1061 margin: 0 0 0px 0;
1060 margin: 0 0 0px 0;
1062 padding: 10px 0 10px 0;
1061 padding: 10px 0 10px 0;
1063 clear: both;
1062 clear: both;
1064 overflow: hidden;
1063 overflow: hidden;
1065 }
1064 }
1066 #content div.box div.message a{
1065 #content div.box div.message a{
1067 font-weight: normal !important;
1066 font-weight: normal !important;
1068 }
1067 }
1069 #content div.box div.message div.image {
1068 #content div.box div.message div.image {
1070 margin: 9px 0 0 5px;
1069 margin: 9px 0 0 5px;
1071 padding: 6px;
1070 padding: 6px;
1072 float: left;
1071 float: left;
1073 }
1072 }
1074
1073
1075 #content div.box div.message div.image img {
1074 #content div.box div.message div.image img {
1076 margin: 0;
1075 margin: 0;
1077 vertical-align: middle;
1076 vertical-align: middle;
1078 }
1077 }
1079
1078
1080 #content div.box div.message div.text {
1079 #content div.box div.message div.text {
1081 margin: 0;
1080 margin: 0;
1082 padding: 9px 6px 9px 6px;
1081 padding: 9px 6px 9px 6px;
1083 float: left;
1082 float: left;
1084 }
1083 }
1085
1084
1086 #content div.box div.message div.dismiss {
1085 #content div.box div.message div.dismiss {
1087 margin: 0;
1086 margin: 0;
1088 padding: 0;
1087 padding: 0;
1089 float: right;
1088 float: right;
1090 }
1089 }
1091
1090
1092 #content div.box div.message div.dismiss a {
1091 #content div.box div.message div.dismiss a {
1093 margin: 15px 14px 0 0;
1092 margin: 15px 14px 0 0;
1094 padding: 0;
1093 padding: 0;
1095 height: 16px;
1094 height: 16px;
1096 width: 16px;
1095 width: 16px;
1097 display: block;
1096 display: block;
1098 background: url("../images/icons/cross.png") no-repeat;
1097 background: url("../images/icons/cross.png") no-repeat;
1099 }
1098 }
1100
1099
1101 #content div.box div.message div.text h1,#content div.box div.message div.text h2,#content div.box div.message div.text h3,#content div.box div.message div.text h4,#content div.box div.message div.text h5,#content div.box div.message div.text h6
1100 #content div.box div.message div.text h1,#content div.box div.message div.text h2,#content div.box div.message div.text h3,#content div.box div.message div.text h4,#content div.box div.message div.text h5,#content div.box div.message div.text h6
1102 {
1101 {
1103 margin: 0;
1102 margin: 0;
1104 padding: 0px;
1103 padding: 0px;
1105 border: none;
1104 border: none;
1106 }
1105 }
1107
1106
1108 #content div.box div.message div.text span {
1107 #content div.box div.message div.text span {
1109 margin: 0;
1108 margin: 0;
1110 padding: 5px 0 0 0;
1109 padding: 5px 0 0 0;
1111 height: 1%;
1110 height: 1%;
1112 display: block;
1111 display: block;
1113 }
1112 }
1114
1113
1115 #content div.box div.message-error {
1114 #content div.box div.message-error {
1116 height: 1%;
1115 height: 1%;
1117 clear: both;
1116 clear: both;
1118 overflow: hidden;
1117 overflow: hidden;
1119 background: #FBE3E4;
1118 background: #FBE3E4;
1120 border: 1px solid #FBC2C4;
1119 border: 1px solid #FBC2C4;
1121 color: #860006;
1120 color: #860006;
1122 }
1121 }
1123
1122
1124 #content div.box div.message-error h6 {
1123 #content div.box div.message-error h6 {
1125 color: #860006;
1124 color: #860006;
1126 }
1125 }
1127
1126
1128 #content div.box div.message-warning {
1127 #content div.box div.message-warning {
1129 height: 1%;
1128 height: 1%;
1130 clear: both;
1129 clear: both;
1131 overflow: hidden;
1130 overflow: hidden;
1132 background: #FFF6BF;
1131 background: #FFF6BF;
1133 border: 1px solid #FFD324;
1132 border: 1px solid #FFD324;
1134 color: #5f5200;
1133 color: #5f5200;
1135 }
1134 }
1136
1135
1137 #content div.box div.message-warning h6 {
1136 #content div.box div.message-warning h6 {
1138 color: #5f5200;
1137 color: #5f5200;
1139 }
1138 }
1140
1139
1141 #content div.box div.message-notice {
1140 #content div.box div.message-notice {
1142 height: 1%;
1141 height: 1%;
1143 clear: both;
1142 clear: both;
1144 overflow: hidden;
1143 overflow: hidden;
1145 background: #8FBDE0;
1144 background: #8FBDE0;
1146 border: 1px solid #6BACDE;
1145 border: 1px solid #6BACDE;
1147 color: #003863;
1146 color: #003863;
1148 }
1147 }
1149
1148
1150 #content div.box div.message-notice h6 {
1149 #content div.box div.message-notice h6 {
1151 color: #003863;
1150 color: #003863;
1152 }
1151 }
1153
1152
1154 #content div.box div.message-success {
1153 #content div.box div.message-success {
1155 height: 1%;
1154 height: 1%;
1156 clear: both;
1155 clear: both;
1157 overflow: hidden;
1156 overflow: hidden;
1158 background: #E6EFC2;
1157 background: #E6EFC2;
1159 border: 1px solid #C6D880;
1158 border: 1px solid #C6D880;
1160 color: #4e6100;
1159 color: #4e6100;
1161 }
1160 }
1162
1161
1163 #content div.box div.message-success h6 {
1162 #content div.box div.message-success h6 {
1164 color: #4e6100;
1163 color: #4e6100;
1165 }
1164 }
1166
1165
1167 /*
1166 /*
1168 content / right / box / forms
1167 content / right / box / forms
1169 */
1168 */
1170 #content div.box div.form {
1169 #content div.box div.form {
1171 margin: 0;
1170 margin: 0;
1172 padding: 0 20px 10px 20px;
1171 padding: 0 20px 10px 20px;
1173 clear: both;
1172 clear: both;
1174 overflow: hidden;
1173 overflow: hidden;
1175 }
1174 }
1176
1175
1177 #content div.box div.form div.fields {
1176 #content div.box div.form div.fields {
1178 margin: 0;
1177 margin: 0;
1179 padding: 0;
1178 padding: 0;
1180 clear: both;
1179 clear: both;
1181 overflow: hidden;
1180 overflow: hidden;
1182 }
1181 }
1183
1182
1184 #content div.box div.form div.fields div.field {
1183 #content div.box div.form div.fields div.field {
1185 margin: 0;
1184 margin: 0;
1186 padding: 10px 0 10px 0;
1185 padding: 10px 0 10px 0;
1187 height: 1%;
1186 height: 1%;
1188 border-bottom: 1px solid #DDDDDD;
1187 border-bottom: 1px solid #DDDDDD;
1189 clear: both;
1188 clear: both;
1190 }
1189 }
1191
1190
1192 #content div.box div.form div.fields div.field-first {
1191 #content div.box div.form div.fields div.field-first {
1193 padding: 0 0 10px 0;
1192 padding: 0 0 10px 0;
1194 }
1193 }
1195
1194
1196 #content div.box div.form div.fields div.field-noborder {
1195 #content div.box div.form div.fields div.field-noborder {
1197 border-bottom: 0px !important;
1196 border-bottom: 0px !important;
1198 }
1197 }
1199
1198
1200 #content div.box div.form div.fields div.field span.error-message {
1199 #content div.box div.form div.fields div.field span.error-message {
1201 margin: 8px 0px 0px 4px;
1200 margin: 8px 0px 0px 4px;
1202 padding: 0;
1201 padding: 0;
1203 height: 1%;
1202 height: 1%;
1204 display: inline-block;
1203 display: inline-block;
1205 color: #FF0000;
1204 color: #FF0000;
1206 }
1205 }
1207
1206
1208 #content div.box div.form div.fields div.field span.success {
1207 #content div.box div.form div.fields div.field span.success {
1209 margin: 8px 0 0 0;
1208 margin: 8px 0 0 0;
1210 padding: 0;
1209 padding: 0;
1211 height: 1%;
1210 height: 1%;
1212 display: block;
1211 display: block;
1213 color: #316309;
1212 color: #316309;
1214 }
1213 }
1215
1214
1216 /*
1215 /*
1217 content / right / forms / labels
1216 content / right / forms / labels
1218 */
1217 */
1219 #content div.box div.form div.fields div.field div.label {
1218 #content div.box div.form div.fields div.field div.label {
1220 left: 310px;
1219 left: 310px;
1221 margin: 0;
1220 margin: 0;
1222 padding: 8px 0 0 5px;
1221 padding: 8px 0 0 5px;
1223 width: auto;
1222 width: auto;
1224 position: absolute;
1223 position: absolute;
1225 }
1224 }
1226
1225
1227 #content div.box-left div.form div.fields div.field div.label,#content div.box-right div.form div.fields div.field div.label
1226 #content div.box-left div.form div.fields div.field div.label,#content div.box-right div.form div.fields div.field div.label
1228 {
1227 {
1229 left: 0;
1228 left: 0;
1230 margin: 0;
1229 margin: 0;
1231 padding: 0 0 8px 0;
1230 padding: 0 0 8px 0;
1232 width: auto;
1231 width: auto;
1233 position: relative;
1232 position: relative;
1234 clear: both;
1233 clear: both;
1235 overflow: hidden;
1234 overflow: hidden;
1236 }
1235 }
1237
1236
1238 /*
1237 /*
1239 content / right / forms / label (select)
1238 content / right / forms / label (select)
1240 */
1239 */
1241 #content div.box div.form div.fields div.field div.label-select {
1240 #content div.box div.form div.fields div.field div.label-select {
1242 padding: 2px 0 0 5px;
1241 padding: 2px 0 0 5px;
1243 }
1242 }
1244
1243
1245 #content div.box-left div.form div.fields div.field div.label-select,#content div.box-right div.form div.fields div.field div.label-select
1244 #content div.box-left div.form div.fields div.field div.label-select,#content div.box-right div.form div.fields div.field div.label-select
1246 {
1245 {
1247 padding: 0 0 8px 0;
1246 padding: 0 0 8px 0;
1248 }
1247 }
1249
1248
1250 /*
1249 /*
1251 content / right / forms / label (checkbox)
1250 content / right / forms / label (checkbox)
1252 */
1251 */
1253 #content div.box div.form div.fields div.field div.label-checkbox {
1252 #content div.box div.form div.fields div.field div.label-checkbox {
1254 padding: 0 0 0 5px !important;
1253 padding: 0 0 0 5px !important;
1255 }
1254 }
1256
1255
1257 /*
1256 /*
1258 content / right / forms / label (radio)
1257 content / right / forms / label (radio)
1259 */
1258 */
1260 #content div.box div.form div.fields div.field div.label-radio {
1259 #content div.box div.form div.fields div.field div.label-radio {
1261 padding: 0 0 0 5px !important;
1260 padding: 0 0 0 5px !important;
1262 }
1261 }
1263
1262
1264 /*
1263 /*
1265 content / right / forms / label (textarea)
1264 content / right / forms / label (textarea)
1266 */
1265 */
1267 #content div.box div.form div.fields div.field div.label-textarea {
1266 #content div.box div.form div.fields div.field div.label-textarea {
1268 padding: 0 0 0 5px !important;
1267 padding: 0 0 0 5px !important;
1269 }
1268 }
1270
1269
1271 #content div.box-left div.form div.fields div.field div.label-textarea,#content div.box-right div.form div.fields div.field div.label-textarea
1270 #content div.box-left div.form div.fields div.field div.label-textarea,#content div.box-right div.form div.fields div.field div.label-textarea
1272 {
1271 {
1273 padding: 0 0 8px 0 !important;
1272 padding: 0 0 8px 0 !important;
1274 }
1273 }
1275
1274
1276 /*
1275 /*
1277 content / right / forms / labels (label)
1276 content / right / forms / labels (label)
1278 */
1277 */
1279 #content div.box div.form div.fields div.field div.label label {
1278 #content div.box div.form div.fields div.field div.label label {
1280 color: #393939;
1279 color: #393939;
1281 font-weight: bold;
1280 font-weight: bold;
1282 }
1281 }
1283
1282
1284 #content div.box div.form div.fields div.field div.label span {
1283 #content div.box div.form div.fields div.field div.label span {
1285 margin: 0;
1284 margin: 0;
1286 padding: 2px 0 0 0;
1285 padding: 2px 0 0 0;
1287 height: 1%;
1286 height: 1%;
1288 display: block;
1287 display: block;
1289 color: #363636;
1288 color: #363636;
1290 }
1289 }
1291
1290
1292 /*
1291 /*
1293 content / right / forms / input
1292 content / right / forms / input
1294 */
1293 */
1295 #content div.box div.form div.fields div.field div.input {
1294 #content div.box div.form div.fields div.field div.input {
1296 margin: 0 0 0 200px;
1295 margin: 0 0 0 200px;
1297 }
1296 }
1298
1297
1299 #content div.box-left div.form div.fields div.field div.input,#content div.box-right div.form div.fields div.field div.input
1298 #content div.box-left div.form div.fields div.field div.input,#content div.box-right div.form div.fields div.field div.input
1300 {
1299 {
1301 margin: 0;
1300 margin: 0;
1302 padding: 7px 7px 6px 7px;
1301 padding: 7px 7px 6px 7px;
1303 clear: both;
1302 clear: both;
1304 overflow: hidden;
1303 overflow: hidden;
1305 border-top: 1px solid #b3b3b3;
1304 border-top: 1px solid #b3b3b3;
1306 border-left: 1px solid #b3b3b3;
1305 border-left: 1px solid #b3b3b3;
1307 border-right: 1px solid #eaeaea;
1306 border-right: 1px solid #eaeaea;
1308 border-bottom: 1px solid #eaeaea;
1307 border-bottom: 1px solid #eaeaea;
1309 }
1308 }
1310
1309
1311 #content div.box div.form div.fields div.field div.input input {
1310 #content div.box div.form div.fields div.field div.input input {
1312 margin: 0;
1311 margin: 0;
1313 padding: 7px 7px 6px 7px;
1312 padding: 7px 7px 6px 7px;
1314 background: #FFFFFF;
1313 background: #FFFFFF;
1315 border-top: 1px solid #b3b3b3;
1314 border-top: 1px solid #b3b3b3;
1316 border-left: 1px solid #b3b3b3;
1315 border-left: 1px solid #b3b3b3;
1317 border-right: 1px solid #eaeaea;
1316 border-right: 1px solid #eaeaea;
1318 border-bottom: 1px solid #eaeaea;
1317 border-bottom: 1px solid #eaeaea;
1319 color: #000000;
1318 color: #000000;
1320 font-family: Lucida Grande, Verdana, Lucida Sans Regular,
1319 font-family: Lucida Grande, Verdana, Lucida Sans Regular,
1321 Lucida Sans Unicode, Arial, sans-serif;
1320 Lucida Sans Unicode, Arial, sans-serif;
1322 font-size: 11px;
1321 font-size: 11px;
1323 }
1322 }
1324
1323
1325 #content div.box-left div.form div.fields div.field div.input input,#content div.box-right div.form div.fields div.field div.input input
1324 #content div.box-left div.form div.fields div.field div.input input,#content div.box-right div.form div.fields div.field div.input input
1326 {
1325 {
1327 width: 100%;
1326 width: 100%;
1328 padding: 0;
1327 padding: 0;
1329 border: none;
1328 border: none;
1330 }
1329 }
1331
1330
1332 #content div.box div.form div.fields div.field div.input input.small {
1331 #content div.box div.form div.fields div.field div.input input.small {
1333 width: 30%;
1332 width: 30%;
1334 }
1333 }
1335
1334
1336 #content div.box div.form div.fields div.field div.input input.medium {
1335 #content div.box div.form div.fields div.field div.input input.medium {
1337 width: 55%;
1336 width: 55%;
1338 }
1337 }
1339
1338
1340 #content div.box div.form div.fields div.field div.input input.large {
1339 #content div.box div.form div.fields div.field div.input input.large {
1341 width: 85%;
1340 width: 85%;
1342 }
1341 }
1343
1342
1344 #content div.box div.form div.fields div.field div.input input.date {
1343 #content div.box div.form div.fields div.field div.input input.date {
1345 width: 177px;
1344 width: 177px;
1346 }
1345 }
1347
1346
1348 #content div.box div.form div.fields div.field div.input input.button {
1347 #content div.box div.form div.fields div.field div.input input.button {
1349 margin: 0;
1348 margin: 0;
1350 padding: 4px 8px 4px 8px;
1349 padding: 4px 8px 4px 8px;
1351 background: #D4D0C8;
1350 background: #D4D0C8;
1352 border-top: 1px solid #FFFFFF;
1351 border-top: 1px solid #FFFFFF;
1353 border-left: 1px solid #FFFFFF;
1352 border-left: 1px solid #FFFFFF;
1354 border-right: 1px solid #404040;
1353 border-right: 1px solid #404040;
1355 border-bottom: 1px solid #404040;
1354 border-bottom: 1px solid #404040;
1356 color: #000000;
1355 color: #000000;
1357 }
1356 }
1358
1357
1359 #content div.box div.form div.fields div.field div.input input.error {
1358 #content div.box div.form div.fields div.field div.input input.error {
1360 background: #FBE3E4;
1359 background: #FBE3E4;
1361 border-top: 1px solid #e1b2b3;
1360 border-top: 1px solid #e1b2b3;
1362 border-left: 1px solid #e1b2b3;
1361 border-left: 1px solid #e1b2b3;
1363 border-right: 1px solid #FBC2C4;
1362 border-right: 1px solid #FBC2C4;
1364 border-bottom: 1px solid #FBC2C4;
1363 border-bottom: 1px solid #FBC2C4;
1365 }
1364 }
1366
1365
1367 #content div.box div.form div.fields div.field div.input input.success {
1366 #content div.box div.form div.fields div.field div.input input.success {
1368 background: #E6EFC2;
1367 background: #E6EFC2;
1369 border-top: 1px solid #cebb98;
1368 border-top: 1px solid #cebb98;
1370 border-left: 1px solid #cebb98;
1369 border-left: 1px solid #cebb98;
1371 border-right: 1px solid #c6d880;
1370 border-right: 1px solid #c6d880;
1372 border-bottom: 1px solid #c6d880;
1371 border-bottom: 1px solid #c6d880;
1373 }
1372 }
1374
1373
1375 #content div.box div.form div.fields div.field div.input img.ui-datepicker-trigger
1374 #content div.box div.form div.fields div.field div.input img.ui-datepicker-trigger
1376 {
1375 {
1377 margin: 0 0 0 6px;
1376 margin: 0 0 0 6px;
1378 }
1377 }
1379
1378
1380 /*
1379 /*
1381 content / right / forms / input (file styling)
1380 content / right / forms / input (file styling)
1382 */
1381 */
1383 #content div.box div.form div.fields div.field div.input a.ui-input-file
1382 #content div.box div.form div.fields div.field div.input a.ui-input-file
1384 {
1383 {
1385 margin: 0 0 0 6px;
1384 margin: 0 0 0 6px;
1386 padding: 0;
1385 padding: 0;
1387 width: 28px;
1386 width: 28px;
1388 height: 28px;
1387 height: 28px;
1389 display: inline;
1388 display: inline;
1390 position: absolute;
1389 position: absolute;
1391 overflow: hidden;
1390 overflow: hidden;
1392 cursor: pointer;
1391 cursor: pointer;
1393 background: #e5e3e3 url("../images/button_browse.png") no-repeat;
1392 background: #e5e3e3 url("../images/button_browse.png") no-repeat;
1394 border: none;
1393 border: none;
1395 text-decoration: none;
1394 text-decoration: none;
1396 }
1395 }
1397
1396
1398 #content div.box div.form div.fields div.field div.input a:hover.ui-input-file
1397 #content div.box div.form div.fields div.field div.input a:hover.ui-input-file
1399 {
1398 {
1400 background: #e5e3e3 url("../images/button_browse_selected.png")
1399 background: #e5e3e3 url("../images/button_browse_selected.png")
1401 no-repeat;
1400 no-repeat;
1402 }
1401 }
1403
1402
1404 /*
1403 /*
1405 content / right / forms / textarea
1404 content / right / forms / textarea
1406 */
1405 */
1407 #content div.box div.form div.fields div.field div.textarea {
1406 #content div.box div.form div.fields div.field div.textarea {
1408 margin: 0 0 0 200px;
1407 margin: 0 0 0 200px;
1409 padding: 10px;
1408 padding: 10px;
1410 border-top: 1px solid #b3b3b3;
1409 border-top: 1px solid #b3b3b3;
1411 border-left: 1px solid #b3b3b3;
1410 border-left: 1px solid #b3b3b3;
1412 border-right: 1px solid #eaeaea;
1411 border-right: 1px solid #eaeaea;
1413 border-bottom: 1px solid #eaeaea;
1412 border-bottom: 1px solid #eaeaea;
1414 }
1413 }
1415
1414
1416 #content div.box div.form div.fields div.field div.textarea-editor {
1415 #content div.box div.form div.fields div.field div.textarea-editor {
1417 padding: 0;
1416 padding: 0;
1418 border: 1px solid #dddddd;
1417 border: 1px solid #dddddd;
1419 }
1418 }
1420
1419
1421 #content div.box-left div.form div.fields div.field div.textarea,#content div.box-right div.form div.fields div.field div.textarea
1420 #content div.box-left div.form div.fields div.field div.textarea,#content div.box-right div.form div.fields div.field div.textarea
1422 {
1421 {
1423 margin: 0;
1422 margin: 0;
1424 }
1423 }
1425
1424
1426 #content div.box div.form div.fields div.field div.textarea textarea {
1425 #content div.box div.form div.fields div.field div.textarea textarea {
1427 margin: 0;
1426 margin: 0;
1428 padding: 0;
1427 padding: 0;
1429 width: 100%;
1428 width: 100%;
1430 height: 220px;
1429 height: 220px;
1431 overflow: hidden;
1430 overflow: hidden;
1432 background: #FFFFFF;
1431 background: #FFFFFF;
1433 border-width: 0;
1432 border-width: 0;
1434 color: #000000;
1433 color: #000000;
1435 font-family: Lucida Grande, Verdana, Lucida Sans Regular,
1434 font-family: Lucida Grande, Verdana, Lucida Sans Regular,
1436 Lucida Sans Unicode, Arial, sans-serif;
1435 Lucida Sans Unicode, Arial, sans-serif;
1437 font-size: 11px;
1436 font-size: 11px;
1438 outline: none;
1437 outline: none;
1439 }
1438 }
1440
1439
1441 #content div.box-left div.form div.fields div.field div.textarea textarea,#content div.box-right div.form div.fields div.field div.textarea textarea
1440 #content div.box-left div.form div.fields div.field div.textarea textarea,#content div.box-right div.form div.fields div.field div.textarea textarea
1442 {
1441 {
1443 width: 100%;
1442 width: 100%;
1444 height: 100px;
1443 height: 100px;
1445 }
1444 }
1446
1445
1447 #content div.box div.form div.fields div.field div.textarea textarea.error
1446 #content div.box div.form div.fields div.field div.textarea textarea.error
1448 {
1447 {
1449 padding: 3px 10px 10px 23px;
1448 padding: 3px 10px 10px 23px;
1450 background-color: #FBE3E4;
1449 background-color: #FBE3E4;
1451 background-image: url("../../../resources/images/icons/exclamation.png");
1450 background-image: url("../../../resources/images/icons/exclamation.png");
1452 background-repeat: no-repeat;
1451 background-repeat: no-repeat;
1453 background-position: 3px 3px;
1452 background-position: 3px 3px;
1454 border: 1px solid #FBC2C4;
1453 border: 1px solid #FBC2C4;
1455 }
1454 }
1456
1455
1457 #content div.box div.form div.fields div.field div.textarea textarea.success
1456 #content div.box div.form div.fields div.field div.textarea textarea.success
1458 {
1457 {
1459 padding: 3px 10px 10px 23px;
1458 padding: 3px 10px 10px 23px;
1460 background-color: #E6EFC2;
1459 background-color: #E6EFC2;
1461 background-image: url("../../../resources/images/icons/accept.png");
1460 background-image: url("../../../resources/images/icons/accept.png");
1462 background-repeat: no-repeat;
1461 background-repeat: no-repeat;
1463 background-position: 3px 3px;
1462 background-position: 3px 3px;
1464 border: 1px solid #C6D880;
1463 border: 1px solid #C6D880;
1465 }
1464 }
1466
1465
1467 /*
1466 /*
1468 content / right / forms / textarea (tinymce editor)
1467 content / right / forms / textarea (tinymce editor)
1469 */
1468 */
1470 #content div.box div.form div.fields div.field div.textarea table {
1469 #content div.box div.form div.fields div.field div.textarea table {
1471 margin: 0;
1470 margin: 0;
1472 padding: 0;
1471 padding: 0;
1473 width: 100%;
1472 width: 100%;
1474 border: none;
1473 border: none;
1475 }
1474 }
1476
1475
1477 #content div.box div.form div.fields div.field div.textarea table td {
1476 #content div.box div.form div.fields div.field div.textarea table td {
1478 padding: 0;
1477 padding: 0;
1479 background: #DDDDDD;
1478 background: #DDDDDD;
1480 border: none;
1479 border: none;
1481 }
1480 }
1482
1481
1483 #content div.box div.form div.fields div.field div.textarea table td table
1482 #content div.box div.form div.fields div.field div.textarea table td table
1484 {
1483 {
1485 margin: 0;
1484 margin: 0;
1486 padding: 0;
1485 padding: 0;
1487 width: auto;
1486 width: auto;
1488 border: none;
1487 border: none;
1489 }
1488 }
1490
1489
1491 #content div.box div.form div.fields div.field div.textarea table td table td
1490 #content div.box div.form div.fields div.field div.textarea table td table td
1492 {
1491 {
1493 padding: 5px 5px 5px 0;
1492 padding: 5px 5px 5px 0;
1494 font-family: Lucida Grande, Verdana, Lucida Sans Regular,
1493 font-family: Lucida Grande, Verdana, Lucida Sans Regular,
1495 Lucida Sans Unicode, Arial, sans-serif;
1494 Lucida Sans Unicode, Arial, sans-serif;
1496 font-size: 11px;
1495 font-size: 11px;
1497 }
1496 }
1498
1497
1499 #content div.box div.form div.fields div.field div.textarea table td table td a
1498 #content div.box div.form div.fields div.field div.textarea table td table td a
1500 {
1499 {
1501 border: none;
1500 border: none;
1502 }
1501 }
1503
1502
1504 #content div.box div.form div.fields div.field div.textarea table td table td a.mceButtonActive
1503 #content div.box div.form div.fields div.field div.textarea table td table td a.mceButtonActive
1505 {
1504 {
1506 background: #b1b1b1;
1505 background: #b1b1b1;
1507 }
1506 }
1508
1507
1509 /*
1508 /*
1510 content / right / forms / select
1509 content / right / forms / select
1511 */
1510 */
1512 #content div.box div.form div.fields div.field div.select {
1511 #content div.box div.form div.fields div.field div.select {
1513 margin: 0 0 0 200px;
1512 margin: 0 0 0 200px;
1514 padding: 0;
1513 padding: 0;
1515 }
1514 }
1516
1515
1517 #content div.box div.form div.fields div.field div.select a:hover {
1516 #content div.box div.form div.fields div.field div.select a:hover {
1518 color: #000000;
1517 color: #000000;
1519 text-decoration: none;
1518 text-decoration: none;
1520 }
1519 }
1521
1520
1522 #content div.box div.form div.fields div.field div.select select {
1521 #content div.box div.form div.fields div.field div.select select {
1523 margin: 0;
1522 margin: 0;
1524 }
1523 }
1525
1524
1526 /*
1525 /*
1527 content / right / forms / select (jquery styling)
1526 content / right / forms / select (jquery styling)
1528 */
1527 */
1529 #content div.box div.form div.fields div.field div.select a.ui-selectmenu-focus
1528 #content div.box div.form div.fields div.field div.select a.ui-selectmenu-focus
1530 {
1529 {
1531 border: 1px solid #666666;
1530 border: 1px solid #666666;
1532 }
1531 }
1533
1532
1534 #content div.box div.form div.fields div.field div.select a.ui-selectmenu
1533 #content div.box div.form div.fields div.field div.select a.ui-selectmenu
1535 {
1534 {
1536 color: #565656;
1535 color: #565656;
1537 text-decoration: none;
1536 text-decoration: none;
1538 }
1537 }
1539
1538
1540 #content div.box div.form div.fields div.field div.select a.ui-selectmenu:hover
1539 #content div.box div.form div.fields div.field div.select a.ui-selectmenu:hover
1541 {
1540 {
1542 color: #000000;
1541 color: #000000;
1543 text-decoration: none;
1542 text-decoration: none;
1544 }
1543 }
1545
1544
1546 #content div.box div.form div.fields div.field div.select a.ui-selectmenu-focus span.ui-icon
1545 #content div.box div.form div.fields div.field div.select a.ui-selectmenu-focus span.ui-icon
1547 {
1546 {
1548 background-image: url(../images/ui/ui-icons_222222_256x240.png);
1547 background-image: url(../images/ui/ui-icons_222222_256x240.png);
1549 }
1548 }
1550
1549
1551 /*
1550 /*
1552 content / right / forms / element focus
1551 content / right / forms / element focus
1553 */
1552 */
1554 #content div.box div.form div.fields div.field input[type=text]:focus,#content div.box div.form div.fields div.field input[type=password]:focus,#content div.box div.form div.fields div.field input[type=file]:focus,#content div.box div.form div.fields div.field textarea:focus,#content div.box div.form div.fields div.field select:focus
1553 #content div.box div.form div.fields div.field input[type=text]:focus,#content div.box div.form div.fields div.field input[type=password]:focus,#content div.box div.form div.fields div.field input[type=file]:focus,#content div.box div.form div.fields div.field textarea:focus,#content div.box div.form div.fields div.field select:focus
1555 {
1554 {
1556 background: #f6f6f6;
1555 background: #f6f6f6;
1557 border-color: #666;
1556 border-color: #666;
1558 }
1557 }
1559
1558
1560 /*
1559 /*
1561 content / right / forms / checkboxes
1560 content / right / forms / checkboxes
1562 */
1561 */
1563 #content div.box div.form div.fields div.field div.checkboxes {
1562 #content div.box div.form div.fields div.field div.checkboxes {
1564 margin: 0 0 0 200px;
1563 margin: 0 0 0 200px;
1565 padding: 0;
1564 padding: 0;
1566 }
1565 }
1567
1566
1568 #content div.box div.form div.fields div.field div.checkboxes div.checkbox
1567 #content div.box div.form div.fields div.field div.checkboxes div.checkbox
1569 {
1568 {
1570 margin: 0;
1569 margin: 0;
1571 padding: 2px 0 2px 0;
1570 padding: 2px 0 2px 0;
1572 clear: both;
1571 clear: both;
1573 overflow: hidden;
1572 overflow: hidden;
1574 }
1573 }
1575
1574
1576 #content div.box div.form div.fields div.field div.checkboxes div.checkbox input
1575 #content div.box div.form div.fields div.field div.checkboxes div.checkbox input
1577 {
1576 {
1578 margin: 0;
1577 margin: 0;
1579 float: left;
1578 float: left;
1580 }
1579 }
1581
1580
1582 #content div.box div.form div.fields div.field div.checkboxes div.checkbox label
1581 #content div.box div.form div.fields div.field div.checkboxes div.checkbox label
1583 {
1582 {
1584 margin: 3px 0 0 4px;
1583 margin: 3px 0 0 4px;
1585 height: 1%;
1584 height: 1%;
1586 display: block;
1585 display: block;
1587 float: left;
1586 float: left;
1588 }
1587 }
1589
1588
1590 /*
1589 /*
1591 content / right / forms / radios
1590 content / right / forms / radios
1592 */
1591 */
1593 #content div.box div.form div.fields div.field div.radios {
1592 #content div.box div.form div.fields div.field div.radios {
1594 margin: 0 0 0 200px;
1593 margin: 0 0 0 200px;
1595 padding: 0;
1594 padding: 0;
1596 }
1595 }
1597
1596
1598 #content div.box div.form div.fields div.field div.radios div.radio {
1597 #content div.box div.form div.fields div.field div.radios div.radio {
1599 margin: 0;
1598 margin: 0;
1600 padding: 2px 0 2px 0;
1599 padding: 2px 0 2px 0;
1601 clear: both;
1600 clear: both;
1602 overflow: hidden;
1601 overflow: hidden;
1603 }
1602 }
1604
1603
1605 #content div.box div.form div.fields div.field div.radios div.radio input
1604 #content div.box div.form div.fields div.field div.radios div.radio input
1606 {
1605 {
1607 margin: 0;
1606 margin: 0;
1608 float: left;
1607 float: left;
1609 }
1608 }
1610
1609
1611 #content div.box div.form div.fields div.field div.radios div.radio label
1610 #content div.box div.form div.fields div.field div.radios div.radio label
1612 {
1611 {
1613 margin: 3px 0 0 4px;
1612 margin: 3px 0 0 4px;
1614 height: 1%;
1613 height: 1%;
1615 display: block;
1614 display: block;
1616 float: left;
1615 float: left;
1617 }
1616 }
1618
1617
1619 /*
1618 /*
1620 content / right / forms / button
1619 content / right / forms / button
1621 */
1620 */
1622 div.form div.fields div.field div.button {
1621 div.form div.fields div.field div.button {
1623 margin: 0;
1622 margin: 0;
1624 padding: 0 0 0 8px;
1623 padding: 0 0 0 8px;
1625 }
1624 }
1626
1625
1627 div.form div.fields div.field div.button input {
1626 div.form div.fields div.field div.button input {
1628 margin: 0;
1627 margin: 0;
1629 color: #000000;
1628 color: #000000;
1630 font-family: Lucida Grande, Verdana, Lucida Sans Regular,
1629 font-family: Lucida Grande, Verdana, Lucida Sans Regular,
1631 Lucida Sans Unicode, Arial, sans-serif;
1630 Lucida Sans Unicode, Arial, sans-serif;
1632 font-size: 11px;
1631 font-size: 11px;
1633 font-weight: bold;
1632 font-weight: bold;
1634 }
1633 }
1635
1634
1636 div.form div.fields div.field div.button .ui-state-default {
1635 div.form div.fields div.field div.button .ui-state-default {
1637 margin: 0;
1636 margin: 0;
1638 padding: 6px 12px 6px 12px;
1637 padding: 6px 12px 6px 12px;
1639 background: #e5e3e3 url("../images/button.png") repeat-x;
1638 background: #e5e3e3 url("../images/button.png") repeat-x;
1640 border-top: 1px solid #DDDDDD;
1639 border-top: 1px solid #DDDDDD;
1641 border-left: 1px solid #c6c6c6;
1640 border-left: 1px solid #c6c6c6;
1642 border-right: 1px solid #DDDDDD;
1641 border-right: 1px solid #DDDDDD;
1643 border-bottom: 1px solid #c6c6c6;
1642 border-bottom: 1px solid #c6c6c6;
1644 color: #515151;
1643 color: #515151;
1645 outline: none;
1644 outline: none;
1646 }
1645 }
1647
1646
1648 div.form div.fields div.field div.button .ui-state-hover {
1647 div.form div.fields div.field div.button .ui-state-hover {
1649 margin: 0;
1648 margin: 0;
1650 padding: 6px 12px 6px 12px;
1649 padding: 6px 12px 6px 12px;
1651 background: #b4b4b4 url("../images/button_selected.png") repeat-x;
1650 background: #b4b4b4 url("../images/button_selected.png") repeat-x;
1652 border-top: 1px solid #cccccc;
1651 border-top: 1px solid #cccccc;
1653 border-left: 1px solid #bebebe;
1652 border-left: 1px solid #bebebe;
1654 border-right: 1px solid #b1b1b1;
1653 border-right: 1px solid #b1b1b1;
1655 border-bottom: 1px solid #afafaf;
1654 border-bottom: 1px solid #afafaf;
1656 color: #515151;
1655 color: #515151;
1657 outline: none;
1656 outline: none;
1658 }
1657 }
1659
1658
1660 div.form div.fields div.field div.highlight {
1659 div.form div.fields div.field div.highlight {
1661 display: inline;
1660 display: inline;
1662 }
1661 }
1663
1662
1664 div.form div.fields div.field div.highlight .ui-state-default {
1663 div.form div.fields div.field div.highlight .ui-state-default {
1665 margin: 0;
1664 margin: 0;
1666 padding: 6px 12px 6px 12px;
1665 padding: 6px 12px 6px 12px;
1667 background: #4e85bb url("../images/button_highlight.png") repeat-x;
1666 background: #4e85bb url("../images/button_highlight.png") repeat-x;
1668 border-top: 1px solid #5c91a4;
1667 border-top: 1px solid #5c91a4;
1669 border-left: 1px solid #2a6f89;
1668 border-left: 1px solid #2a6f89;
1670 border-right: 1px solid #2b7089;
1669 border-right: 1px solid #2b7089;
1671 border-bottom: 1px solid #1a6480;
1670 border-bottom: 1px solid #1a6480;
1672 color: #FFFFFF;
1671 color: #FFFFFF;
1673 }
1672 }
1674
1673
1675 div.form div.fields div.field div.highlight .ui-state-hover {
1674 div.form div.fields div.field div.highlight .ui-state-hover {
1676 margin: 0;
1675 margin: 0;
1677 padding: 6px 12px 6px 12px;
1676 padding: 6px 12px 6px 12px;
1678 background: #46a0c1 url("../images/button_highlight_selected.png")
1677 background: #46a0c1 url("../images/button_highlight_selected.png")
1679 repeat-x;
1678 repeat-x;
1680 border-top: 1px solid #78acbf;
1679 border-top: 1px solid #78acbf;
1681 border-left: 1px solid #34819e;
1680 border-left: 1px solid #34819e;
1682 border-right: 1px solid #35829f;
1681 border-right: 1px solid #35829f;
1683 border-bottom: 1px solid #257897;
1682 border-bottom: 1px solid #257897;
1684 color: #FFFFFF;
1683 color: #FFFFFF;
1685 }
1684 }
1686
1685
1687 /*
1686 /*
1688 content / right / forms / buttons
1687 content / right / forms / buttons
1689 */
1688 */
1690 #content div.box div.form div.fields div.buttons {
1689 #content div.box div.form div.fields div.buttons {
1691 margin: 10px 0 0 200px;
1690 margin: 10px 0 0 200px;
1692 padding: 0;
1691 padding: 0;
1693 }
1692 }
1694
1693
1695 #content div.box-left div.form div.fields div.buttons,#content div.box-right div.form div.fields div.buttons
1694 #content div.box-left div.form div.fields div.buttons,#content div.box-right div.form div.fields div.buttons
1696 {
1695 {
1697 margin: 10px 0 0 0;
1696 margin: 10px 0 0 0;
1698 }
1697 }
1699
1698
1700 #content div.box div.form div.fields div.buttons input {
1699 #content div.box div.form div.fields div.buttons input {
1701 margin: 0;
1700 margin: 0;
1702 color: #000000;
1701 color: #000000;
1703 font-family: Lucida Grande, Verdana, Lucida Sans Regular,
1702 font-family: Lucida Grande, Verdana, Lucida Sans Regular,
1704 Lucida Sans Unicode, Arial, sans-serif;
1703 Lucida Sans Unicode, Arial, sans-serif;
1705 font-size: 11px;
1704 font-size: 11px;
1706 font-weight: bold;
1705 font-weight: bold;
1707 }
1706 }
1708
1707
1709 /*
1708 /*
1710 content / right / forms / buttons
1709 content / right / forms / buttons
1711 */
1710 */
1712 div.form div.fields div.buttons {
1711 div.form div.fields div.buttons {
1713 margin: 10px 0 0 200px;
1712 margin: 10px 0 0 200px;
1714 padding: 0;
1713 padding: 0;
1715 }
1714 }
1716
1715
1717 div.box-left div.form div.fields div.buttons,div.box-right div.form div.fields div.buttons
1716 div.box-left div.form div.fields div.buttons,div.box-right div.form div.fields div.buttons
1718 {
1717 {
1719 margin: 10px 0 0 0;
1718 margin: 10px 0 0 0;
1720 }
1719 }
1721
1720
1722 div.form div.fields div.buttons input {
1721 div.form div.fields div.buttons input {
1723 margin: 0;
1722 margin: 0;
1724 color: #000000;
1723 color: #000000;
1725 font-family: Lucida Grande, Verdana, Lucida Sans Regular,
1724 font-family: Lucida Grande, Verdana, Lucida Sans Regular,
1726 Lucida Sans Unicode, Arial, sans-serif;
1725 Lucida Sans Unicode, Arial, sans-serif;
1727 font-size: 11px;
1726 font-size: 11px;
1728 font-weight: bold;
1727 font-weight: bold;
1729 }
1728 }
1730
1729
1731 /*
1730 /*
1732 content / right / forms / buttons (jquery styling)
1731 content / right / forms / buttons (jquery styling)
1733 */
1732 */
1734 #content div.box div.form div.fields div.buttons input.ui-state-default
1733 #content div.box div.form div.fields div.buttons input.ui-state-default
1735 {
1734 {
1736 margin: 0;
1735 margin: 0;
1737 padding: 6px 12px 6px 12px;
1736 padding: 6px 12px 6px 12px;
1738 background: #e5e3e3 url("../images/button.png") repeat-x;
1737 background: #e5e3e3 url("../images/button.png") repeat-x;
1739 border-top: 1px solid #DDDDDD;
1738 border-top: 1px solid #DDDDDD;
1740 border-left: 1px solid #c6c6c6;
1739 border-left: 1px solid #c6c6c6;
1741 border-right: 1px solid #DDDDDD;
1740 border-right: 1px solid #DDDDDD;
1742 border-bottom: 1px solid #c6c6c6;
1741 border-bottom: 1px solid #c6c6c6;
1743 color: #515151;
1742 color: #515151;
1744 outline: none;
1743 outline: none;
1745 }
1744 }
1746
1745
1747 #content div.box div.form div.fields div.buttons input.ui-state-hover {
1746 #content div.box div.form div.fields div.buttons input.ui-state-hover {
1748 margin: 0;
1747 margin: 0;
1749 padding: 6px 12px 6px 12px;
1748 padding: 6px 12px 6px 12px;
1750 background: #b4b4b4 url("../images/button_selected.png") repeat-x;
1749 background: #b4b4b4 url("../images/button_selected.png") repeat-x;
1751 border-top: 1px solid #cccccc;
1750 border-top: 1px solid #cccccc;
1752 border-left: 1px solid #bebebe;
1751 border-left: 1px solid #bebebe;
1753 border-right: 1px solid #b1b1b1;
1752 border-right: 1px solid #b1b1b1;
1754 border-bottom: 1px solid #afafaf;
1753 border-bottom: 1px solid #afafaf;
1755 color: #515151;
1754 color: #515151;
1756 outline: none;
1755 outline: none;
1757 }
1756 }
1758
1757
1759 #content div.box div.form div.fields div.buttons div.highlight {
1758 #content div.box div.form div.fields div.buttons div.highlight {
1760 display: inline;
1759 display: inline;
1761 }
1760 }
1762
1761
1763 #content div.box div.form div.fields div.buttons div.highlight input.ui-state-default
1762 #content div.box div.form div.fields div.buttons div.highlight input.ui-state-default
1764 {
1763 {
1765 margin: 0;
1764 margin: 0;
1766 padding: 6px 12px 6px 12px;
1765 padding: 6px 12px 6px 12px;
1767 background: #4e85bb url("../images/button_highlight.png") repeat-x;
1766 background: #4e85bb url("../images/button_highlight.png") repeat-x;
1768 border-top: 1px solid #5c91a4;
1767 border-top: 1px solid #5c91a4;
1769 border-left: 1px solid #2a6f89;
1768 border-left: 1px solid #2a6f89;
1770 border-right: 1px solid #2b7089;
1769 border-right: 1px solid #2b7089;
1771 border-bottom: 1px solid #1a6480;
1770 border-bottom: 1px solid #1a6480;
1772 color: #FFFFFF;
1771 color: #FFFFFF;
1773 }
1772 }
1774
1773
1775 #content div.box div.form div.fields div.buttons div.highlight input.ui-state-hover
1774 #content div.box div.form div.fields div.buttons div.highlight input.ui-state-hover
1776 {
1775 {
1777 margin: 0;
1776 margin: 0;
1778 padding: 6px 12px 6px 12px;
1777 padding: 6px 12px 6px 12px;
1779 background: #46a0c1 url("../images/button_highlight_selected.png")
1778 background: #46a0c1 url("../images/button_highlight_selected.png")
1780 repeat-x;
1779 repeat-x;
1781 border-top: 1px solid #78acbf;
1780 border-top: 1px solid #78acbf;
1782 border-left: 1px solid #34819e;
1781 border-left: 1px solid #34819e;
1783 border-right: 1px solid #35829f;
1782 border-right: 1px solid #35829f;
1784 border-bottom: 1px solid #257897;
1783 border-bottom: 1px solid #257897;
1785 color: #FFFFFF;
1784 color: #FFFFFF;
1786 }
1785 }
1787
1786
1788 /*
1787 /*
1789 content / right / box / tables
1788 content / right / box / tables
1790 */
1789 */
1791 #content div.box div.table {
1790 #content div.box div.table {
1792 margin: 0;
1791 margin: 0;
1793 padding: 0 20px 10px 20px;
1792 padding: 0 20px 10px 20px;
1794 clear: both;
1793 clear: both;
1795 overflow: hidden;
1794 overflow: hidden;
1796 }
1795 }
1797
1796
1798 #content div.box table {
1797 #content div.box table {
1799 margin: 0;
1798 margin: 0;
1800 padding: 0;
1799 padding: 0;
1801 width: 100%;
1800 width: 100%;
1802 border-collapse: collapse;
1801 border-collapse: collapse;
1803 }
1802 }
1804
1803
1805 #content div.box table th {
1804 #content div.box table th {
1806 padding: 10px;
1805 padding: 10px;
1807 background: #eeeeee;
1806 background: #eeeeee;
1808 border-bottom: 1px solid #dddddd;
1807 border-bottom: 1px solid #dddddd;
1809 }
1808 }
1810
1809
1811 #content div.box table th.left {
1810 #content div.box table th.left {
1812 text-align: left;
1811 text-align: left;
1813 }
1812 }
1814
1813
1815 #content div.box table th.right {
1814 #content div.box table th.right {
1816 text-align: right;
1815 text-align: right;
1817 }
1816 }
1818
1817
1819 #content div.box table th.center {
1818 #content div.box table th.center {
1820 text-align: center;
1819 text-align: center;
1821 }
1820 }
1822
1821
1823 #content div.box table th.selected {
1822 #content div.box table th.selected {
1824 padding: 0;
1823 padding: 0;
1825 vertical-align: middle;
1824 vertical-align: middle;
1826 }
1825 }
1827
1826
1828 #content div.box table th.selected input {
1827 #content div.box table th.selected input {
1829 margin: 0;
1828 margin: 0;
1830 }
1829 }
1831
1830
1832 #content div.box table td {
1831 #content div.box table td {
1833 padding: 5px;
1832 padding: 5px;
1834 background: #ffffff;
1833 background: #ffffff;
1835 border-bottom: 1px solid #cdcdcd;
1834 border-bottom: 1px solid #cdcdcd;
1836 vertical-align: middle;
1835 vertical-align: middle;
1837 }
1836 }
1838
1837
1839 #content div.box table tr.selected td {
1838 #content div.box table tr.selected td {
1840 background: #FFFFCC;
1839 background: #FFFFCC;
1841 }
1840 }
1842
1841
1843 #content div.box table td.selected {
1842 #content div.box table td.selected {
1844 padding: 0;
1843 padding: 0;
1845 width: 3%;
1844 width: 3%;
1846 text-align: center;
1845 text-align: center;
1847 vertical-align: middle;
1846 vertical-align: middle;
1848 }
1847 }
1849
1848
1850 #content div.box table td.selected input {
1849 #content div.box table td.selected input {
1851 margin: 0;
1850 margin: 0;
1852 }
1851 }
1853
1852
1854 #content div.box table td.action {
1853 #content div.box table td.action {
1855 width: 45%;
1854 width: 45%;
1856 text-align: left;
1855 text-align: left;
1857 }
1856 }
1858
1857
1859 #content div.box table td.user {
1858 #content div.box table td.user {
1860 width: 10%;
1859 width: 10%;
1861 text-align: center;
1860 text-align: center;
1862 }
1861 }
1863
1862
1864 #content div.box table td.date {
1863 #content div.box table td.date {
1865 width: 33%;
1864 width: 33%;
1866 text-align: center;
1865 text-align: center;
1867 }
1866 }
1868
1867
1869 #content div.box table td.address {
1868 #content div.box table td.address {
1870 width: 10%;
1869 width: 10%;
1871 text-align: center;
1870 text-align: center;
1872 }
1871 }
1873
1872
1874 /*
1873 /*
1875 content / right / box / table action
1874 content / right / box / table action
1876 */
1875 */
1877 #content div.box div.action {
1876 #content div.box div.action {
1878 margin: 10px 0 0 0;
1877 margin: 10px 0 0 0;
1879 padding: 0;
1878 padding: 0;
1880 float: right;
1879 float: right;
1881 background: #FFFFFF;
1880 background: #FFFFFF;
1882 text-align: right;
1881 text-align: right;
1883 }
1882 }
1884
1883
1885 #content div.box div.action a:hover {
1884 #content div.box div.action a:hover {
1886 color: #000000;
1885 color: #000000;
1887 text-decoration: none;
1886 text-decoration: none;
1888 }
1887 }
1889
1888
1890 #content div.box div.action select {
1889 #content div.box div.action select {
1891 margin: 0;
1890 margin: 0;
1892 font-family: Lucida Grande, Verdana, Lucida Sans Regular,
1891 font-family: Lucida Grande, Verdana, Lucida Sans Regular,
1893 Lucida Sans Unicode, Arial, sans-serif;
1892 Lucida Sans Unicode, Arial, sans-serif;
1894 font-size: 11px;
1893 font-size: 11px;
1895 }
1894 }
1896
1895
1897 #content div.box div.action div.button {
1896 #content div.box div.action div.button {
1898 margin: 6px 0 0 0;
1897 margin: 6px 0 0 0;
1899 padding: 0;
1898 padding: 0;
1900 text-align: right;
1899 text-align: right;
1901 }
1900 }
1902
1901
1903 #content div.box div.action div.button input {
1902 #content div.box div.action div.button input {
1904 margin: 0;
1903 margin: 0;
1905 color: #000000;
1904 color: #000000;
1906 font-family: Lucida Grande, Verdana, Lucida Sans Regular,
1905 font-family: Lucida Grande, Verdana, Lucida Sans Regular,
1907 Lucida Sans Unicode, Arial, sans-serif;
1906 Lucida Sans Unicode, Arial, sans-serif;
1908 font-size: 11px;
1907 font-size: 11px;
1909 font-weight: bold;
1908 font-weight: bold;
1910 }
1909 }
1911
1910
1912 #content div.box div.action div.button input.ui-state-default {
1911 #content div.box div.action div.button input.ui-state-default {
1913 margin: 0;
1912 margin: 0;
1914 padding: 6px 12px 6px 12px;
1913 padding: 6px 12px 6px 12px;
1915 background: #e5e3e3 url("../images/button.png") repeat-x;
1914 background: #e5e3e3 url("../images/button.png") repeat-x;
1916 border-top: 1px solid #DDDDDD;
1915 border-top: 1px solid #DDDDDD;
1917 border-left: 1px solid #c6c6c6;
1916 border-left: 1px solid #c6c6c6;
1918 border-right: 1px solid #DDDDDD;
1917 border-right: 1px solid #DDDDDD;
1919 border-bottom: 1px solid #c6c6c6;
1918 border-bottom: 1px solid #c6c6c6;
1920 color: #515151;
1919 color: #515151;
1921 }
1920 }
1922
1921
1923 #content div.box div.action div.button input.ui-state-hover {
1922 #content div.box div.action div.button input.ui-state-hover {
1924 margin: 0;
1923 margin: 0;
1925 padding: 6px 12px 6px 12px;
1924 padding: 6px 12px 6px 12px;
1926 background: #b4b4b4 url("../images/button_selected.png") repeat-x;
1925 background: #b4b4b4 url("../images/button_selected.png") repeat-x;
1927 border-top: 1px solid #cccccc;
1926 border-top: 1px solid #cccccc;
1928 border-left: 1px solid #bebebe;
1927 border-left: 1px solid #bebebe;
1929 border-right: 1px solid #b1b1b1;
1928 border-right: 1px solid #b1b1b1;
1930 border-bottom: 1px solid #afafaf;
1929 border-bottom: 1px solid #afafaf;
1931 color: #515151;
1930 color: #515151;
1932 }
1931 }
1933
1932
1934 #content div.box div.action .ui-selectmenu {
1933 #content div.box div.action .ui-selectmenu {
1935 margin: 0;
1934 margin: 0;
1936 padding: 0;
1935 padding: 0;
1937 }
1936 }
1938
1937
1939 #content div.box div.action a.ui-selectmenu-focus {
1938 #content div.box div.action a.ui-selectmenu-focus {
1940 border: 1px solid #666666;
1939 border: 1px solid #666666;
1941 }
1940 }
1942
1941
1943 #content div.box div.action a.ui-selectmenu-focus span.ui-icon {
1942 #content div.box div.action a.ui-selectmenu-focus span.ui-icon {
1944 background-image: url(../images/ui/ui-icons_222222_256x240.png);
1943 background-image: url(../images/ui/ui-icons_222222_256x240.png);
1945 }
1944 }
1946
1945
1947 /*
1946 /*
1948 content / right / pagination
1947 content / right / pagination
1949 */
1948 */
1950 #content div.box div.pagination {
1949 #content div.box div.pagination {
1951 margin: 10px 0 0 0;
1950 margin: 10px 0 0 0;
1952 padding: 0;
1951 padding: 0;
1953 height: 1%;
1952 height: 1%;
1954 clear: both;
1953 clear: both;
1955 overflow: hidden;
1954 overflow: hidden;
1956 }
1955 }
1957
1956
1958 #content div.box div.pagination div.results {
1957 #content div.box div.pagination div.results {
1959 margin: 0;
1958 margin: 0;
1960 padding: 0;
1959 padding: 0;
1961 text-align: left;
1960 text-align: left;
1962 float: left
1961 float: left
1963 }
1962 }
1964
1963
1965 #content div.box div.pagination div.results span {
1964 #content div.box div.pagination div.results span {
1966 margin: 0;
1965 margin: 0;
1967 padding: 6px 8px 6px 8px;
1966 padding: 6px 8px 6px 8px;
1968 height: 1%;
1967 height: 1%;
1969 display: block;
1968 display: block;
1970 float: left;
1969 float: left;
1971 background: #ebebeb url("../images/pager.png") repeat-x;
1970 background: #ebebeb url("../images/pager.png") repeat-x;
1972 border-top: 1px solid #dedede;
1971 border-top: 1px solid #dedede;
1973 border-left: 1px solid #cfcfcf;
1972 border-left: 1px solid #cfcfcf;
1974 border-right: 1px solid #c4c4c4;
1973 border-right: 1px solid #c4c4c4;
1975 border-bottom: 1px solid #c4c4c4;
1974 border-bottom: 1px solid #c4c4c4;
1976 color: #4A4A4A;
1975 color: #4A4A4A;
1977 font-weight: bold;
1976 font-weight: bold;
1978 }
1977 }
1979
1978
1980 #content div.box div.pagination ul.pager {
1979 #content div.box div.pagination ul.pager {
1981 margin: 0;
1980 margin: 0;
1982 padding: 0;
1981 padding: 0;
1983 float: right;
1982 float: right;
1984 text-align: right;
1983 text-align: right;
1985 }
1984 }
1986
1985
1987 #content div.box div.pagination ul.pager li {
1986 #content div.box div.pagination ul.pager li {
1988 margin: 0 0 0 4px;
1987 margin: 0 0 0 4px;
1989 padding: 0;
1988 padding: 0;
1990 height: 1%;
1989 height: 1%;
1991 float: left;
1990 float: left;
1992 list-style: none;
1991 list-style: none;
1993 background: #ebebeb url("../images/pager.png") repeat-x;
1992 background: #ebebeb url("../images/pager.png") repeat-x;
1994 border-top: 1px solid #dedede;
1993 border-top: 1px solid #dedede;
1995 border-left: 1px solid #cfcfcf;
1994 border-left: 1px solid #cfcfcf;
1996 border-right: 1px solid #c4c4c4;
1995 border-right: 1px solid #c4c4c4;
1997 border-bottom: 1px solid #c4c4c4;
1996 border-bottom: 1px solid #c4c4c4;
1998 color: #4A4A4A;
1997 color: #4A4A4A;
1999 font-weight: bold;
1998 font-weight: bold;
2000 }
1999 }
2001
2000
2002 #content div.box div.pagination ul.pager li.separator {
2001 #content div.box div.pagination ul.pager li.separator {
2003 padding: 6px;
2002 padding: 6px;
2004 }
2003 }
2005
2004
2006 #content div.box div.pagination ul.pager li.current {
2005 #content div.box div.pagination ul.pager li.current {
2007 padding: 6px;
2006 padding: 6px;
2008 background: #b4b4b4 url("../images/pager_selected.png") repeat-x;
2007 background: #b4b4b4 url("../images/pager_selected.png") repeat-x;
2009 border-top: 1px solid #cccccc;
2008 border-top: 1px solid #cccccc;
2010 border-left: 1px solid #bebebe;
2009 border-left: 1px solid #bebebe;
2011 border-right: 1px solid #b1b1b1;
2010 border-right: 1px solid #b1b1b1;
2012 border-bottom: 1px solid #afafaf;
2011 border-bottom: 1px solid #afafaf;
2013 color: #515151;
2012 color: #515151;
2014 }
2013 }
2015
2014
2016 #content div.box div.pagination ul.pager li.disabled {
2015 #content div.box div.pagination ul.pager li.disabled {
2017 padding: 6px;
2016 padding: 6px;
2018 color: #B4B4B4;
2017 color: #B4B4B4;
2019 }
2018 }
2020
2019
2021 #content div.box div.pagination ul.pager li a {
2020 #content div.box div.pagination ul.pager li a {
2022 margin: 0;
2021 margin: 0;
2023 padding: 6px;
2022 padding: 6px;
2024 height: 1%;
2023 height: 1%;
2025 display: block;
2024 display: block;
2026 float: left;
2025 float: left;
2027 color: #515151;
2026 color: #515151;
2028 text-decoration: none;
2027 text-decoration: none;
2029 }
2028 }
2030
2029
2031 #content div.box div.pagination ul.pager li a:hover,#content div.box div.pagination ul.pager li a:active
2030 #content div.box div.pagination ul.pager li a:hover,#content div.box div.pagination ul.pager li a:active
2032 {
2031 {
2033 margin: -1px;
2032 margin: -1px;
2034 background: #b4b4b4 url("../images/pager_selected.png") repeat-x;
2033 background: #b4b4b4 url("../images/pager_selected.png") repeat-x;
2035 border-top: 1px solid #cccccc;
2034 border-top: 1px solid #cccccc;
2036 border-left: 1px solid #bebebe;
2035 border-left: 1px solid #bebebe;
2037 border-right: 1px solid #b1b1b1;
2036 border-right: 1px solid #b1b1b1;
2038 border-bottom: 1px solid #afafaf;
2037 border-bottom: 1px solid #afafaf;
2039 }
2038 }
2040
2039
2041 /*
2040 /*
2042 content / webhelpers pagination
2041 content / webhelpers pagination
2043 */
2042 */
2044 #content div.box div.pagination-wh {
2043 #content div.box div.pagination-wh {
2045 margin: 10px 0 0 0;
2044 margin: 10px 0 0 0;
2046 padding: 0;
2045 padding: 0;
2047 height: 1%;
2046 height: 1%;
2048 clear: both;
2047 clear: both;
2049 overflow: hidden;
2048 overflow: hidden;
2050 text-align: right;
2049 text-align: right;
2051 }
2050 }
2052
2051
2053 #content div.box div.pagination-wh div.results {
2052 #content div.box div.pagination-wh div.results {
2054 margin: 0;
2053 margin: 0;
2055 padding: 0;
2054 padding: 0;
2056 text-align: left;
2055 text-align: left;
2057 float: left
2056 float: left
2058 }
2057 }
2059
2058
2060 #content div.box div.pagination-wh div.results span {
2059 #content div.box div.pagination-wh div.results span {
2061 margin: 0;
2060 margin: 0;
2062 padding: 6px 8px 6px 8px;
2061 padding: 6px 8px 6px 8px;
2063 height: 1%;
2062 height: 1%;
2064 display: block;
2063 display: block;
2065 float: left;
2064 float: left;
2066 background: #ebebeb url("../images/pager.png") repeat-x;
2065 background: #ebebeb url("../images/pager.png") repeat-x;
2067 border-top: 1px solid #dedede;
2066 border-top: 1px solid #dedede;
2068 border-left: 1px solid #cfcfcf;
2067 border-left: 1px solid #cfcfcf;
2069 border-right: 1px solid #c4c4c4;
2068 border-right: 1px solid #c4c4c4;
2070 border-bottom: 1px solid #c4c4c4;
2069 border-bottom: 1px solid #c4c4c4;
2071 color: #4A4A4A;
2070 color: #4A4A4A;
2072 font-weight: bold;
2071 font-weight: bold;
2073 }
2072 }
2074
2073
2075 #content div.box div.pagination-left {
2074 #content div.box div.pagination-left {
2076 float: left;
2075 float: left;
2077 }
2076 }
2078
2077
2079 #content div.box div.pagination-right {
2078 #content div.box div.pagination-right {
2080 float: right;
2079 float: right;
2081 }
2080 }
2082
2081
2083 #content div.box div.pagination-wh a,#content div.box div.pagination-wh span.pager_dotdot
2082 #content div.box div.pagination-wh a,#content div.box div.pagination-wh span.pager_dotdot
2084 {
2083 {
2085 margin: 0 0 0 4px;
2084 margin: 0 0 0 4px;
2086 padding: 6px;
2085 padding: 6px;
2087 height: 1%;
2086 height: 1%;
2088 float: left;
2087 float: left;
2089 background: #ebebeb url("../images/pager.png") repeat-x;
2088 background: #ebebeb url("../images/pager.png") repeat-x;
2090 border-top: 1px solid #dedede;
2089 border-top: 1px solid #dedede;
2091 border-left: 1px solid #cfcfcf;
2090 border-left: 1px solid #cfcfcf;
2092 border-right: 1px solid #c4c4c4;
2091 border-right: 1px solid #c4c4c4;
2093 border-bottom: 1px solid #c4c4c4;
2092 border-bottom: 1px solid #c4c4c4;
2094 color: #4A4A4A;
2093 color: #4A4A4A;
2095 font-weight: bold;
2094 font-weight: bold;
2096 }
2095 }
2097
2096
2098 #content div.box div.pagination-wh span.pager_curpage {
2097 #content div.box div.pagination-wh span.pager_curpage {
2099 margin: 0 0 0 4px;
2098 margin: 0 0 0 4px;
2100 padding: 6px;
2099 padding: 6px;
2101 height: 1%;
2100 height: 1%;
2102 float: left;
2101 float: left;
2103 background: #b4b4b4 url("../images/pager_selected.png") repeat-x;
2102 background: #b4b4b4 url("../images/pager_selected.png") repeat-x;
2104 border-top: 1px solid #cccccc;
2103 border-top: 1px solid #cccccc;
2105 border-left: 1px solid #bebebe;
2104 border-left: 1px solid #bebebe;
2106 border-right: 1px solid #b1b1b1;
2105 border-right: 1px solid #b1b1b1;
2107 border-bottom: 1px solid #afafaf;
2106 border-bottom: 1px solid #afafaf;
2108 color: #515151;
2107 color: #515151;
2109 font-weight: bold;
2108 font-weight: bold;
2110 }
2109 }
2111
2110
2112 #content div.box div.pagination-wh a.disabled {
2111 #content div.box div.pagination-wh a.disabled {
2113 padding: 6px;
2112 padding: 6px;
2114 color: #B4B4B4;
2113 color: #B4B4B4;
2115 }
2114 }
2116
2115
2117 #content div.box div.pagination-wh a:hover,#content div.box div.pagination-wh a:active
2116 #content div.box div.pagination-wh a:hover,#content div.box div.pagination-wh a:active
2118 {
2117 {
2119 background: #b4b4b4 url("../images/pager_selected.png") repeat-x;
2118 background: #b4b4b4 url("../images/pager_selected.png") repeat-x;
2120 border-top: 1px solid #cccccc;
2119 border-top: 1px solid #cccccc;
2121 border-left: 1px solid #bebebe;
2120 border-left: 1px solid #bebebe;
2122 border-right: 1px solid #b1b1b1;
2121 border-right: 1px solid #b1b1b1;
2123 border-bottom: 1px solid #afafaf;
2122 border-bottom: 1px solid #afafaf;
2124 text-decoration: none;
2123 text-decoration: none;
2125 }
2124 }
2126
2125
2127 /*
2126 /*
2128 content / right / traffic chart
2127 content / right / traffic chart
2129 */
2128 */
2130 #content div.box div.traffic {
2129 #content div.box div.traffic {
2131 margin: 0;
2130 margin: 0;
2132 padding: 0 20px 10px 20px;
2131 padding: 0 20px 10px 20px;
2133 clear: both;
2132 clear: both;
2134 overflow: hidden;
2133 overflow: hidden;
2135 }
2134 }
2136
2135
2137 #content div.box div.traffic div.legend {
2136 #content div.box div.traffic div.legend {
2138 margin: 0 0 10px 0;
2137 margin: 0 0 10px 0;
2139 padding: 0 0 10px 0;
2138 padding: 0 0 10px 0;
2140 clear: both;
2139 clear: both;
2141 overflow: hidden;
2140 overflow: hidden;
2142 border-bottom: 1px solid #dddddd;
2141 border-bottom: 1px solid #dddddd;
2143 }
2142 }
2144
2143
2145 #content div.box div.traffic div.legend h6 {
2144 #content div.box div.traffic div.legend h6 {
2146 margin: 0;
2145 margin: 0;
2147 padding: 0;
2146 padding: 0;
2148 float: left;
2147 float: left;
2149 border: none;
2148 border: none;
2150 }
2149 }
2151
2150
2152 #content div.box div.traffic div.legend ul {
2151 #content div.box div.traffic div.legend ul {
2153 margin: 0;
2152 margin: 0;
2154 padding: 0;
2153 padding: 0;
2155 float: right;
2154 float: right;
2156 }
2155 }
2157
2156
2158 #content div.box div.traffic div.legend li {
2157 #content div.box div.traffic div.legend li {
2159 margin: 0;
2158 margin: 0;
2160 padding: 0 8px 0 4px;
2159 padding: 0 8px 0 4px;
2161 list-style: none;
2160 list-style: none;
2162 float: left;
2161 float: left;
2163 font-size: 11px;
2162 font-size: 11px;
2164 }
2163 }
2165
2164
2166 #content div.box div.traffic div.legend li.visits {
2165 #content div.box div.traffic div.legend li.visits {
2167 border-left: 12px solid #edc240;
2166 border-left: 12px solid #edc240;
2168 }
2167 }
2169
2168
2170 #content div.box div.traffic div.legend li.pageviews {
2169 #content div.box div.traffic div.legend li.pageviews {
2171 border-left: 12px solid #afd8f8;
2170 border-left: 12px solid #afd8f8;
2172 }
2171 }
2173
2172
2174 #content div.box div.traffic table {
2173 #content div.box div.traffic table {
2175 width: auto;
2174 width: auto;
2176 }
2175 }
2177
2176
2178 #content div.box div.traffic table td {
2177 #content div.box div.traffic table td {
2179 padding: 2px 3px 3px 3px;
2178 padding: 2px 3px 3px 3px;
2180 background: transparent;
2179 background: transparent;
2181 border: none;
2180 border: none;
2182 }
2181 }
2183
2182
2184 #content div.box div.traffic table td.legendLabel {
2183 #content div.box div.traffic table td.legendLabel {
2185 padding: 0 3px 2px 3px;
2184 padding: 0 3px 2px 3px;
2186 }
2185 }
2187
2186
2188 /*
2187 /*
2189 footer
2188 footer
2190 */
2189 */
2191 #footer {
2190 #footer {
2192 margin: 0;
2191 margin: 0;
2193 padding: 0px 30px;
2192 padding: 0px 30px;
2194 clear: both;
2193 clear: both;
2195 overflow: hidden;
2194 overflow: hidden;
2196 background: url("../images/header_background.png") repeat scroll 0 0 #B0B0B0;
2197 text-align: right;
2195 text-align: right;
2198 }
2196 }
2199
2197
2200 #footer p {
2198 #footer p {
2201 background:none repeat scroll 0 0 #2F2F2F;
2199 background:none repeat scroll 0 0 #2F2F2F;
2202 color:#FFFFFF;
2200 color:#FFFFFF;
2203 font-weight:bold;
2201 font-weight:bold;
2204 padding:15px 25px 15px 0;
2202 padding:15px 25px 15px 0;
2205 }
2203 }
2206
2204
2207 /*
2205 /*
2208 login
2206 login
2209 */
2207 */
2210 #login {
2208 #login {
2211 margin: 10% auto 0 auto;
2209 margin: 10% auto 0 auto;
2212 padding: 0;
2210 padding: 0;
2213 width: 420px;
2211 width: 420px;
2214 }
2212 }
2215
2213
2216 /*
2214 /*
2217 login / colors
2215 login / colors
2218 */
2216 */
2219 #login div.color {
2217 #login div.color {
2220 margin: 10px auto 0 auto;
2218 margin: 10px auto 0 auto;
2221 padding: 3px 3px 3px 0;
2219 padding: 3px 3px 3px 0;
2222 clear: both;
2220 clear: both;
2223 overflow: hidden;
2221 overflow: hidden;
2224 background: #FFFFFF;
2222 background: #FFFFFF;
2225 }
2223 }
2226
2224
2227 #login div.color a {
2225 #login div.color a {
2228 margin: 0 0 0 3px;
2226 margin: 0 0 0 3px;
2229 padding: 0;
2227 padding: 0;
2230 width: 20px;
2228 width: 20px;
2231 height: 20px;
2229 height: 20px;
2232 display: block;
2230 display: block;
2233 float: left;
2231 float: left;
2234 }
2232 }
2235
2233
2236 /*
2234 /*
2237 login / title
2235 login / title
2238 */
2236 */
2239 #login div.title {
2237 #login div.title {
2240 margin: 0 auto;
2238 margin: 0 auto;
2241 padding: 0;
2239 padding: 0;
2242 width: 420px;
2240 width: 420px;
2243 clear: both;
2241 clear: both;
2244 overflow: hidden;
2242 overflow: hidden;
2245 position: relative;
2243 position: relative;
2246 background: #003367 url("../images/header_inner.png") repeat-x;
2244 background: #003367 url("../images/header_inner.png") repeat-x;
2247 }
2245 }
2248
2246
2249 #login div.title h5 {
2247 #login div.title h5 {
2250 margin: 10px;
2248 margin: 10px;
2251 padding: 0;
2249 padding: 0;
2252 color: #ffffff;
2250 color: #ffffff;
2253 }
2251 }
2254
2252
2255 /*
2253 /*
2256 login / title / corners
2254 login / title / corners
2257 */
2255 */
2258 #login div.title div.corner {
2256 #login div.title div.corner {
2259 height: 6px;
2257 height: 6px;
2260 width: 6px;
2258 width: 6px;
2261 position: absolute;
2259 position: absolute;
2262 background: url("../images/login_corners.png") no-repeat;
2260 background: url("../images/login_corners.png") no-repeat;
2263 }
2261 }
2264
2262
2265 #login div.title div.tl {
2263 #login div.title div.tl {
2266 top: 0;
2264 top: 0;
2267 left: 0;
2265 left: 0;
2268 background-position: 0 0;
2266 background-position: 0 0;
2269 }
2267 }
2270
2268
2271 #login div.title div.tr {
2269 #login div.title div.tr {
2272 top: 0;
2270 top: 0;
2273 right: 0;
2271 right: 0;
2274 background-position: -6px 0;
2272 background-position: -6px 0;
2275 }
2273 }
2276
2274
2277 #login div.inner {
2275 #login div.inner {
2278 margin: 0 auto;
2276 margin: 0 auto;
2279 padding: 20px;
2277 padding: 20px;
2280 width: 380px;
2278 width: 380px;
2281 background: #FFFFFF url("../images/login.png") no-repeat top left;
2279 background: #FFFFFF url("../images/login.png") no-repeat top left;
2282 border-top: none;
2280 border-top: none;
2283 border-bottom: none;
2281 border-bottom: none;
2284 }
2282 }
2285
2283
2286 /*
2284 /*
2287 login / form
2285 login / form
2288 */
2286 */
2289 #login div.form {
2287 #login div.form {
2290 margin: 0;
2288 margin: 0;
2291 padding: 0;
2289 padding: 0;
2292 clear: both;
2290 clear: both;
2293 overflow: hidden;
2291 overflow: hidden;
2294 }
2292 }
2295
2293
2296 #login div.form div.fields {
2294 #login div.form div.fields {
2297 margin: 0;
2295 margin: 0;
2298 padding: 0;
2296 padding: 0;
2299 clear: both;
2297 clear: both;
2300 overflow: hidden;
2298 overflow: hidden;
2301 }
2299 }
2302
2300
2303 #login div.form div.fields div.field {
2301 #login div.form div.fields div.field {
2304 margin: 0;
2302 margin: 0;
2305 padding: 0 0 10px 0;
2303 padding: 0 0 10px 0;
2306 clear: both;
2304 clear: both;
2307 overflow: hidden;
2305 overflow: hidden;
2308 }
2306 }
2309
2307
2310 #login div.form div.fields div.field span.error-message {
2308 #login div.form div.fields div.field span.error-message {
2311 margin: 8px 0 0 0;
2309 margin: 8px 0 0 0;
2312 padding: 0;
2310 padding: 0;
2313 height: 1%;
2311 height: 1%;
2314 display: block;
2312 display: block;
2315 color: #FF0000;
2313 color: #FF0000;
2316 }
2314 }
2317
2315
2318 #login div.form div.fields div.field div.label {
2316 #login div.form div.fields div.field div.label {
2319 margin: 2px 10px 0 0;
2317 margin: 2px 10px 0 0;
2320 padding: 5px 0 0 5px;
2318 padding: 5px 0 0 5px;
2321 width: 173px;
2319 width: 173px;
2322 float: left;
2320 float: left;
2323 text-align: right;
2321 text-align: right;
2324 }
2322 }
2325
2323
2326 #login div.form div.fields div.field div.label label {
2324 #login div.form div.fields div.field div.label label {
2327 color: #000000;
2325 color: #000000;
2328 font-weight: bold;
2326 font-weight: bold;
2329 }
2327 }
2330
2328
2331 #login div.form div.fields div.field div.label span {
2329 #login div.form div.fields div.field div.label span {
2332 margin: 0;
2330 margin: 0;
2333 padding: 2px 0 0 0;
2331 padding: 2px 0 0 0;
2334 height: 1%;
2332 height: 1%;
2335 display: block;
2333 display: block;
2336 color: #363636;
2334 color: #363636;
2337 }
2335 }
2338
2336
2339 #login div.form div.fields div.field div.input {
2337 #login div.form div.fields div.field div.input {
2340 margin: 0;
2338 margin: 0;
2341 padding: 0;
2339 padding: 0;
2342 float: left;
2340 float: left;
2343 }
2341 }
2344
2342
2345 #login div.form div.fields div.field div.input input {
2343 #login div.form div.fields div.field div.input input {
2346 margin: 0;
2344 margin: 0;
2347 padding: 7px 7px 6px 7px;
2345 padding: 7px 7px 6px 7px;
2348 width: 176px;
2346 width: 176px;
2349 background: #FFFFFF;
2347 background: #FFFFFF;
2350 border-top: 1px solid #b3b3b3;
2348 border-top: 1px solid #b3b3b3;
2351 border-left: 1px solid #b3b3b3;
2349 border-left: 1px solid #b3b3b3;
2352 border-right: 1px solid #eaeaea;
2350 border-right: 1px solid #eaeaea;
2353 border-bottom: 1px solid #eaeaea;
2351 border-bottom: 1px solid #eaeaea;
2354 color: #000000;
2352 color: #000000;
2355 font-family: Lucida Grande, Verdana, Lucida Sans Regular,
2353 font-family: Lucida Grande, Verdana, Lucida Sans Regular,
2356 Lucida Sans Unicode, Arial, sans-serif;
2354 Lucida Sans Unicode, Arial, sans-serif;
2357 font-size: 11px;
2355 font-size: 11px;
2358 }
2356 }
2359
2357
2360 #login div.form div.fields div.field div.input input.error {
2358 #login div.form div.fields div.field div.input input.error {
2361 background: #FBE3E4;
2359 background: #FBE3E4;
2362 border-top: 1px solid #e1b2b3;
2360 border-top: 1px solid #e1b2b3;
2363 border-left: 1px solid #e1b2b3;
2361 border-left: 1px solid #e1b2b3;
2364 border-right: 1px solid #FBC2C4;
2362 border-right: 1px solid #FBC2C4;
2365 border-bottom: 1px solid #FBC2C4;
2363 border-bottom: 1px solid #FBC2C4;
2366 }
2364 }
2367
2365
2368 #login div.form div.fields div.field div.input input.success {
2366 #login div.form div.fields div.field div.input input.success {
2369 background: #E6EFC2;
2367 background: #E6EFC2;
2370 border-top: 1px solid #cebb98;
2368 border-top: 1px solid #cebb98;
2371 border-left: 1px solid #cebb98;
2369 border-left: 1px solid #cebb98;
2372 border-right: 1px solid #c6d880;
2370 border-right: 1px solid #c6d880;
2373 border-bottom: 1px solid #c6d880;
2371 border-bottom: 1px solid #c6d880;
2374 }
2372 }
2375
2373
2376 #login div.form div.fields div.field div.input div.link {
2374 #login div.form div.fields div.field div.input div.link {
2377 margin: 6px 0 0 0;
2375 margin: 6px 0 0 0;
2378 padding: 0;
2376 padding: 0;
2379 text-align: right;
2377 text-align: right;
2380 }
2378 }
2381
2379
2382 #login div.form div.fields div.field div.checkbox {
2380 #login div.form div.fields div.field div.checkbox {
2383 margin: 0 0 0 184px;
2381 margin: 0 0 0 184px;
2384 padding: 0;
2382 padding: 0;
2385 }
2383 }
2386
2384
2387 #login div.form div.fields div.field div.checkbox label {
2385 #login div.form div.fields div.field div.checkbox label {
2388 color: #565656;
2386 color: #565656;
2389 font-weight: bold;
2387 font-weight: bold;
2390 }
2388 }
2391
2389
2392 #login div.form div.fields div.buttons {
2390 #login div.form div.fields div.buttons {
2393 margin: 0;
2391 margin: 0;
2394 padding: 10px 0 0 0;
2392 padding: 10px 0 0 0;
2395 clear: both;
2393 clear: both;
2396 overflow: hidden;
2394 overflow: hidden;
2397 border-top: 1px solid #DDDDDD;
2395 border-top: 1px solid #DDDDDD;
2398 text-align: right;
2396 text-align: right;
2399 }
2397 }
2400
2398
2401 #login div.form div.fields div.buttons input {
2399 #login div.form div.fields div.buttons input {
2402 margin: 0;
2400 margin: 0;
2403 color: #000000;
2401 color: #000000;
2404 font-size: 1.0em;
2402 font-size: 1.0em;
2405 font-weight: bold;
2403 font-weight: bold;
2406 font-family: Verdana, Helvetica, Sans-Serif;
2404 font-family: Verdana, Helvetica, Sans-Serif;
2407 }
2405 }
2408
2406
2409 #login div.form div.fields div.buttons input.ui-state-default {
2407 #login div.form div.fields div.buttons input.ui-state-default {
2410 margin: 0;
2408 margin: 0;
2411 padding: 6px 12px 6px 12px;
2409 padding: 6px 12px 6px 12px;
2412 background: #e5e3e3 url("../images/button.png") repeat-x;
2410 background: #e5e3e3 url("../images/button.png") repeat-x;
2413 border-top: 1px solid #DDDDDD;
2411 border-top: 1px solid #DDDDDD;
2414 border-left: 1px solid #c6c6c6;
2412 border-left: 1px solid #c6c6c6;
2415 border-right: 1px solid #DDDDDD;
2413 border-right: 1px solid #DDDDDD;
2416 border-bottom: 1px solid #c6c6c6;
2414 border-bottom: 1px solid #c6c6c6;
2417 color: #515151;
2415 color: #515151;
2418 }
2416 }
2419
2417
2420 #login div.form div.fields div.buttons input.ui-state-hover {
2418 #login div.form div.fields div.buttons input.ui-state-hover {
2421 margin: 0;
2419 margin: 0;
2422 padding: 6px 12px 6px 12px;
2420 padding: 6px 12px 6px 12px;
2423 background: #b4b4b4 url("../images/button_selected.png") repeat-x;
2421 background: #b4b4b4 url("../images/button_selected.png") repeat-x;
2424 border-top: 1px solid #cccccc;
2422 border-top: 1px solid #cccccc;
2425 border-left: 1px solid #bebebe;
2423 border-left: 1px solid #bebebe;
2426 border-right: 1px solid #b1b1b1;
2424 border-right: 1px solid #b1b1b1;
2427 border-bottom: 1px solid #afafaf;
2425 border-bottom: 1px solid #afafaf;
2428 color: #515151;
2426 color: #515151;
2429 }
2427 }
2430
2428
2431 /*
2429 /*
2432 login / links
2430 login / links
2433 */
2431 */
2434 #login div.form div.links {
2432 #login div.form div.links {
2435 margin: 10px 0 0 0;
2433 margin: 10px 0 0 0;
2436 padding: 0 0 2px 0;
2434 padding: 0 0 2px 0;
2437 clear: both;
2435 clear: both;
2438 overflow: hidden;
2436 overflow: hidden;
2439 }
2437 }
2440
2438
2441 /*
2439 /*
2442 register
2440 register
2443 */
2441 */
2444 #register {
2442 #register {
2445 margin: 10% auto 0 auto;
2443 margin: 10% auto 0 auto;
2446 padding: 0;
2444 padding: 0;
2447 width: 420px;
2445 width: 420px;
2448 }
2446 }
2449
2447
2450 /*
2448 /*
2451 register / colors
2449 register / colors
2452 */
2450 */
2453 #register div.color {
2451 #register div.color {
2454 margin: 10px auto 0 auto;
2452 margin: 10px auto 0 auto;
2455 padding: 3px 3px 3px 0;
2453 padding: 3px 3px 3px 0;
2456 clear: both;
2454 clear: both;
2457 overflow: hidden;
2455 overflow: hidden;
2458 background: #FFFFFF;
2456 background: #FFFFFF;
2459 }
2457 }
2460
2458
2461 #register div.color a {
2459 #register div.color a {
2462 margin: 0 0 0 3px;
2460 margin: 0 0 0 3px;
2463 padding: 0;
2461 padding: 0;
2464 width: 20px;
2462 width: 20px;
2465 height: 20px;
2463 height: 20px;
2466 display: block;
2464 display: block;
2467 float: left;
2465 float: left;
2468 }
2466 }
2469
2467
2470 /*
2468 /*
2471 register / title
2469 register / title
2472 */
2470 */
2473 #register div.title {
2471 #register div.title {
2474 margin: 0 auto;
2472 margin: 0 auto;
2475 padding: 0;
2473 padding: 0;
2476 width: 420px;
2474 width: 420px;
2477 clear: both;
2475 clear: both;
2478 overflow: hidden;
2476 overflow: hidden;
2479 position: relative;
2477 position: relative;
2480 background: #003367 url("../images/header_inner.png") repeat-x;
2478 background: #003367 url("../images/header_inner.png") repeat-x;
2481 }
2479 }
2482
2480
2483 #register div.title h5 {
2481 #register div.title h5 {
2484 margin: 10px;
2482 margin: 10px;
2485 padding: 0;
2483 padding: 0;
2486 color: #ffffff;
2484 color: #ffffff;
2487 }
2485 }
2488
2486
2489 /*
2487 /*
2490 register / inner
2488 register / inner
2491 */
2489 */
2492 #register div.title div.corner {
2490 #register div.title div.corner {
2493 height: 6px;
2491 height: 6px;
2494 width: 6px;
2492 width: 6px;
2495 position: absolute;
2493 position: absolute;
2496 background: url("../images/login_corners.png") no-repeat;
2494 background: url("../images/login_corners.png") no-repeat;
2497 }
2495 }
2498
2496
2499 #register div.title div.tl {
2497 #register div.title div.tl {
2500 top: 0;
2498 top: 0;
2501 left: 0;
2499 left: 0;
2502 background-position: 0 0;
2500 background-position: 0 0;
2503 }
2501 }
2504
2502
2505 #register div.title div.tr {
2503 #register div.title div.tr {
2506 top: 0;
2504 top: 0;
2507 right: 0;
2505 right: 0;
2508 background-position: -6px 0;
2506 background-position: -6px 0;
2509 }
2507 }
2510
2508
2511 #register div.inner {
2509 #register div.inner {
2512 margin: 0 auto;
2510 margin: 0 auto;
2513 padding: 20px;
2511 padding: 20px;
2514 width: 380px;
2512 width: 380px;
2515 background: #FFFFFF;
2513 background: #FFFFFF;
2516 border-top: none;
2514 border-top: none;
2517 border-bottom: none;
2515 border-bottom: none;
2518 }
2516 }
2519
2517
2520 /*
2518 /*
2521 register / form
2519 register / form
2522 */
2520 */
2523 #register div.form {
2521 #register div.form {
2524 margin: 0;
2522 margin: 0;
2525 padding: 0;
2523 padding: 0;
2526 clear: both;
2524 clear: both;
2527 overflow: hidden;
2525 overflow: hidden;
2528 }
2526 }
2529
2527
2530 #register div.form div.fields {
2528 #register div.form div.fields {
2531 margin: 0;
2529 margin: 0;
2532 padding: 0;
2530 padding: 0;
2533 clear: both;
2531 clear: both;
2534 overflow: hidden;
2532 overflow: hidden;
2535 }
2533 }
2536
2534
2537 #register div.form div.fields div.field {
2535 #register div.form div.fields div.field {
2538 margin: 0;
2536 margin: 0;
2539 padding: 0 0 10px 0;
2537 padding: 0 0 10px 0;
2540 clear: both;
2538 clear: both;
2541 overflow: hidden;
2539 overflow: hidden;
2542 }
2540 }
2543
2541
2544 #register div.form div.fields div.field span.error-message {
2542 #register div.form div.fields div.field span.error-message {
2545 margin: 8px 0 0 0;
2543 margin: 8px 0 0 0;
2546 padding: 0;
2544 padding: 0;
2547 height: 1%;
2545 height: 1%;
2548 display: block;
2546 display: block;
2549 color: #FF0000;
2547 color: #FF0000;
2550 }
2548 }
2551
2549
2552 #register div.form div.fields div.field div.label {
2550 #register div.form div.fields div.field div.label {
2553 margin: 2px 10px 0 0;
2551 margin: 2px 10px 0 0;
2554 padding: 5px 0 0 5px;
2552 padding: 5px 0 0 5px;
2555 width: 100px;
2553 width: 100px;
2556 float: left;
2554 float: left;
2557 text-align: right;
2555 text-align: right;
2558 }
2556 }
2559
2557
2560 #register div.form div.fields div.field div.label label {
2558 #register div.form div.fields div.field div.label label {
2561 color: #000000;
2559 color: #000000;
2562 font-weight: bold;
2560 font-weight: bold;
2563 }
2561 }
2564
2562
2565 #register div.form div.fields div.field div.label span {
2563 #register div.form div.fields div.field div.label span {
2566 margin: 0;
2564 margin: 0;
2567 padding: 2px 0 0 0;
2565 padding: 2px 0 0 0;
2568 height: 1%;
2566 height: 1%;
2569 display: block;
2567 display: block;
2570 color: #363636;
2568 color: #363636;
2571 }
2569 }
2572
2570
2573 #register div.form div.fields div.field div.input {
2571 #register div.form div.fields div.field div.input {
2574 margin: 0;
2572 margin: 0;
2575 padding: 0;
2573 padding: 0;
2576 float: left;
2574 float: left;
2577 }
2575 }
2578
2576
2579 #register div.form div.fields div.field div.input input {
2577 #register div.form div.fields div.field div.input input {
2580 margin: 0;
2578 margin: 0;
2581 padding: 7px 7px 6px 7px;
2579 padding: 7px 7px 6px 7px;
2582 width: 245px;
2580 width: 245px;
2583 background: #FFFFFF;
2581 background: #FFFFFF;
2584 border-top: 1px solid #b3b3b3;
2582 border-top: 1px solid #b3b3b3;
2585 border-left: 1px solid #b3b3b3;
2583 border-left: 1px solid #b3b3b3;
2586 border-right: 1px solid #eaeaea;
2584 border-right: 1px solid #eaeaea;
2587 border-bottom: 1px solid #eaeaea;
2585 border-bottom: 1px solid #eaeaea;
2588 color: #000000;
2586 color: #000000;
2589 font-family: Lucida Grande, Verdana, Lucida Sans Regular,
2587 font-family: Lucida Grande, Verdana, Lucida Sans Regular,
2590 Lucida Sans Unicode, Arial, sans-serif;
2588 Lucida Sans Unicode, Arial, sans-serif;
2591 font-size: 11px;
2589 font-size: 11px;
2592 }
2590 }
2593
2591
2594 #register div.form div.fields div.field div.input input.error {
2592 #register div.form div.fields div.field div.input input.error {
2595 background: #FBE3E4;
2593 background: #FBE3E4;
2596 border-top: 1px solid #e1b2b3;
2594 border-top: 1px solid #e1b2b3;
2597 border-left: 1px solid #e1b2b3;
2595 border-left: 1px solid #e1b2b3;
2598 border-right: 1px solid #FBC2C4;
2596 border-right: 1px solid #FBC2C4;
2599 border-bottom: 1px solid #FBC2C4;
2597 border-bottom: 1px solid #FBC2C4;
2600 }
2598 }
2601
2599
2602 #register div.form div.fields div.field div.input input.success {
2600 #register div.form div.fields div.field div.input input.success {
2603 background: #E6EFC2;
2601 background: #E6EFC2;
2604 border-top: 1px solid #cebb98;
2602 border-top: 1px solid #cebb98;
2605 border-left: 1px solid #cebb98;
2603 border-left: 1px solid #cebb98;
2606 border-right: 1px solid #c6d880;
2604 border-right: 1px solid #c6d880;
2607 border-bottom: 1px solid #c6d880;
2605 border-bottom: 1px solid #c6d880;
2608 }
2606 }
2609
2607
2610 #register div.form div.fields div.field div.input div.link {
2608 #register div.form div.fields div.field div.input div.link {
2611 margin: 6px 0 0 0;
2609 margin: 6px 0 0 0;
2612 padding: 0;
2610 padding: 0;
2613 text-align: right;
2611 text-align: right;
2614 }
2612 }
2615
2613
2616 #register div.form div.fields div.field div.checkbox {
2614 #register div.form div.fields div.field div.checkbox {
2617 margin: 0 0 0 184px;
2615 margin: 0 0 0 184px;
2618 padding: 0;
2616 padding: 0;
2619 }
2617 }
2620
2618
2621 #register div.form div.fields div.field div.checkbox label {
2619 #register div.form div.fields div.field div.checkbox label {
2622 color: #565656;
2620 color: #565656;
2623 font-weight: bold;
2621 font-weight: bold;
2624 }
2622 }
2625
2623
2626 #register div.form div.fields div.buttons {
2624 #register div.form div.fields div.buttons {
2627 margin: 0;
2625 margin: 0;
2628 padding: 10px 0 0 114px;
2626 padding: 10px 0 0 114px;
2629 clear: both;
2627 clear: both;
2630 overflow: hidden;
2628 overflow: hidden;
2631 border-top: 1px solid #DDDDDD;
2629 border-top: 1px solid #DDDDDD;
2632 text-align: left;
2630 text-align: left;
2633 }
2631 }
2634
2632
2635 #register div.form div.fields div.buttons input {
2633 #register div.form div.fields div.buttons input {
2636 margin: 0;
2634 margin: 0;
2637 color: #000000;
2635 color: #000000;
2638 font-size: 1.0em;
2636 font-size: 1.0em;
2639 font-weight: bold;
2637 font-weight: bold;
2640 font-family: Verdana, Helvetica, Sans-Serif;
2638 font-family: Verdana, Helvetica, Sans-Serif;
2641 }
2639 }
2642
2640
2643 #register div.form div.fields div.buttons input.ui-state-default {
2641 #register div.form div.fields div.buttons input.ui-state-default {
2644 margin: 0;
2642 margin: 0;
2645 padding: 6px 12px 6px 12px;
2643 padding: 6px 12px 6px 12px;
2646 background: #e5e3e3 url("../images/button.png") repeat-x;
2644 background: #e5e3e3 url("../images/button.png") repeat-x;
2647 border-top: 1px solid #DDDDDD;
2645 border-top: 1px solid #DDDDDD;
2648 border-left: 1px solid #c6c6c6;
2646 border-left: 1px solid #c6c6c6;
2649 border-right: 1px solid #DDDDDD;
2647 border-right: 1px solid #DDDDDD;
2650 border-bottom: 1px solid #c6c6c6;
2648 border-bottom: 1px solid #c6c6c6;
2651 color: #515151;
2649 color: #515151;
2652 }
2650 }
2653
2651
2654 #register div.form div.fields div.buttons div.highlight input.ui-state-default
2652 #register div.form div.fields div.buttons div.highlight input.ui-state-default
2655 {
2653 {
2656 background: url("../images/button_highlight.png") repeat-x scroll 0 0
2654 background: url("../images/button_highlight.png") repeat-x scroll 0 0
2657 #4E85BB;
2655 #4E85BB;
2658 border-color: #5C91A4 #2B7089 #1A6480 #2A6F89;
2656 border-color: #5C91A4 #2B7089 #1A6480 #2A6F89;
2659 border-style: solid;
2657 border-style: solid;
2660 border-width: 1px;
2658 border-width: 1px;
2661 color: #FFFFFF;
2659 color: #FFFFFF;
2662 }
2660 }
2663
2661
2664 #register div.form div.fields div.buttons input.ui-state-hover {
2662 #register div.form div.fields div.buttons input.ui-state-hover {
2665 margin: 0;
2663 margin: 0;
2666 padding: 6px 12px 6px 12px;
2664 padding: 6px 12px 6px 12px;
2667 background: #b4b4b4 url("../images/button_selected.png") repeat-x;
2665 background: #b4b4b4 url("../images/button_selected.png") repeat-x;
2668 border-top: 1px solid #cccccc;
2666 border-top: 1px solid #cccccc;
2669 border-left: 1px solid #bebebe;
2667 border-left: 1px solid #bebebe;
2670 border-right: 1px solid #b1b1b1;
2668 border-right: 1px solid #b1b1b1;
2671 border-bottom: 1px solid #afafaf;
2669 border-bottom: 1px solid #afafaf;
2672 color: #515151;
2670 color: #515151;
2673 }
2671 }
2674
2672
2675 #register div.form div.activation_msg {
2673 #register div.form div.activation_msg {
2676 padding-top: 4px;
2674 padding-top: 4px;
2677 padding-bottom: 4px;
2675 padding-bottom: 4px;
2678 }
2676 }
2679
2677
2680 /*
2678 /*
2681 SUMMARY
2679 SUMMARY
2682 */
2680 */
2683 .trending_language_tbl,.trending_language_tbl td {
2681 .trending_language_tbl,.trending_language_tbl td {
2684 margin: 0px !important;
2682 margin: 0px !important;
2685 padding: 0px !important;
2683 padding: 0px !important;
2686 border: 0 !important;
2684 border: 0 !important;
2687 }
2685 }
2688
2686
2689 .trending_language {
2687 .trending_language {
2690 -moz-border-radius-bottomright: 4px;
2688 -moz-border-radius-bottomright: 4px;
2691 -moz-border-radius-topright: 4px;
2689 -moz-border-radius-topright: 4px;
2692 border-bottom-right-radius: 4px 4px;
2690 border-bottom-right-radius: 4px 4px;
2693 border-top-right-radius: 4px 4px;
2691 border-top-right-radius: 4px 4px;
2694 background-color: #336699;
2692 background-color: #336699;
2695 color: #FFFFFF;
2693 color: #FFFFFF;
2696 display: block;
2694 display: block;
2697 min-width: 20px;
2695 min-width: 20px;
2698 max-width: 400px;
2696 max-width: 400px;
2699 padding: 3px;
2697 padding: 3px;
2700 text-decoration: none;
2698 text-decoration: none;
2701 height: 12px;
2699 height: 12px;
2702 margin-bottom: 4px;
2700 margin-bottom: 4px;
2703 margin-left: 5px;
2701 margin-left: 5px;
2704 white-space: pre;
2702 white-space: pre;
2705 }
2703 }
2706
2704
2707 #clone_url {
2705 #clone_url {
2708 border: none;
2706 border: none;
2709 }
2707 }
2710
2708
2711 /*
2709 /*
2712 FILES
2710 FILES
2713 */
2711 */
2714 h3.files_location {
2712 h3.files_location {
2715 font-size: 1.8em;
2713 font-size: 1.8em;
2716 font-weight: bold;
2714 font-weight: bold;
2717 margin: 10px 0 !important;
2715 margin: 10px 0 !important;
2718 border-bottom: none !important;
2716 border-bottom: none !important;
2719 }
2717 }
2720
2718
2721 #files_data.dl {
2719 #files_data.dl {
2722
2720
2723 }
2721 }
2724
2722
2725 #files_data dl dt {
2723 #files_data dl dt {
2726 float: left;
2724 float: left;
2727 margin: 0 !important;
2725 margin: 0 !important;
2728 padding: 5px;
2726 padding: 5px;
2729 width: 115px;
2727 width: 115px;
2730 }
2728 }
2731
2729
2732 #files_data dl dd {
2730 #files_data dl dd {
2733 margin: 0 !important;
2731 margin: 0 !important;
2734 padding: 5px !important;
2732 padding: 5px !important;
2735 }
2733 }
2736
2734
2737 /*
2735 /*
2738 CHANGESETS
2736 CHANGESETS
2739 */
2737 */
2740 #changeset_content {
2738 #changeset_content {
2741 border: 1px solid #CCCCCC;
2739 border: 1px solid #CCCCCC;
2742 padding: 5px;
2740 padding: 5px;
2743 }
2741 }
2744
2742
2745 #changeset_content .container .wrapper {
2743 #changeset_content .container .wrapper {
2746 width: 600px;
2744 width: 600px;
2747 }
2745 }
2748
2746
2749 #changeset_content .container {
2747 #changeset_content .container {
2750 min-height: 120px;
2748 min-height: 120px;
2751 font-size: 1.2em;
2749 font-size: 1.2em;
2752 overflow: hidden;
2750 overflow: hidden;
2753 }
2751 }
2754
2752
2755 #changeset_content .container .left {
2753 #changeset_content .container .left {
2756 float: left;
2754 float: left;
2757 width: 70%;
2755 width: 70%;
2758 padding-left: 5px;
2756 padding-left: 5px;
2759 }
2757 }
2760
2758
2761 #changeset_content .container .right {
2759 #changeset_content .container .right {
2762 float: right;
2760 float: right;
2763 width: 25%;
2761 width: 25%;
2764 text-align: right;
2762 text-align: right;
2765 }
2763 }
2766
2764
2767 #changeset_content .container .left .date {
2765 #changeset_content .container .left .date {
2768 font-weight: bold;
2766 font-weight: bold;
2769 }
2767 }
2770
2768
2771 #changeset_content .container .left .author {
2769 #changeset_content .container .left .author {
2772
2770
2773 }
2771 }
2774
2772
2775 #changeset_content .container .left .message {
2773 #changeset_content .container .left .message {
2776 font-style: italic;
2774 font-style: italic;
2777 color: #556CB5;
2775 color: #556CB5;
2778 white-space: pre-wrap;
2776 white-space: pre-wrap;
2779 }
2777 }
2780
2778
2781 .cs_files {
2779 .cs_files {
2782
2780
2783 }
2781 }
2784
2782
2785 .cs_files .cs_added {
2783 .cs_files .cs_added {
2786 background: url("/images/icons/page_white_add.png") no-repeat scroll 3px;
2784 background: url("/images/icons/page_white_add.png") no-repeat scroll 3px;
2787 /*background-color:#BBFFBB;*/
2785 /*background-color:#BBFFBB;*/
2788 height: 16px;
2786 height: 16px;
2789 padding-left: 20px;
2787 padding-left: 20px;
2790 margin-top: 7px;
2788 margin-top: 7px;
2791 text-align: left;
2789 text-align: left;
2792 }
2790 }
2793
2791
2794 .cs_files .cs_changed {
2792 .cs_files .cs_changed {
2795 background: url("/images/icons/page_white_edit.png") no-repeat scroll
2793 background: url("/images/icons/page_white_edit.png") no-repeat scroll
2796 3px;
2794 3px;
2797 /*background-color: #FFDD88;*/
2795 /*background-color: #FFDD88;*/
2798 height: 16px;
2796 height: 16px;
2799 padding-left: 20px;
2797 padding-left: 20px;
2800 margin-top: 7px;
2798 margin-top: 7px;
2801 text-align: left;
2799 text-align: left;
2802 }
2800 }
2803
2801
2804 .cs_files .cs_removed {
2802 .cs_files .cs_removed {
2805 background: url("/images/icons/page_white_delete.png") no-repeat scroll
2803 background: url("/images/icons/page_white_delete.png") no-repeat scroll
2806 3px;
2804 3px;
2807 /*background-color: #FF8888;*/
2805 /*background-color: #FF8888;*/
2808 height: 16px;
2806 height: 16px;
2809 padding-left: 20px;
2807 padding-left: 20px;
2810 margin-top: 7px;
2808 margin-top: 7px;
2811 text-align: left;
2809 text-align: left;
2812 }
2810 }
2813
2811
2814 /*
2812 /*
2815 CHANGESETS - CANVAS
2813 CHANGESETS - CANVAS
2816 */
2814 */
2817 #graph {
2815 #graph {
2818 overflow: hidden;
2816 overflow: hidden;
2819 }
2817 }
2820
2818
2821 #graph_nodes {
2819 #graph_nodes {
2822 width: 160px;
2820 width: 160px;
2823 float: left;
2821 float: left;
2824 margin-left: -50px;
2822 margin-left: -50px;
2825 margin-top: 5px;
2823 margin-top: 5px;
2826 }
2824 }
2827
2825
2828 #graph_content {
2826 #graph_content {
2829 width: 800px;
2827 width: 800px;
2830 float: left;
2828 float: left;
2831 }
2829 }
2832
2830
2833 #graph_content .container_header {
2831 #graph_content .container_header {
2834 border: 1px solid #CCCCCC;
2832 border: 1px solid #CCCCCC;
2835 padding: 10px;
2833 padding: 10px;
2836 }
2834 }
2837
2835
2838 #graph_content .container .wrapper {
2836 #graph_content .container .wrapper {
2839 width: 600px;
2837 width: 600px;
2840 }
2838 }
2841
2839
2842 #graph_content .container {
2840 #graph_content .container {
2843 border-bottom: 1px solid #CCCCCC;
2841 border-bottom: 1px solid #CCCCCC;
2844 border-left: 1px solid #CCCCCC;
2842 border-left: 1px solid #CCCCCC;
2845 border-right: 1px solid #CCCCCC;
2843 border-right: 1px solid #CCCCCC;
2846 min-height: 80px;
2844 min-height: 80px;
2847 overflow: hidden;
2845 overflow: hidden;
2848 font-size: 1.2em;
2846 font-size: 1.2em;
2849 }
2847 }
2850
2848
2851 #graph_content .container .left {
2849 #graph_content .container .left {
2852 float: left;
2850 float: left;
2853 width: 70%;
2851 width: 70%;
2854 padding-left: 5px;
2852 padding-left: 5px;
2855 }
2853 }
2856
2854
2857 #graph_content .container .right {
2855 #graph_content .container .right {
2858 float: right;
2856 float: right;
2859 width: 28%;
2857 width: 28%;
2860 text-align: right;
2858 text-align: right;
2861 padding-bottom: 5px;
2859 padding-bottom: 5px;
2862 }
2860 }
2863
2861
2864 #graph_content .container .left .date {
2862 #graph_content .container .left .date {
2865 font-weight: bold;
2863 font-weight: bold;
2866 padding-bottom: 5px;
2864 padding-bottom: 5px;
2867 }
2865 }
2868
2866
2869 #graph_content .container .left .author {
2867 #graph_content .container .left .author {
2870
2868
2871 }
2869 }
2872
2870
2873 #graph_content .container .left .message {
2871 #graph_content .container .left .message {
2874 font-size: 100%;
2872 font-size: 100%;
2875 padding-top: 3px;
2873 padding-top: 3px;
2876 white-space: pre-wrap;
2874 white-space: pre-wrap;
2877 }
2875 }
2878
2876
2879 .right div {
2877 .right div {
2880 clear: both;
2878 clear: both;
2881 }
2879 }
2882
2880
2883 .right .changes .added,.changed,.removed {
2881 .right .changes .added,.changed,.removed {
2884 border: 1px solid #DDDDDD;
2882 border: 1px solid #DDDDDD;
2885 display: block;
2883 display: block;
2886 float: right;
2884 float: right;
2887 text-align: center;
2885 text-align: center;
2888 min-width: 15px;
2886 min-width: 15px;
2889 }
2887 }
2890
2888
2891 .right .changes .added {
2889 .right .changes .added {
2892 background: #BBFFBB;
2890 background: #BBFFBB;
2893 }
2891 }
2894
2892
2895 .right .changes .changed {
2893 .right .changes .changed {
2896 background: #FFDD88;
2894 background: #FFDD88;
2897 }
2895 }
2898
2896
2899 .right .changes .removed {
2897 .right .changes .removed {
2900 background: #FF8888;
2898 background: #FF8888;
2901 }
2899 }
2902
2900
2903 .right .merge {
2901 .right .merge {
2904 vertical-align: top;
2902 vertical-align: top;
2905 font-size: 60%;
2903 font-size: 60%;
2906 font-weight: bold;
2904 font-weight: bold;
2907 }
2905 }
2908
2906
2909 .right .merge img {
2907 .right .merge img {
2910 vertical-align: bottom;
2908 vertical-align: bottom;
2911 }
2909 }
2912
2910
2913 .right .parent {
2911 .right .parent {
2914 font-size: 90%;
2912 font-size: 90%;
2915 font-family: monospace;
2913 font-family: monospace;
2916 }
2914 }
2917
2915
2918 .right .logtags .branchtag {
2916 .right .logtags .branchtag {
2919 background: #FFFFFF url("../images/icons/arrow_branch.png") no-repeat
2917 background: #FFFFFF url("../images/icons/arrow_branch.png") no-repeat
2920 right 6px;
2918 right 6px;
2921 display: block;
2919 display: block;
2922 padding: 8px 16px 0px 0px
2920 padding: 8px 16px 0px 0px
2923 }
2921 }
2924
2922
2925 .right .logtags .tagtag {
2923 .right .logtags .tagtag {
2926 background: #FFFFFF url("../images/icons/tag_blue.png") no-repeat right
2924 background: #FFFFFF url("../images/icons/tag_blue.png") no-repeat right
2927 6px;
2925 6px;
2928 display: block;
2926 display: block;
2929 padding: 6px 18px 0px 0px
2927 padding: 6px 18px 0px 0px
2930 }
2928 }
2931
2929
2932 /*
2930 /*
2933 FILE BROWSER
2931 FILE BROWSER
2934 */
2932 */
2935 div.browserblock {
2933 div.browserblock {
2936 overflow: hidden;
2934 overflow: hidden;
2937 padding: 0px;
2935 padding: 0px;
2938 border: 1px solid #ccc;
2936 border: 1px solid #ccc;
2939 background: #f8f8f8;
2937 background: #f8f8f8;
2940 font-size: 100%;
2938 font-size: 100%;
2941 line-height: 100%;
2939 line-height: 100%;
2942 /* new */
2940 /* new */
2943 line-height: 125%;
2941 line-height: 125%;
2944 }
2942 }
2945
2943
2946 div.browserblock .browser-header {
2944 div.browserblock .browser-header {
2947 border-bottom: 1px solid #CCCCCC;
2945 border-bottom: 1px solid #CCCCCC;
2948 background: #FFFFFF;
2946 background: #FFFFFF;
2949 color: blue;
2947 color: blue;
2950 padding: 10px 0 10px 0;
2948 padding: 10px 0 10px 0;
2951 }
2949 }
2952
2950
2953 div.browserblock .browser-header span {
2951 div.browserblock .browser-header span {
2954 margin-left: 25px;
2952 margin-left: 25px;
2955 font-weight: bold;
2953 font-weight: bold;
2956 }
2954 }
2957
2955
2958 div.browserblock .browser-body {
2956 div.browserblock .browser-body {
2959 background: #EEEEEE;
2957 background: #EEEEEE;
2960 }
2958 }
2961
2959
2962 table.code-browser {
2960 table.code-browser {
2963 border-collapse: collapse;
2961 border-collapse: collapse;
2964 width: 100%;
2962 width: 100%;
2965 }
2963 }
2966
2964
2967 table.code-browser tr {
2965 table.code-browser tr {
2968 margin: 3px;
2966 margin: 3px;
2969 }
2967 }
2970
2968
2971 table.code-browser thead th {
2969 table.code-browser thead th {
2972 background-color: #EEEEEE;
2970 background-color: #EEEEEE;
2973 height: 20px;
2971 height: 20px;
2974 font-size: 1.1em;
2972 font-size: 1.1em;
2975 font-weight: bold;
2973 font-weight: bold;
2976 text-align: center;
2974 text-align: center;
2977 text-align: left;
2975 text-align: left;
2978 padding-left: 10px;
2976 padding-left: 10px;
2979 }
2977 }
2980
2978
2981 table.code-browser tbody tr {
2979 table.code-browser tbody tr {
2982
2980
2983 }
2981 }
2984
2982
2985 table.code-browser tbody td {
2983 table.code-browser tbody td {
2986 padding-left: 10px;
2984 padding-left: 10px;
2987 height: 20px;
2985 height: 20px;
2988 }
2986 }
2989
2987
2990 table.code-browser .browser-file {
2988 table.code-browser .browser-file {
2991 background: url("/images/icons/document_16.png") no-repeat scroll 3px;
2989 background: url("/images/icons/document_16.png") no-repeat scroll 3px;
2992 height: 16px;
2990 height: 16px;
2993 padding-left: 20px;
2991 padding-left: 20px;
2994 text-align: left;
2992 text-align: left;
2995 }
2993 }
2996
2994
2997 table.code-browser .browser-dir {
2995 table.code-browser .browser-dir {
2998 background: url("/images/icons/folder_16.png") no-repeat scroll 3px;
2996 background: url("/images/icons/folder_16.png") no-repeat scroll 3px;
2999 height: 16px;
2997 height: 16px;
3000 padding-left: 20px;
2998 padding-left: 20px;
3001 text-align: left;
2999 text-align: left;
3002 }
3000 }
3003
3001
3004 /*
3002 /*
3005 SEARCH
3003 SEARCH
3006 */
3004 */
3007 .box .search {
3005 .box .search {
3008 clear: both;
3006 clear: both;
3009 margin: 0;
3007 margin: 0;
3010 overflow: hidden;
3008 overflow: hidden;
3011 padding: 0 20px 10px;
3009 padding: 0 20px 10px;
3012 }
3010 }
3013
3011
3014 .box .search div.search_path {
3012 .box .search div.search_path {
3015 background: none repeat scroll 0 0 #EEEEEE;
3013 background: none repeat scroll 0 0 #EEEEEE;
3016 border: 1px solid #CCCCCC;
3014 border: 1px solid #CCCCCC;
3017 color: blue;
3015 color: blue;
3018 padding: 10px 0;
3016 padding: 10px 0;
3019 margin-bottom: 10px;
3017 margin-bottom: 10px;
3020 }
3018 }
3021
3019
3022 .box .search div.search_path div.link {
3020 .box .search div.search_path div.link {
3023 font-weight: bold;
3021 font-weight: bold;
3024 margin-left: 25px;
3022 margin-left: 25px;
3025 }
3023 }
3026
3024
3027 .box .search div.search_path div.link a {
3025 .box .search div.search_path div.link a {
3028 color: #003367;
3026 color: #003367;
3029 cursor: pointer;
3027 cursor: pointer;
3030 text-decoration: none;
3028 text-decoration: none;
3031 }
3029 }
3032
3030
3033 /*
3031 /*
3034 ADMIN - SETTINGS
3032 ADMIN - SETTINGS
3035 */
3033 */
3036 #path_unlock {
3034 #path_unlock {
3037 color: red;
3035 color: red;
3038 font-size: 1.2em;
3036 font-size: 1.2em;
3039 padding-left: 4px;
3037 padding-left: 4px;
3040 }
3038 }
3041
3039
3042 /*
3040 /*
3043 INFOBOX
3041 INFOBOX
3044 */
3042 */
3045 .info_box * {
3043 .info_box * {
3046 background: url("../../images/pager.png") repeat-x scroll 0 0 #EBEBEB;
3044 background: url("../../images/pager.png") repeat-x scroll 0 0 #EBEBEB;
3047 border-color: #DEDEDE #C4C4C4 #C4C4C4 #CFCFCF;
3045 border-color: #DEDEDE #C4C4C4 #C4C4C4 #CFCFCF;
3048 border-style: solid;
3046 border-style: solid;
3049 border-width: 1px;
3047 border-width: 1px;
3050 color: #4A4A4A;
3048 color: #4A4A4A;
3051 display: block;
3049 display: block;
3052 font-weight: bold;
3050 font-weight: bold;
3053 height: 1%;
3051 height: 1%;
3054 padding: 4px 6px;
3052 padding: 4px 6px;
3055 display: inline;
3053 display: inline;
3056 }
3054 }
3057
3055
3058 .info_box span {
3056 .info_box span {
3059 margin-left: 3px;
3057 margin-left: 3px;
3060 margin-right: 3px;
3058 margin-right: 3px;
3061 }
3059 }
3062
3060
3063 .info_box input#at_rev {
3061 .info_box input#at_rev {
3064 padding: 5px 3px 3px 2px;
3062 padding: 5px 3px 3px 2px;
3065 text-align: center;
3063 text-align: center;
3066 }
3064 }
3067
3065
3068 .info_box input#view {
3066 .info_box input#view {
3069 padding: 4px 3px 2px 2px;
3067 padding: 4px 3px 2px 2px;
3070 text-align: center;
3068 text-align: center;
3071 }
3069 }
3072
3070
3073 /*
3071 /*
3074 YUI TOOLTIP
3072 YUI TOOLTIP
3075 */
3073 */
3076 .yui-overlay,.yui-panel-container {
3074 .yui-overlay,.yui-panel-container {
3077 visibility: hidden;
3075 visibility: hidden;
3078 position: absolute;
3076 position: absolute;
3079 z-index: 2;
3077 z-index: 2;
3080 }
3078 }
3081
3079
3082 .yui-tt {
3080 .yui-tt {
3083 visibility: hidden;
3081 visibility: hidden;
3084 position: absolute;
3082 position: absolute;
3085 color: #666666;
3083 color: #666666;
3086 background-color: #FFFFFF;
3084 background-color: #FFFFFF;
3087 font-family: arial, helvetica, verdana, sans-serif;
3085 font-family: arial, helvetica, verdana, sans-serif;
3088 padding: 8px;
3086 padding: 8px;
3089 border: 2px solid #003367;
3087 border: 2px solid #003367;
3090 font: 100% sans-serif;
3088 font: 100% sans-serif;
3091 width: auto;
3089 width: auto;
3092 opacity: 1.0;
3090 opacity: 1.0;
3093 }
3091 }
3094
3092
3095 .yui-tt-shadow {
3093 .yui-tt-shadow {
3096 display: none;
3094 display: none;
3097 }
3095 }
3098
3096
3099 /*
3097 /*
3100 YUI AUTOCOMPLETE
3098 YUI AUTOCOMPLETE
3101 */
3099 */
3102 .ac {
3100 .ac {
3103 vertical-align: top;
3101 vertical-align: top;
3104 }
3102 }
3105
3103
3106 .ac .match {
3104 .ac .match {
3107 font-weight: bold;
3105 font-weight: bold;
3108 }
3106 }
3109
3107
3110 .ac .yui-ac {
3108 .ac .yui-ac {
3111 position: relative;
3109 position: relative;
3112 font-family: arial;
3110 font-family: arial;
3113 font-size: 100%;
3111 font-size: 100%;
3114 }
3112 }
3115
3113
3116 .ac .perm_ac {
3114 .ac .perm_ac {
3117 width: 15em;
3115 width: 15em;
3118 }
3116 }
3119
3117
3120 /* styles for input field */
3118 /* styles for input field */
3121 .ac .yui-ac-input {
3119 .ac .yui-ac-input {
3122 width: 100%;
3120 width: 100%;
3123 }
3121 }
3124
3122
3125 /* styles for results container */
3123 /* styles for results container */
3126 .ac .yui-ac-container {
3124 .ac .yui-ac-container {
3127 position: absolute;
3125 position: absolute;
3128 top: 1.6em;
3126 top: 1.6em;
3129 width: 100%;
3127 width: 100%;
3130 }
3128 }
3131
3129
3132 /* styles for header/body/footer wrapper within container */
3130 /* styles for header/body/footer wrapper within container */
3133 .ac .yui-ac-content {
3131 .ac .yui-ac-content {
3134 position: absolute;
3132 position: absolute;
3135 width: 100%;
3133 width: 100%;
3136 border: 1px solid #808080;
3134 border: 1px solid #808080;
3137 background: #fff;
3135 background: #fff;
3138 overflow: hidden;
3136 overflow: hidden;
3139 z-index: 9050;
3137 z-index: 9050;
3140 }
3138 }
3141
3139
3142 /* styles for container shadow */
3140 /* styles for container shadow */
3143 .ac .yui-ac-shadow {
3141 .ac .yui-ac-shadow {
3144 position: absolute;
3142 position: absolute;
3145 margin: .3em;
3143 margin: .3em;
3146 width: 100%;
3144 width: 100%;
3147 background: #000;
3145 background: #000;
3148 -moz-opacity: 0.10;
3146 -moz-opacity: 0.10;
3149 opacity: .10;
3147 opacity: .10;
3150 filter: alpha(opacity = 10);
3148 filter: alpha(opacity = 10);
3151 z-index: 9049;
3149 z-index: 9049;
3152 }
3150 }
3153
3151
3154 /* styles for results list */
3152 /* styles for results list */
3155 .ac .yui-ac-content ul {
3153 .ac .yui-ac-content ul {
3156 margin: 0;
3154 margin: 0;
3157 padding: 0;
3155 padding: 0;
3158 width: 100%;
3156 width: 100%;
3159 }
3157 }
3160
3158
3161 /* styles for result item */
3159 /* styles for result item */
3162 .ac .yui-ac-content li {
3160 .ac .yui-ac-content li {
3163 margin: 0;
3161 margin: 0;
3164 padding: 2px 5px;
3162 padding: 2px 5px;
3165 cursor: default;
3163 cursor: default;
3166 white-space: nowrap;
3164 white-space: nowrap;
3167 }
3165 }
3168
3166
3169 /* styles for prehighlighted result item */
3167 /* styles for prehighlighted result item */
3170 .ac .yui-ac-content li.yui-ac-prehighlight {
3168 .ac .yui-ac-content li.yui-ac-prehighlight {
3171 background: #B3D4FF;
3169 background: #B3D4FF;
3172 }
3170 }
3173
3171
3174 /* styles for highlighted result item */
3172 /* styles for highlighted result item */
3175 .ac .yui-ac-content li.yui-ac-highlight {
3173 .ac .yui-ac-content li.yui-ac-highlight {
3176 background: #556CB5;
3174 background: #556CB5;
3177 color: #FFF;
3175 color: #FFF;
3178 }
3176 }
3179
3177
3180 /*
3178 /*
3181 ACTION ICONS
3179 ACTION ICONS
3182 */
3180 */
3183 .add_icon {
3181 .add_icon {
3184 background: url("/images/icons/add.png") no-repeat scroll 3px;
3182 background: url("/images/icons/add.png") no-repeat scroll 3px;
3185 height: 16px;
3183 height: 16px;
3186 padding-left: 20px;
3184 padding-left: 20px;
3187 padding-top: 1px;
3185 padding-top: 1px;
3188 text-align: left;
3186 text-align: left;
3189 }
3187 }
3190
3188
3191 .edit_icon {
3189 .edit_icon {
3192 background: url("/images/icons/folder_edit.png") no-repeat scroll 3px;
3190 background: url("/images/icons/folder_edit.png") no-repeat scroll 3px;
3193 height: 16px;
3191 height: 16px;
3194 padding-left: 20px;
3192 padding-left: 20px;
3195 padding-top: 1px;
3193 padding-top: 1px;
3196 text-align: left;
3194 text-align: left;
3197 }
3195 }
3198
3196
3199 .delete_icon {
3197 .delete_icon {
3200 background: url("/images/icons/delete.png") no-repeat scroll 3px;
3198 background: url("/images/icons/delete.png") no-repeat scroll 3px;
3201 height: 16px;
3199 height: 16px;
3202 padding-left: 20px;
3200 padding-left: 20px;
3203 padding-top: 1px;
3201 padding-top: 1px;
3204 text-align: left;
3202 text-align: left;
3205 }
3203 }
3206
3204
3207 .rss_icon {
3205 .rss_icon {
3208 background: url("/images/icons/rss_16.png") no-repeat scroll 3px;
3206 background: url("/images/icons/rss_16.png") no-repeat scroll 3px;
3209 height: 16px;
3207 height: 16px;
3210 padding-left: 20px;
3208 padding-left: 20px;
3211 padding-top: 1px;
3209 padding-top: 1px;
3212 text-align: left;
3210 text-align: left;
3213 }
3211 }
3214
3212
3215 .atom_icon {
3213 .atom_icon {
3216 background: url("/images/icons/atom.png") no-repeat scroll 3px;
3214 background: url("/images/icons/atom.png") no-repeat scroll 3px;
3217 height: 16px;
3215 height: 16px;
3218 padding-left: 20px;
3216 padding-left: 20px;
3219 padding-top: 1px;
3217 padding-top: 1px;
3220 text-align: left;
3218 text-align: left;
3221 }
3219 }
3222
3220
3223 .archive_icon {
3221 .archive_icon {
3224 background: url("/images/icons/compress.png") no-repeat scroll 3px;
3222 background: url("/images/icons/compress.png") no-repeat scroll 3px;
3225 height: 16px;
3223 height: 16px;
3226 padding-left: 20px;
3224 padding-left: 20px;
3227 text-align: left;
3225 text-align: left;
3228 padding-top: 1px;
3226 padding-top: 1px;
3229 }
3227 }
3230
3228
3231 .action_button {
3229 .action_button {
3232 border: 0px;
3230 border: 0px;
3233 display: block;
3231 display: block;
3234 }
3232 }
3235
3233
3236 .action_button:hover {
3234 .action_button:hover {
3237 border: 0px;
3235 border: 0px;
3238 text-decoration: underline;
3236 text-decoration: underline;
3239 cursor: pointer;
3237 cursor: pointer;
3240 }
3238 }
3241
3239
3242 /*
3240 /*
3243 REPO SWITCHER
3241 REPO SWITCHER
3244 */
3242 */
3245 #switch_repos {
3243 #switch_repos {
3246 position: absolute;
3244 position: absolute;
3247 height: 25px;
3245 height: 25px;
3248 z-index: 1;
3246 z-index: 1;
3249 }
3247 }
3250
3248
3251 #switch_repos select {
3249 #switch_repos select {
3252 min-width: 150px;
3250 min-width: 150px;
3253 max-height: 250px;
3251 max-height: 250px;
3254 z-index: 1;
3252 z-index: 1;
3255 }
3253 }
3256
3254
3257 /*
3255 /*
3258 BREADCRUMBS
3256 BREADCRUMBS
3259 */
3257 */
3260 .breadcrumbs {
3258 .breadcrumbs {
3261 border: medium none;
3259 border: medium none;
3262 color: #FFFFFF;
3260 color: #FFFFFF;
3263 float: left;
3261 float: left;
3264 margin: 0;
3262 margin: 0;
3265 padding: 11px 0 11px 10px;
3263 padding: 11px 0 11px 10px;
3266 text-transform: uppercase;
3264 text-transform: uppercase;
3267 font-weight: bold;
3265 font-weight: bold;
3268 font-size: 14px;
3266 font-size: 14px;
3269 }
3267 }
3270
3268
3271 .breadcrumbs a {
3269 .breadcrumbs a {
3272 color: #FFFFFF;
3270 color: #FFFFFF;
3273 }
3271 }
3274
3272
3275 /*
3273 /*
3276 FLASH MSG
3274 FLASH MSG
3277 */
3275 */
3278 .flash_msg ul {
3276 .flash_msg ul {
3279 margin: 0;
3277 margin: 0;
3280 padding: 0px 0px 10px 0px;
3278 padding: 0px 0px 10px 0px;
3281 }
3279 }
3282
3280
3283 .error_msg {
3281 .error_msg {
3284 background-color: #FFCFCF;
3282 background-color: #FFCFCF;
3285 background-image: url("../../images/icons/error_msg.png");
3283 background-image: url("../../images/icons/error_msg.png");
3286 border: 1px solid #FF9595;
3284 border: 1px solid #FF9595;
3287 color: #CC3300;
3285 color: #CC3300;
3288 }
3286 }
3289
3287
3290 .warning_msg {
3288 .warning_msg {
3291 background-color: #FFFBCC;
3289 background-color: #FFFBCC;
3292 background-image: url("../../images/icons/warning_msg.png");
3290 background-image: url("../../images/icons/warning_msg.png");
3293 border: 1px solid #FFF35E;
3291 border: 1px solid #FFF35E;
3294 color: #C69E00;
3292 color: #C69E00;
3295 }
3293 }
3296
3294
3297 .success_msg {
3295 .success_msg {
3298 background-color: #D5FFCF;
3296 background-color: #D5FFCF;
3299 background-image: url("../../images/icons/success_msg.png");
3297 background-image: url("../../images/icons/success_msg.png");
3300 border: 1px solid #97FF88;
3298 border: 1px solid #97FF88;
3301 color: #009900;
3299 color: #009900;
3302 }
3300 }
3303
3301
3304 .notice_msg {
3302 .notice_msg {
3305 background-color: #DCE3FF;
3303 background-color: #DCE3FF;
3306 background-image: url("../../images/icons/notice_msg.png");
3304 background-image: url("../../images/icons/notice_msg.png");
3307 border: 1px solid #93A8FF;
3305 border: 1px solid #93A8FF;
3308 color: #556CB5;
3306 color: #556CB5;
3309 }
3307 }
3310
3308
3311 .success_msg,.error_msg,.notice_msg,.warning_msg {
3309 .success_msg,.error_msg,.notice_msg,.warning_msg {
3312 background-position: 10px center;
3310 background-position: 10px center;
3313 background-repeat: no-repeat;
3311 background-repeat: no-repeat;
3314 font-size: 12px;
3312 font-size: 12px;
3315 font-weight: bold;
3313 font-weight: bold;
3316 min-height: 14px;
3314 min-height: 14px;
3317 line-height: 14px;
3315 line-height: 14px;
3318 margin-bottom: 0px;
3316 margin-bottom: 0px;
3319 margin-top: 0px;
3317 margin-top: 0px;
3320 padding: 6px 10px 6px 40px;
3318 padding: 6px 10px 6px 40px;
3321 display: block;
3319 display: block;
3322 overflow: auto;
3320 overflow: auto;
3323 }
3321 }
3324
3322
3325 #msg_close {
3323 #msg_close {
3326 background: transparent url("../../icons/cross_grey_small.png")
3324 background: transparent url("../../icons/cross_grey_small.png")
3327 no-repeat scroll 0 0;
3325 no-repeat scroll 0 0;
3328 cursor: pointer;
3326 cursor: pointer;
3329 height: 16px;
3327 height: 16px;
3330 position: absolute;
3328 position: absolute;
3331 right: 5px;
3329 right: 5px;
3332 top: 5px;
3330 top: 5px;
3333 width: 16px;
3331 width: 16px;
3334 }
3332 }
3335
3333
3336 /*
3334 /*
3337 YUI FLOT
3335 YUI FLOT
3338 */
3336 */
3339 div#commit_history {
3337 div#commit_history {
3340 float: left;
3338 float: left;
3341 }
3339 }
3342
3340
3343 div#legend_data {
3341 div#legend_data {
3344 float: left;
3342 float: left;
3345 }
3343 }
3346
3344
3347 div#legend_container {
3345 div#legend_container {
3348 float: left;
3346 float: left;
3349 }
3347 }
3350
3348
3351 div#legend_container table,div#legend_choices table {
3349 div#legend_container table,div#legend_choices table {
3352 width: auto !important;
3350 width: auto !important;
3353 }
3351 }
3354
3352
3355 div#legend_container table td {
3353 div#legend_container table td {
3356 border: none !important;
3354 border: none !important;
3357 padding: 0px !important;
3355 padding: 0px !important;
3358 height: 20px !important;
3356 height: 20px !important;
3359 }
3357 }
3360
3358
3361 div#legend_choices table td {
3359 div#legend_choices table td {
3362 border: none !important;
3360 border: none !important;
3363 padding: 0px !important;
3361 padding: 0px !important;
3364 height: 20px !important;
3362 height: 20px !important;
3365 }
3363 }
3366
3364
3367 div#legend_choices {
3365 div#legend_choices {
3368 float: left;
3366 float: left;
3369 }
3367 }
3370
3368
3371 /*
3369 /*
3372 PERMISSIONS TABLE
3370 PERMISSIONS TABLE
3373 */
3371 */
3374 table#permissions_manage {
3372 table#permissions_manage {
3375 width: 0 !important;
3373 width: 0 !important;
3376 }
3374 }
3377
3375
3378 table#permissions_manage span.private_repo_msg {
3376 table#permissions_manage span.private_repo_msg {
3379 font-size: 0.8em;
3377 font-size: 0.8em;
3380 opacity: 0.6;
3378 opacity: 0.6;
3381 }
3379 }
3382
3380
3383 table#permissions_manage td.private_repo_msg {
3381 table#permissions_manage td.private_repo_msg {
3384 font-size: 0.8em;
3382 font-size: 0.8em;
3385 }
3383 }
3386
3384
3387 table#permissions_manage tr#add_perm_input td {
3385 table#permissions_manage tr#add_perm_input td {
3388 vertical-align: middle;
3386 vertical-align: middle;
3389 }
3387 }
3390
3388
3391 /*
3389 /*
3392 GRAVATARS
3390 GRAVATARS
3393 */
3391 */
3394 div.gravatar {
3392 div.gravatar {
3395 background-color: white;
3393 background-color: white;
3396 border: 1px solid #D0D0D0;
3394 border: 1px solid #D0D0D0;
3397 float: left;
3395 float: left;
3398 margin-right: 0.7em;
3396 margin-right: 0.7em;
3399 padding: 2px 2px 0px;
3397 padding: 2px 2px 0px;
3400 }
3398 }
3401
3399
3402 /*
3400 /*
3403 GLOBAL WIDTH
3401 GLOBAL WIDTH
3404 */
3402 */
3405 #header,#content,#footer {
3403 #header,#content,#footer {
3406 min-width: 1224px;
3404 min-width: 1224px;
3407 }
3405 }
3408
3406
3409 /*
3407 /*
3410 content
3408 content
3411 */
3409 */
3412 #content {
3410 #content {
3413 padding:10px 30px;
3411 padding:10px 30px;
3414 min-height: 100%;
3412 min-height: 100%;
3415 clear: both;
3413 clear: both;
3416 overflow: hidden;
3414 overflow: hidden;
3417 background: url("../images/header_background.png") repeat scroll 0 0 #B0B0B0
3418 }
3415 }
3419
3416
3420 /*
3417 /*
3421 content / right / forms / labels
3418 content / right / forms / labels
3422 */
3419 */
3423 #content div.box div.form div.fields div.field div.label {
3420 #content div.box div.form div.fields div.field div.label {
3424 left: 80px;
3421 left: 80px;
3425 margin: 0;
3422 margin: 0;
3426 padding: 8px 0 0 5px;
3423 padding: 8px 0 0 5px;
3427 width: auto;
3424 width: auto;
3428 position: absolute;
3425 position: absolute;
3429 }
3426 }
3430
3427
3431 #content div.box-left div.form div.fields div.field div.label,#content div.box-right div.form div.fields div.field div.label
3428 #content div.box-left div.form div.fields div.field div.label,#content div.box-right div.form div.fields div.field div.label
3432 {
3429 {
3433 left: 0;
3430 left: 0;
3434 margin: 0;
3431 margin: 0;
3435 padding: 0 0 8px 0;
3432 padding: 0 0 8px 0;
3436 width: auto;
3433 width: auto;
3437 position: relative;
3434 position: relative;
3438 }
3435 }
3439
3436
3440 /*THEME*/
3437 /*THEME*/
3441
3438
3442 /*
3439 /*
3443 header / quick
3440 header / quick
3444 */
3441 */
3445 #header #header-inner #quick li a {
3442 #header #header-inner #quick li a {
3446 background: #336699 url("../../images/quick_l.png") no-repeat top left;
3443 background: #336699 url("../../images/quick_l.png") no-repeat top left;
3447 }
3444 }
3448
3445
3449 #header #header-inner #quick li span {
3446 #header #header-inner #quick li span {
3450 background: url("../../images/quick_r.png") no-repeat top right;
3447 background: url("../../images/quick_r.png") no-repeat top right;
3451 border-left: 1px solid #3f6f9f;
3448 border-left: 1px solid #3f6f9f;
3452 }
3449 }
3453
3450
3454 #header #header-inner #quick li span.icon {
3451 #header #header-inner #quick li span.icon {
3455 background: url("../../images/quick_l.png") no-repeat top left;
3452 background: url("../../images/quick_l.png") no-repeat top left;
3456 border-right: 1px solid #2e5c89;
3453 border-right: 1px solid #2e5c89;
3457 }
3454 }
3458
3455
3459 #header #header-inner #quick li a:hover {
3456 #header #header-inner #quick li a:hover {
3460 background: #4e4e4e url("../../images/quick_l_selected.png") no-repeat
3457 background: #4e4e4e url("../../images/quick_l_selected.png") no-repeat
3461 top left;
3458 top left;
3462 }
3459 }
3463
3460
3464 #header #header-inner #quick li a:hover span {
3461 #header #header-inner #quick li a:hover span {
3465 background: url("../../images/quick_r_selected.png") no-repeat top right;
3462 background: url("../../images/quick_r_selected.png") no-repeat top right;
3466 }
3463 }
3467
3464
3468 #header #header-inner #quick li a:hover span.icon {
3465 #header #header-inner #quick li a:hover span.icon {
3469 background: url("../../images/quick_l_selected.png") no-repeat top left;
3466 background: url("../../images/quick_l_selected.png") no-repeat top left;
3470 }
3467 }
3471
3468
3472 /*
3469 /*
3473 header corners
3470 header corners
3474 */
3471 */
3475 #header #header-inner div.corner {
3472 #header #header-inner div.corner {
3476 background: url("../../images/header_inner_corners.png") no-repeat;
3473 background: url("../../images/header_inner_corners.png") no-repeat;
3477 }
3474 }
3478
3475
3479 #header #header-inner div.tl {
3476 #header #header-inner div.tl {
3480 top: 0;
3477 top: 0;
3481 left: 0;
3478 left: 0;
3482 background-position: 0 0;
3479 background-position: 0 0;
3483 }
3480 }
3484
3481
3485 #header #header-inner div.tr {
3482 #header #header-inner div.tr {
3486 top: 0;
3483 top: 0;
3487 right: 0;
3484 right: 0;
3488 background-position: -6px 0;
3485 background-position: -6px 0;
3489 }
3486 }
3490
3487
3491 /*
3488 /*
3492 content / left / menu
3489 content / left / menu
3493 */
3490 */
3494 #content #left #menu h6.selected {
3491 #content #left #menu h6.selected {
3495 background: #00376e url("../../images/menu_selected.png") repeat-x;
3492 background: #00376e url("../../images/menu_selected.png") repeat-x;
3496 }
3493 }
3497
3494
3498 #content #left #menu h6.selected a {
3495 #content #left #menu h6.selected a {
3499 background: url("../../images/menu_l_selected.png") no-repeat top left;
3496 background: url("../../images/menu_l_selected.png") no-repeat top left;
3500 }
3497 }
3501
3498
3502 #content #left #menu h6.selected span {
3499 #content #left #menu h6.selected span {
3503 background: url("../../images/menu_r_selected.png") no-repeat top right;
3500 background: url("../../images/menu_r_selected.png") no-repeat top right;
3504 }
3501 }
3505
3502
3506 #content #left #menu ul {
3503 #content #left #menu ul {
3507 background: #376ea6;
3504 background: #376ea6;
3508 }
3505 }
3509
3506
3510 #content #left #menu li {
3507 #content #left #menu li {
3511 border-top: 1px solid #4377ab;
3508 border-top: 1px solid #4377ab;
3512 border-bottom: 1px solid #326395;
3509 border-bottom: 1px solid #326395;
3513 }
3510 }
3514
3511
3515 #content #left #menu li a {
3512 #content #left #menu li a {
3516 background: url("../../images/menu_arrow.png") no-repeat 0 9px;
3513 background: url("../../images/menu_arrow.png") no-repeat 0 9px;
3517 }
3514 }
3518
3515
3519 #content #left #menu li a:hover {
3516 #content #left #menu li a:hover {
3520 color: #b9dcff;
3517 color: #b9dcff;
3521 }
3518 }
3522
3519
3523 #content #left #menu li.collapsible {
3520 #content #left #menu li.collapsible {
3524 background: url("../../images/menu_border.png") no-repeat top left;
3521 background: url("../../images/menu_border.png") no-repeat top left;
3525 }
3522 }
3526
3523
3527 #content #left #menu li.collapsible a.minus {
3524 #content #left #menu li.collapsible a.minus {
3528 border-bottom: 1px solid #326395;
3525 border-bottom: 1px solid #326395;
3529 }
3526 }
3530
3527
3531 #content #left #menu li ul {
3528 #content #left #menu li ul {
3532 border-left: 18px solid #326395;
3529 border-left: 18px solid #326395;
3533 }
3530 }
3534
3531
3535 #content #left #menu li ul li {
3532 #content #left #menu li ul li {
3536 background: url("../../images/menu_arrow.png") no-repeat 10px 9px;
3533 background: url("../../images/menu_arrow.png") no-repeat 10px 9px;
3537 border-top: 1px solid #4377ab;
3534 border-top: 1px solid #4377ab;
3538 border-bottom: 1px solid #326395;
3535 border-bottom: 1px solid #326395;
3539 }
3536 }
3540
3537
3541
3538
3542
3539
3543 #content div.box div.title ul.links li.ui-tabs-selected a {
3540 #content div.box div.title ul.links li.ui-tabs-selected a {
3544 background: url("../../images/title_tab_selected.png") no-repeat bottom
3541 background: url("../../images/title_tab_selected.png") no-repeat bottom
3545 center;
3542 center;
3546 color: #bfe3ff;
3543 color: #bfe3ff;
3547 }
3544 }
3548
3545
3549 /*
3546 /*
3550 content / right / box / search
3547 content / right / box / search
3551 */
3548 */
3552 #content div.box div.title div.search {
3549 #content div.box div.title div.search {
3553 background: url("../../images/title_link.png") no-repeat top left;
3550 background: url("../../images/title_link.png") no-repeat top left;
3554 border-left: 1px solid #316293;
3551 border-left: 1px solid #316293;
3555 }
3552 }
3556
3553
3557 #content div.box div.title div.search div.input input {
3554 #content div.box div.title div.search div.input input {
3558 border: 1px solid #316293;
3555 border: 1px solid #316293;
3559 }
3556 }
3560
3557
3561 #content div.box div.title div.search div.button input.ui-state-default
3558 #content div.box div.title div.search div.button input.ui-state-default
3562 {
3559 {
3563 background: #4e85bb url("../../images/button_highlight.png") repeat-x;
3560 background: #4e85bb url("../../images/button_highlight.png") repeat-x;
3564 border: 1px solid #316293;
3561 border: 1px solid #316293;
3565 border-left: none;
3562 border-left: none;
3566 color: #FFFFFF;
3563 color: #FFFFFF;
3567 }
3564 }
3568
3565
3569 #content div.box div.title div.search div.button input.ui-state-hover {
3566 #content div.box div.title div.search div.button input.ui-state-hover {
3570 background: #46a0c1 url("../../images/button_highlight_selected.png")
3567 background: #46a0c1 url("../../images/button_highlight_selected.png")
3571 repeat-x;
3568 repeat-x;
3572 border: 1px solid #316293;
3569 border: 1px solid #316293;
3573 border-left: none;
3570 border-left: none;
3574 color: #FFFFFF;
3571 color: #FFFFFF;
3575 }
3572 }
3576
3573
3577 /*
3574 /*
3578 content / right / forms / button
3575 content / right / forms / button
3579 */
3576 */
3580 #content div.box div.form div.fields div.field div.highlight .ui-state-default
3577 #content div.box div.form div.fields div.field div.highlight .ui-state-default
3581 {
3578 {
3582 background: #4e85bb url("../../images/button_highlight.png") repeat-x;
3579 background: #4e85bb url("../../images/button_highlight.png") repeat-x;
3583 border-top: 1px solid #5c91a4;
3580 border-top: 1px solid #5c91a4;
3584 border-left: 1px solid #2a6f89;
3581 border-left: 1px solid #2a6f89;
3585 border-right: 1px solid #2b7089;
3582 border-right: 1px solid #2b7089;
3586 border-bottom: 1px solid #1a6480;
3583 border-bottom: 1px solid #1a6480;
3587 color: #ffffff;
3584 color: #ffffff;
3588 }
3585 }
3589
3586
3590 #content div.box div.form div.fields div.field div.highlight .ui-state-hover
3587 #content div.box div.form div.fields div.field div.highlight .ui-state-hover
3591 {
3588 {
3592 background: #46a0c1 url("../../images/button_highlight_selected.png")
3589 background: #46a0c1 url("../../images/button_highlight_selected.png")
3593 repeat-x;
3590 repeat-x;
3594 border-top: 1px solid #78acbf;
3591 border-top: 1px solid #78acbf;
3595 border-left: 1px solid #34819e;
3592 border-left: 1px solid #34819e;
3596 border-right: 1px solid #35829f;
3593 border-right: 1px solid #35829f;
3597 border-bottom: 1px solid #257897;
3594 border-bottom: 1px solid #257897;
3598 color: #ffffff;
3595 color: #ffffff;
3599 }
3596 }
3600
3597
3601 /*
3598 /*
3602 content / right / forms / buttons
3599 content / right / forms / buttons
3603 */
3600 */
3604 #content div.box div.form div.fields div.buttons div.highlight input.ui-state-default
3601 #content div.box div.form div.fields div.buttons div.highlight input.ui-state-default
3605 {
3602 {
3606 background: #4e85bb url("../../images/button_highlight.png") repeat-x;
3603 background: #4e85bb url("../../images/button_highlight.png") repeat-x;
3607 border-top: 1px solid #5c91a4;
3604 border-top: 1px solid #5c91a4;
3608 border-left: 1px solid #2a6f89;
3605 border-left: 1px solid #2a6f89;
3609 border-right: 1px solid #2b7089;
3606 border-right: 1px solid #2b7089;
3610 border-bottom: 1px solid #1a6480;
3607 border-bottom: 1px solid #1a6480;
3611 color: #ffffff;
3608 color: #ffffff;
3612 }
3609 }
3613
3610
3614 #content div.box div.form div.fields div.buttons div.highlight input.ui-state-hover
3611 #content div.box div.form div.fields div.buttons div.highlight input.ui-state-hover
3615 {
3612 {
3616 background: #46a0c1 url("../../images/button_highlight_selected.png")
3613 background: #46a0c1 url("../../images/button_highlight_selected.png")
3617 repeat-x;
3614 repeat-x;
3618 border-top: 1px solid #78acbf;
3615 border-top: 1px solid #78acbf;
3619 border-left: 1px solid #34819e;
3616 border-left: 1px solid #34819e;
3620 border-right: 1px solid #35829f;
3617 border-right: 1px solid #35829f;
3621 border-bottom: 1px solid #257897;
3618 border-bottom: 1px solid #257897;
3622 color: #ffffff;
3619 color: #ffffff;
3623 }
3620 }
3624
3621
3625 /*
3622 /*
3626 login / title
3623 login / title
3627 */
3624 */
3628 #login div.title {
3625 #login div.title {
3629 background: #003367 url("../../images/header_inner.png") repeat-x;
3626 background: #003367 url("../../images/header_inner.png") repeat-x;
3630 }
3627 }
3631
3628
3632 /*
3629 /*
3633 login / title / corners
3630 login / title / corners
3634 */
3631 */
3635 #login div.title div.corner {
3632 #login div.title div.corner {
3636 background: url("../../images/login_corners.png") no-repeat;
3633 background: url("../../images/login_corners.png") no-repeat;
3637 }
3634 }
3638
3635
3639 #login div.title div.tl {
3636 #login div.title div.tl {
3640 top: 0;
3637 top: 0;
3641 left: 0;
3638 left: 0;
3642 background-position: 0 0;
3639 background-position: 0 0;
3643 }
3640 }
3644
3641
3645 #login div.title div.tr {
3642 #login div.title div.tr {
3646 top: 0;
3643 top: 0;
3647 right: 0;
3644 right: 0;
3648 background-position: -6px 0;
3645 background-position: -6px 0;
3649 } No newline at end of file
3646 }
1 NO CONTENT: modified file, binary diff hidden
NO CONTENT: modified file, binary diff hidden
@@ -1,78 +1,80 b''
1 <%def name="file_class(node)">
1 <%def name="file_class(node)">
2 %if node.is_file():
2 %if node.is_file():
3 <%return "browser-file" %>
3 <%return "browser-file" %>
4 %else:
4 %else:
5 <%return "browser-dir"%>
5 <%return "browser-dir"%>
6 %endif
6 %endif
7 </%def>
7 </%def>
8 <div id="body" class="browserblock">
8 <div id="body" class="browserblock">
9 <div class="browser-header">
9 <div class="browser-header">
10 ${h.form(h.url.current())}
10 ${h.form(h.url.current())}
11 <div class="info_box">
11 <div class="info_box">
12 <span >${_('view')}@rev</span>
12 <span >${_('view')}@rev</span>
13 <a href="${c.url_prev}">&laquo;</a>
13 <a href="${c.url_prev}">&laquo;</a>
14 ${h.text('at_rev',value=c.rev_nr,size=3)}
14 ${h.text('at_rev',value=c.rev_nr,size=3)}
15 <a href="${c.url_next}">&raquo;</a>
15 <a href="${c.url_next}">&raquo;</a>
16 ${h.submit('view','view')}
16 ${h.submit('view','view')}
17 </div>
17 </div>
18 ${h.end_form()}
18 ${h.end_form()}
19 </div>
19 </div>
20 <div class="browser-body">
20 <div class="browser-body">
21 <table class="code-browser">
21 <table class="code-browser">
22 <thead>
22 <thead>
23 <tr>
23 <tr>
24 <th>${_('Name')}</th>
24 <th>${_('Name')}</th>
25 <th>${_('Size')}</th>
25 <th>${_('Size')}</th>
26 <th>${_('Mimetype')}</th>
26 <th>${_('Mimetype')}</th>
27 <th>${_('Revision')}</th>
27 <th>${_('Revision')}</th>
28 <th>${_('Last modified')}</th>
28 <th>${_('Last modified')}</th>
29 <th>${_('Last commiter')}</th>
29 <th>${_('Last commiter')}</th>
30 </tr>
30 </tr>
31 </thead>
31 </thead>
32
32
33 % if c.files_list.parent:
33 % if c.files_list.parent:
34 <tr class="parity0">
34 <tr class="parity0">
35 <td>
35 <td>
36 ${h.link_to('..',h.url('files_home',repo_name=c.repo_name,revision=c.cur_rev,f_path=c.files_list.parent.path),class_="browser-dir")}
36 ${h.link_to('..',h.url('files_home',repo_name=c.repo_name,revision=c.cur_rev,f_path=c.files_list.parent.path),class_="browser-dir")}
37 </td>
37 </td>
38 <td></td>
38 <td></td>
39 <td></td>
39 <td></td>
40 <td></td>
40 <td></td>
41 <td></td>
41 <td></td>
42 <td></td>
42 <td></td>
43 </tr>
43 </tr>
44 %endif
44 %endif
45
45
46 %for cnt,node in enumerate(c.files_list,1):
46 %for cnt,node in enumerate(c.files_list,1):
47 <tr class="parity${cnt%2}">
47 <tr class="parity${cnt%2}">
48 <td>
48 <td>
49 ${h.link_to(node.name,h.url('files_home',repo_name=c.repo_name,revision=c.cur_rev,f_path=node.path),class_=file_class(node))}
49 ${h.link_to(node.name,h.url('files_home',repo_name=c.repo_name,revision=c.cur_rev,f_path=node.path),class_=file_class(node))}
50 </td>
50 </td>
51 <td>
51 <td>
52 %if node.is_file():
52 ${h.format_byte_size(node.size,binary=True)}
53 ${h.format_byte_size(node.size,binary=True)}
54 %endif
53 </td>
55 </td>
54 <td>
56 <td>
55 %if node.is_file():
57 %if node.is_file():
56 ${node.mimetype}
58 ${node.mimetype}
57 %endif
59 %endif
58 </td>
60 </td>
59 <td>
61 <td>
60 %if node.is_file():
62 %if node.is_file():
61 ${node.last_changeset.revision}
63 ${node.last_changeset.revision}
62 %endif
64 %endif
63 </td>
65 </td>
64 <td>
66 <td>
65 %if node.is_file():
67 %if node.is_file():
66 ${h.age(node.last_changeset._ctx.date())} - ${node.last_changeset.date}
68 ${h.age(node.last_changeset._ctx.date())} - ${node.last_changeset.date}
67 %endif
69 %endif
68 </td>
70 </td>
69 <td>
71 <td>
70 %if node.is_file():
72 %if node.is_file():
71 ${node.last_changeset.author}
73 ${node.last_changeset.author}
72 %endif
74 %endif
73 </td>
75 </td>
74 </tr>
76 </tr>
75 %endfor
77 %endfor
76 </table>
78 </table>
77 </div>
79 </div>
78 </div> No newline at end of file
80 </div>
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
1 NO CONTENT: file was removed, binary diff hidden
NO CONTENT: file was removed, binary diff hidden
General Comments 0
You need to be logged in to leave comments. Login now