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