##// END OF EJS Templates
error message css
marcink -
r261:576e85ca default
parent child Browse files
Show More
@@ -1,809 +1,812 b''
1 1 /*** Initial Settings ***/
2 2 #mainhtml{
3 3 margin: 15px 50px;
4 4 background: #DBD4C6;
5 5 font-family: sans-serif;
6 6 }
7 7
8 8 a {
9 9 color: #556CB5;
10 10 text-decoration: none;
11 11 }
12 12 a:HOVER{
13 13 text-decoration: underline;
14 14 }
15 15
16 16 /*** end of Initial Settings ***/
17 17
18 18 /*** ***/
19 19 .table_disp {
20 20 border-left: 0px solid #666666;
21 21 border-bottom: 1px solid #666666;
22 22 border-right: 1px solid #666666;
23 23 padding: 0px;
24 24 margin: 0px;
25 25 border-spacing: 0px;
26 26 }
27 27
28 28 .table_disp .header {
29 29 border-top: 1px solid #666666;
30 30 background-color: #556CB5;
31 31 font-weight: bold;
32 32 color: white;
33 33 vertical-align: middle;
34 34 padding: 3px 5px;
35 35 text-align: left;
36 36 font-size: 0.9em;
37 37 }
38 38
39 39 .table_disp .header td {
40 40 padding: 4px;
41 41 vertical-align: middle;
42 42 border-top: 1px solid #AAAAAA;
43 43 border-bottom: 2px solid #666666;
44 44 }
45 45 .table_disp td {
46 46 border-left: 1px solid #AAAAAA;
47 47 padding-left: 4px;
48 48 padding-right: 4px;
49 49 }
50 50
51 51 table tr.parity0:hover,table tr.parity1:hover {
52 52 background: #D5E1E6;
53 53 }
54 54
55 55 table tr.parity0 {
56 56 background: #EAEAE9;
57 57 }
58 58
59 59 table tr.parity1 {
60 60 background: #FFFFFF;
61 61 }
62 62
63 63
64 64 /*** ***/
65 65
66 66 /** common settings **/
67 67 .add_icon{
68 68 background: url("/images/icons/add.png") no-repeat scroll 3px;
69 69 height: 16px;
70 70 padding-left: 20px;
71 71 padding-top: 0px;
72 72 text-align: left;
73 73
74 74 }
75 75 .edit_icon{
76 76 background: url("/images/icons/folder_edit.png") no-repeat scroll 3px;
77 77 height: 16px;
78 78 padding-left: 20px;
79 79 padding-top: 0px;
80 80 text-align: left;
81 81 }
82 82
83 83 .delete_icon{
84 84 background: url("/images/icons/delete.png") no-repeat scroll 3px;
85 85 height: 16px;
86 86 padding-left: 20px;
87 87 padding-top: 0px;
88 88 text-align: left;
89 89
90 90 }
91 91
92 92 .action_button{
93 93 border:0px;
94 94 display: block;
95 95 }
96 96 .action_button:hover{
97 97 border:0px;
98 98 font-style:italic;
99 99 cursor: pointer;
100 100 }
101 101
102 102 .flash_msg ul{
103 103 margin:0;
104 104 padding:25px 0px 0px 0px;
105 105
106 106 }
107 107 .error_msg {
108 108 background-color:#FFCFCF;
109 109 background-image: url("/images/icons/error_msg.png");
110 110 border:1px solid #FF9595;
111 111 color:#CC3300;
112 112 }
113 113 .warning_msg {
114 114 background-color:#FFFBCC;
115 115 background-image: url("/images/icons/warning_msg.png");
116 116 border:1px solid #FFF35E;
117 117 color:#C69E00;
118 118 }
119 119 .success_msg {
120 120 background-color:#D5FFCF;
121 121 background-image: url("/images/icons/success_msg.png");
122 122 border:1px solid #97FF88;
123 123 color:#009900;
124 124 }
125 125 .notice_msg {
126 126 background-color:#DCE3FF;
127 127 background-image: url("/images/icons/notice_msg.png");
128 128 border:1px solid #93A8FF;
129 129 color:#556CB5;
130 130 }
131 131
132 132 .success_msg, .error_msg, .notice_msg, .warning_msg{
133 133 background-position:10px center;
134 134 background-repeat:no-repeat;
135 135 font-size:12px;
136 136 font-weight:bold;
137 137 min-height:14px;
138 138 line-height:14px;
139 139 margin-bottom:0px;
140 140 margin-top:0px;
141 141 padding:3px 10px 3px 40px;
142 142 display:block;
143 143 overflow: auto;
144 144 }
145 145
146 146 #msg_close {
147 147 background:transparent url("icons/cross_grey_small.png") no-repeat scroll 0 0;
148 148 cursor:pointer;
149 149 height:16px;
150 150 position:absolute;
151 151 right:5px;
152 152 top:5px;
153 153 width:16px;
154 154 }
155 155
156 .error-message{
157 color:#CC3300;
158 }
156 159
157 160 div#main {
158 161 padding: 5px;
159 162 }
160 163
161 164 div#container {
162 165 background: #FFFFFF;
163 166 position: relative;
164 167 color: #666;
165 168 }
166 169
167 170 div.page-header {
168 171 padding: 50px 20px 0;
169 172 background: #556cb5 top left repeat-x;
170 173 position: relative;
171 174 }
172 175
173 176 div.page-header h1 {
174 177 margin: 10px 0 30px;
175 178 font-size: 1.8em;
176 179 font-weight: bold;
177 180 font-family: sans-serif;
178 181 letter-spacing: 1px;
179 182 color: #FFFFFF;
180 183 }
181 184
182 185 div.page-header h1 a {
183 186 font-weight: bold;
184 187 color: #FFFFFF;
185 188 }
186 189
187 190 div.page-header a {
188 191 text-decoration: none;
189 192 }
190 193
191 194 div.page-header form {
192 195 position: absolute;
193 196 margin-bottom: 2px;
194 197 bottom: 0;
195 198 right: 20px;
196 199 }
197 200
198 201 div.page-header form label {
199 202 color: #DDD;
200 203 }
201 204
202 205 div.page-header form input {
203 206 padding: 2px;
204 207 border: solid 1px #DDD;
205 208 }
206 209
207 210 div.page-header form dl {
208 211 overflow: hidden;
209 212 }
210 213
211 214 div.page-header form dl dt {
212 215 font-size: 1.2em;
213 216 }
214 217
215 218 div.page-header form dl dt,div.page-header form dl dd {
216 219 margin: 0 0 0 5px;
217 220 float: left;
218 221 height: 24px;
219 222 line-height: 20px;
220 223 }
221 224
222 225 ul.page-nav {
223 226 margin: 10px 0 0 0;
224 227 list-style-type: none;
225 228 overflow: hidden;
226 229 width: 800px;
227 230 padding: 0;
228 231 }
229 232
230 233 ul.page-nav li {
231 234 margin: 0 4px 0 0;
232 235 float: left;
233 236 height: 24px;
234 237 font-size: 1.1em;
235 238 line-height: 24px;
236 239 text-align: center;
237 240 background: #556CB5;
238 241 }
239 242
240 243 ul.page-nav li.current {
241 244 background: #FFF;
242 245 padding-right: 5px;
243 246 padding-left: 5px;
244 247 }
245 248 ul.page-nav li.current a {
246 249 color: #556CB5;
247 250 }
248 251 ul.page-nav li a {
249 252 height: 24px;
250 253 color: #FFF;
251 254 padding-right: 5px;
252 255 padding-left: 5px;
253 256 display: block;
254 257 text-decoration: none;
255 258 font-weight: bold;
256 259 }
257 260 ul.page-nav li.logout a {
258 261 color: #FDAC9D;
259 262 }
260 263 ul.page-nav li a:hover {
261 264 background: #FFF;
262 265 color: #556CB5;
263 266 }
264 267
265 268 ul.submenu {
266 269 margin: 5px 0px -20px 0px;
267 270 list-style-type: none;
268 271 }
269 272
270 273 ul.submenu li {
271 274 margin: 0 10px 0 0;
272 275 font-size: 0.9em;
273 276 font-weight:bold;
274 277 display: inline;
275 278 }
276 279 ul.submenu .repos {
277 280 background: url("/images/icons/folder_edit.png") no-repeat scroll 3px;
278 281 height: 16px;
279 282 padding-left: 20px;
280 283 padding-top: 0px;
281 284 text-align: left;
282 285
283 286 }
284 287 ul.submenu .users {
285 288 background: url("/images/icons/user_edit.png") no-repeat scroll 3px;
286 289 height: 16px;
287 290 padding-left: 20px;
288 291 padding-top: 0px;
289 292 text-align: left;
290 293 }
291 294 ul.submenu .permissions {
292 295 background: url("/images/icons/folder_key.png") no-repeat scroll 3px;
293 296 height: 16px;
294 297 padding-left: 20px;
295 298 padding-top: 0px;
296 299 text-align: left;
297 300 }
298 301
299 302 ul.submenu .current_submenu {
300 303 border-bottom: 2px solid #556CB5;
301 304 }
302 305
303 306 h2 {
304 307 margin: 20px 0 10px;
305 308 height: 30px;
306 309 line-height: 30px;
307 310 text-indent: 20px;
308 311 background: #FFF;
309 312 font-size: 1.2em;
310 313 border-top: dotted 1px #D5E1E6;
311 314 font-weight: bold;
312 315 color:#556CB5;
313 316 }
314 317
315 318 h2.no-link {
316 319 color: #006699;
317 320 }
318 321
319 322 h2.no-border {
320 323 color: #FFF;
321 324 background: #556CB5;
322 325 border: 0;
323 326 }
324 327
325 328 h2 a {
326 329 font-weight: bold;
327 330 color: #006699;
328 331 }
329 332
330 333 div.page-path {
331 334 text-align: right;
332 335 padding: 20px 30px 10px 0;
333 336 border: solid #d9d8d1;
334 337 border-width: 0px 0px 1px;
335 338 font-size: 1.2em;
336 339 }
337 340
338 341 div.page-footer {
339 342 margin: 50px 0 0;
340 343 position: relative;
341 344 text-align: center;
342 345 font-weight: bold;
343 346 font-size: 90%;
344 347 }
345 348
346 349 div.page-footer p {
347 350 position: relative;
348 351 left: 20px;
349 352 bottom: 5px;
350 353 font-size: 1.2em;
351 354 }
352 355
353 356 ul.rss-logo {
354 357 position: absolute;
355 358 top: -10px;
356 359 right: 20px;
357 360 height: 20px;
358 361 list-style-type: none;
359 362 }
360 363
361 364 ul.rss-logo li {
362 365 display: inline;
363 366 }
364 367
365 368 ul.rss-logo li a {
366 369 padding: 3px 6px;
367 370 line-height: 10px;
368 371 border: 1px solid;
369 372 border-color: #fcc7a5 #7d3302 #3e1a01 #ff954e;
370 373 color: #ffffff;
371 374 background-color: #ff6600;
372 375 font-weight: bold;
373 376 font-family: sans-serif;
374 377 font-size: 10px;
375 378 text-align: center;
376 379 text-decoration: none;
377 380 }
378 381
379 382 div.rss-logo li a:hover {
380 383 background-color: #ee5500;
381 384 }
382 385
383 386 p.normal {
384 387 margin: 20px 0 20px 30px;
385 388 font-size: 1.2em;
386 389 }
387 390
388 391 span.logtags span {
389 392 background-repeat: no-repeat;
390 393 height: 16px;
391 394 padding-left: 20px;
392 395 padding-top: 0px;
393 396 text-align: left;
394 397 font-weight: bold;
395 398 }
396 399
397 400 span.logtags span.tagtag {
398 401 background-image: url("/images/icons/tag_green.png");
399 402 }
400 403
401 404 span.logtags span.branchtag {
402 405 background-image: url("/images/icons/arrow_branch.png");
403 406 color: #628F53;
404 407 }
405 408
406 409 span.logtags span.inbranchtag {
407 410 background-image: url("/images/icons/arrow_branch.png");
408 411 }
409 412
410 413 div.diff pre {
411 414 margin: 10px 0 0 0;
412 415 }
413 416
414 417 div.diff pre span {
415 418 font-family: monospace;
416 419 white-space: pre;
417 420 font-size: 1.2em;
418 421 padding: 3px 0;
419 422 }
420 423
421 424 td.source {
422 425 white-space: pre;
423 426 font-family: monospace;
424 427 margin: 10px 30px 0;
425 428 font-size: 1.2em;
426 429 font-family: monospace;
427 430 }
428 431
429 432 div.source div.parity0,div.source div.parity1 {
430 433 padding: 1px;
431 434 font-size: 1.2em;
432 435 }
433 436
434 437 div.source div.parity0 {
435 438 background: #F1F6F7;
436 439 }
437 440
438 441 div.source div.parity1 {
439 442 background: #FFFFFF;
440 443 }
441 444
442 445 div.parity0:hover,div.parity1:hover {
443 446 background: #D5E1E6;
444 447 }
445 448
446 449 .linenr {
447 450 color: #999;
448 451 text-align: right;
449 452 }
450 453
451 454 .lineno {
452 455 text-align: right;
453 456 }
454 457
455 458 .lineno a {
456 459 color: #999;
457 460 }
458 461
459 462 td.linenr {
460 463 width: 60px;
461 464 }
462 465
463 466 div#powered-by {
464 467 position: absolute;
465 468 width: 75px;
466 469 top: 15px;
467 470 right: 20px;
468 471 font-size: 1.2em;
469 472 }
470 473
471 474 div#powered-by a {
472 475 color: #EEE;
473 476 text-decoration: none;
474 477 }
475 478
476 479 div#powered-by a:hover {
477 480 text-decoration: underline;
478 481 }
479 482
480 483 dl.overview {
481 484 margin: 0 0 0 30px;
482 485 font-size: 1.1em;
483 486 overflow: hidden;
484 487 }
485 488
486 489 dl.overview dt,dl.overview dd {
487 490 margin: 5px 0;
488 491 float: left;
489 492 }
490 493
491 494 dl.overview dt {
492 495 clear: left;
493 496 font-weight: bold;
494 497 width: 150px;
495 498 }
496 499
497 500 #clone_url{
498 501 border: 0px;
499 502 }
500 503 /** end of summary **/
501 504
502 505 /** chagelog **/
503 506 h3.changelog {
504 507 margin: 20px 0 5px 30px;
505 508 padding: 0 0 2px;
506 509 font-size: 1.4em;
507 510 border-bottom: dotted 1px #D5E1E6;
508 511 }
509 512
510 513 ul.changelog-entry {
511 514 margin: 0 0 10px 30px;
512 515 list-style-type: none;
513 516 position: relative;
514 517 }
515 518
516 519 ul.changelog-entry li span.revdate {
517 520 font-size: 1.1em;
518 521 }
519 522
520 523 ul.changelog-entry li.age {
521 524 position: absolute;
522 525 top: -25px;
523 526 right: 10px;
524 527 font-size: 1.4em;
525 528 color: #CCC;
526 529 font-weight: bold;
527 530 font-style: italic;
528 531 }
529 532
530 533 ul.changelog-entry li span.name {
531 534 font-size: 1.2em;
532 535 font-weight: bold;
533 536 }
534 537
535 538 ul.changelog-entry li.description {
536 539 margin: 10px 0 0;
537 540 font-size: 1.1em;
538 541 }
539 542
540 543 /** end of changelog **/
541 544
542 545 /** file **/
543 546 p.files {
544 547 margin: 0 0 0 20px;
545 548 font-size: 2.0em;
546 549 font-weight: bold;
547 550 }
548 551
549 552 /** end of file **/
550 553
551 554 /** changeset **/
552 555 #changeset_content{
553 556 width:60%;
554 557 float:left;
555 558 }
556 559
557 560 #changeset_content .container .wrapper{
558 561 width: 600px;
559 562 }
560 563 #changeset_content .container{
561 564 border:1px solid #CCCCCC;
562 565 height:120px;
563 566 }
564 567
565 568 #changeset_content .container .left{
566 569 float:left;
567 570 width: 70%;
568 571 padding-left: 5px;
569 572 }
570 573
571 574 #changeset_content .container .right{
572 575 float:right;
573 576 width: 25%;
574 577 text-align: right;
575 578 }
576 579
577 580 #changeset_content .container .left .date{
578 581 font-weight:bold;
579 582 }
580 583 #changeset_content .container .left .author{
581 584
582 585 }
583 586 #changeset_content .container .left .message{
584 587 font-style: italic;
585 588 color: #556CB5;
586 589 }
587 590
588 591 .cs_files{
589 592 width: 60%;
590 593 }
591 594
592 595 .cs_files .cs_added{
593 596 background: url("/images/icons/page_white_add.png") no-repeat scroll 3px;
594 597 /*background-color:#BBFFBB;*/
595 598 height: 16px;
596 599 padding-left: 20px;
597 600 margin-top: 7px;
598 601 text-align: left;
599 602 }
600 603 .cs_files .cs_changed{
601 604 background: url("/images/icons/page_white_edit.png") no-repeat scroll 3px;
602 605 /*background-color: #FFDD88;*/
603 606 height: 16px;
604 607 padding-left: 20px;
605 608 margin-top: 7px;
606 609 text-align: left;
607 610 }
608 611 .cs_files .cs_removed{
609 612 background: url("/images/icons/page_white_delete.png") no-repeat scroll 3px;
610 613 /*background-color: #FF8888;*/
611 614 height: 16px;
612 615 padding-left: 20px;
613 616 margin-top: 7px;
614 617 text-align: left;
615 618 }
616 619
617 620 /** end of changeset **/
618 621
619 622 /** canvas **/
620 623 canvas {
621 624 position: absolute;
622 625 z-index: 5;
623 626 top: -0.7em;
624 627 }
625 628 #graph{
626 629 overflow: hidden;
627 630
628 631 }
629 632 #graph_nodes{
630 633 width:160px;
631 634 float:left;
632 635 }
633 636
634 637 #graph_content{
635 638 width:800px;
636 639 float:left;
637 640 }
638 641 #graph_content .container_header{
639 642 border:1px solid #CCCCCC;
640 643 height:30px;
641 644 background: #EEEEEE;
642 645 }
643 646
644 647
645 648 #graph_content .container .wrapper{
646 649 width: 600px;
647 650 }
648 651 #graph_content .container{
649 652 border-bottom: 1px solid #CCCCCC;
650 653 border-left: 1px solid #CCCCCC;
651 654 border-right: 1px solid #CCCCCC;
652 655 height:120px;
653 656 }
654 657
655 658 #graph_content .container .left{
656 659 float:left;
657 660 width: 70%;
658 661 padding-left: 5px;
659 662 }
660 663
661 664 #graph_content .container .right{
662 665 float:right;
663 666 width: 25%;
664 667 text-align: right;
665 668 }
666 669 #graph_content .container .left .date{
667 670 font-weight:bold;
668 671 }
669 672 #graph_content .container .left .author{
670 673
671 674 }
672 675 #graph_content .container .left .message{
673 676 font-size: 80%;
674 677 }
675 678
676 679 .right div{
677 680 clear: both;
678 681 }
679 682 .right .changes .added,.changed,.removed{
680 683 border:1px solid #DDDDDD;
681 684 display:block;
682 685 float:right;
683 686 font-size:0.75em;
684 687 text-align:center;
685 688 min-width:15px;
686 689 }
687 690 .right .changes .added{
688 691 background:#BBFFBB;
689 692 }
690 693 .right .changes .changed{
691 694 background: #FFDD88;
692 695 }
693 696 .right .changes .removed{
694 697 background: #FF8888;
695 698 }
696 699
697 700 .right .merge{
698 701 vertical-align: top;
699 702 font-size: 60%;
700 703 font-weight: bold;
701 704 }
702 705 .right .merge img{
703 706 vertical-align: bottom;
704 707 }
705 708
706 709 .right .parent{
707 710 font-size: 90%;
708 711 font-family: monospace;
709 712 }
710 713 /** end of canvas **/
711 714
712 715 /* FILE BROWSER */
713 716 div.browserblock {
714 717 overflow: hidden;
715 718 padding: 0px;
716 719 border: 1px solid #ccc;
717 720 background: #f8f8f8;
718 721 font-size: 100%;
719 722 line-height: 100%;
720 723 /* new */
721 724 line-height: 125%;
722 725 }
723 726 div.browserblock .browser-header{
724 727 border-bottom: 1px solid #CCCCCC;
725 728 background: #EEEEEE;
726 729 color:blue;
727 730 padding:10px 0 10px 0;
728 731 }
729 732 div.browserblock .browser-header span{
730 733 margin-left:25px;
731 734 font-weight: bold;
732 735 }
733 736 div.browserblock .browser-body{
734 737 background: #EEEEEE;
735 738 }
736 739
737 740 table.code-browser {
738 741 border-collapse:collapse;
739 742 width: 100%;
740 743 }
741 744 table.code-browser tr{
742 745 margin:3px;
743 746 }
744 747
745 748 table.code-browser thead th {
746 749 background-color: #EEEEEE;
747 750 height: 20px;
748 751 font-size: 1.1em;
749 752 font-weight: bold;
750 753 text-align: center;
751 754 text-align: left;
752 755 padding-left: 10px;
753 756 }
754 757 table.code-browser tbody tr {
755 758
756 759 }
757 760
758 761 table.code-browser tbody td {
759 762
760 763 padding-left:10px;
761 764 height: 20px;
762 765 }
763 766
764 767 .info-table {
765 768 background: none repeat scroll 0 0 #FAFAFA;
766 769 border-bottom: 1px solid #DDDDDD;
767 770 width: 100%;
768 771 }
769 772
770 773 .rss_logo {
771 774 background: url("/images/icons/rss_16.png") no-repeat scroll 3px;
772 775 height: 16px;
773 776 padding-left: 20px;
774 777 padding-top: 0px;
775 778 text-align: left;
776 779 }
777 780
778 781 .atom_logo {
779 782 background: url("/images/icons/atom.png") no-repeat scroll 3px;
780 783 height: 16px;
781 784 padding-left: 20px;
782 785 padding-top: 0px;
783 786 text-align: left;
784 787 }
785 788 .archive_logo{
786 789 background: url("/images/icons/compress.png") no-repeat scroll 3px;
787 790 height: 16px;
788 791 padding-left: 20px;
789 792 text-align: left;
790 793 }
791 794
792 795 .browser-file {
793 796 background: url("/images/icons/document_16.png") no-repeat scroll 3px;
794 797 height: 16px;
795 798 padding-left: 20px;
796 799 text-align: left;
797 800 }
798 801
799 802 .browser-dir {
800 803 background: url("/images/icons/folder_16.png") no-repeat scroll 3px;
801 804 height: 16px;
802 805 padding-left: 20px;
803 806 text-align: left;
804 807 }
805 808
806 809 #repos_list {
807 810 border: 1px solid #556CB5;
808 811 background: #FFFFFF;
809 812 } No newline at end of file
General Comments 0
You need to be logged in to leave comments. Login now