Changeset 464
- Timestamp:
- Dec 7, 2009, 6:40:53 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
web/trunk/trac/htdocs/main.css
r463 r464 1 /********************************** 2 ** Icons ** 3 ***********************************/ 4 1 5 @media screen { 2 6 /* icones */ … … 10 14 } 11 15 16 #altlinks li a.ics { 17 background-image:url(/static/ics.png); 18 } 19 20 #altlinks li a.rss { 21 background-image:url(/static/feed.png); 22 } 23 24 table.listing th.asc a { 25 background-image:url(/static/asc.png); 26 } 27 28 table.listing th.desc a { 29 background-image:url(/static/desc.png); 30 } 31 32 #dirlist td.name a.dir { 33 background-image:url(/static/folder.png); 34 } 35 36 #dirlist td.name a.parent { 37 background-image:url(/static/parent.png); 38 } 39 40 #dirlist tr span.expander { 41 background-image:url(/static/expander_normal.png); 42 } 43 44 #dirlist tr span.expander:hover { 45 background-image:url(/static/expander_normal_hover.png); 46 } 47 48 #dirlist tr.expanded span.expander { 49 background-image:url(/static/expander_open.png); 50 } 51 52 #dirlist tr.expanded span.expander:hover { 53 background-image:url(/static/expander_open_hover.png); 54 } 55 56 #dirlist td.name a.file { 57 background-image:url(/static/file.png); 58 } 59 60 #dirlist td span.loading { 61 background-image:url(/static/loading.gif); 62 } 63 64 /********************************** 65 ** Layout ** 66 ***********************************/ 67 12 68 html { 13 background:#000;14 69 margin:0; 15 70 padding:0; … … 17 72 18 73 body { 19 background:#0A191E;20 color:#CF7500;21 74 min-width:730px; 22 border:1px solid #CF7500;23 75 margin:5px 10%; 24 76 padding:0.5em; … … 29 81 } 30 82 31 /* Undo /body/ for a few other cases */32 #dirlist {33 background:#50646E;34 color:#000;35 }36 37 #preview {38 background:#50646E url(/static/draft.png);39 color:#000;40 }41 42 83 #mainnav { 43 84 border:none; 44 background:#0A191E;45 85 } 46 86 47 87 /* smaller buttons */ 48 88 #mainnav :link,#mainnav :visited { 49 border-right:1px solid #000;50 background-color:#2C373D;51 background-image:url(/static/topbar_gradient2.png);52 color:#CF7500;53 89 padding-left:8px; 54 90 padding-right:8px; 55 }56 57 #mainnav :link:hover,#mainnav :visited:hover {58 border-right:1px dotted transparent;59 color:#F0B302;60 91 } 61 92 … … 80 111 81 112 #prefs,#tabs,.wiki-toc { 82 background:#222;83 border:1px inset #7387A0;84 color:#D2E6F0;85 113 margin:30px 0 0; 86 114 } 87 115 88 .wiki-toc .active,#tabs li li.active {89 background:#000;90 border:1px solid transparent;91 }92 93 116 #mainnav li { 94 background-color:#0A191E;95 background-image:url(/static/topbar_gradient.png);96 117 padding:0.2em 0; 97 118 } … … 101 122 } 102 123 103 pre.wiki,pre.literal-block {104 background:#7387A0;105 border:1px solid #111;106 }107 108 124 h1 { 109 color:#7387A0;110 125 width:600px; 111 126 margin:33px 0 0 50px; … … 129 144 130 145 .wikipage h2,.wikipage h3 { 131 color:#CF7500;132 146 margin-left:40px; 133 }134 135 .wikitoolbar {136 border-color:#333;137 }138 139 .wikitoolbar :link,.wikitoolbar :visited {140 background:url(/static/edit_toolbar.png) no-repeat 0 0;141 border-color:#333;142 147 } 143 148 144 149 h2 { 145 150 background:none; 146 color:#F0B302;147 151 margin-left:40px; 148 border-color:#7387A0;149 }150 151 .milestone .info h2 {152 background:none;153 border-color:#7387A0;154 }155 156 #ticket,#ticket table {157 background-color:#46505F;158 border:1px solid #5A3200;159 }160 161 #ticket .description h3 {162 border-bottom:1px solid #CF7500;163 color:#7387A0;164 }165 166 #ticket table.properties tr {167 border-bottom:1px dotted #CF7500;168 }169 170 div#ticket.ticketdraft {171 background:#8EB2C4 url(/static/draft.png) repeat;172 }173 174 #ticket .date {175 color:#efefef;176 152 } 177 153 178 154 #warning.system-message { 179 background:#CF7500;180 border:2px solid #886;181 155 text-align:center; 182 156 width:755px; … … 185 159 186 160 .searchword0 { 187 background:#8EB2C4;188 color:#000;189 161 padding:0 0.1em; 190 }191 192 input,select,input[type=button],input[type=submit],input[type=reset],input[type=checkbox],#info th {193 background:#000;194 color:#F0B302;195 border-color:#CF7500;196 }197 198 input[type=button]:hover,input[type=submit]:hover,input[type=reset]:hover {199 color:#CF7500;200 background:#000;201 border-color:#F0B302;202 }203 204 input[type=button][disabled],input[type=submit][disabled],input[type=reset][disabled] {205 background:#000;206 color:#7387A0;207 }208 209 input[type="text"],input.textwidget,textarea {210 color:#CF7500;211 background:#2C373D;212 border-color:#F0B302;213 }214 215 table {216 background:#000;217 color:#FFF;218 }219 220 table.progress td {221 background:#444;222 }223 224 table.progress td.closed {225 background:#4c4;226 162 } 227 163 … … 251 187 } 252 188 253 table.listing thead {254 background:#000;255 }256 257 table.listing tbody tr.even {258 background-color:#2C373D;259 }260 261 table.listing tbody tr.odd {262 background-color:#000;263 }264 265 :link:hover,:visited:hover {266 background-color:#000;267 color:#CF7500;268 }269 270 table.listing tbody tr :hover,table.listing tbody td :hover,table.listing tbody th :hover,table.listing tbody tr:hover td,table.listing tbody tr:hover th {271 background-color:#000;272 color:#D2E6F0;273 }274 275 189 table.code thead th,table.code tbody th,.diff table thead th,.diff table thead td,.diff table tbody th,.diff table tbody td,.diff li.entry,.diff table tbody.skipped td { 276 background:#000;277 color:#D2E6F0;278 190 padding:0 0.2em; 279 191 } … … 281 193 .diff li.entry { 282 194 border:none; 283 background:#000;284 195 } 285 196 286 197 .diff table tbody.skipped td { 287 border:dotted #998;288 198 border-width:1px 0; 289 199 } 290 200 291 .diff table.inline tbody.mod td.l,.diff table.inline tbody.rem td.l {292 background:#500;293 color:#CF7500;294 border-color:#CF7500;295 }296 297 201 .diff table.inline tbody.mod td del { 298 background:#CF7500;299 color:#000;300 202 padding:0 0.2em; 301 203 } 302 204 303 .diff table.inline tbody.mod td.r,.diff table.inline tbody.add td.r {304 background:#468a29;305 color:#000;306 border-color:#1F3D12;307 }308 309 205 .diff table.inline tbody.mod td ins { 310 background:#72E043;311 color:#000;312 206 padding:0 0.2em; 313 207 } 314 208 315 h2.report-result {316 background-color:#000;317 color:#D2E6F0;318 border-color:#D2E6F0;319 }320 321 table.tickets tbody tr.even.prio1,.tickets tr.color1-even {322 background-color:#000;323 color:#D31E1E;324 border-bottom:1px solid #D31E1E;325 }326 327 table.tickets tbody tr.odd.prio1,.tickets tr.color1-odd {328 background-color:#222;329 color:#D31E1E;330 border-bottom:1px solid #D31E1E;331 }332 333 table.tickets tbody tr.even.prio2,.tickets tr.color2-even {334 background-color:#000;335 color:#CF7500;336 border-color:#CF7500;337 }338 339 table.tickets tbody tr.odd.prio2,.tickets tr.color2-odd {340 background-color:#222;341 color:#CF7500;342 border-color:#CF7500;343 }344 345 table.tickets tbody tr.even.prio3,.tickets tr.color3-even {346 background-color:#000;347 color:#F0B302;348 border-color:#F0B302;349 }350 351 table.tickets tbody tr.odd.prio3,.tickets tr.color3-odd {352 background-color:#222;353 color:#F0B302;354 border-color:#F0B302;355 }356 357 table.tickets tbody tr.even.prio4,.tickets tr.color4-even {358 background-color:#000;359 color:#7387A0;360 border-color:#7387A0;361 }362 363 table.tickets tbody tr.odd.prio4,.tickets tr.color4-odd {364 background-color:#222;365 color:#7387A0;366 border-color:#7387A0;367 }368 369 209 #attachments input[type=submit] { 370 background:#444D5C url(/static/smile.png) no-repeat top left;371 210 text-align:left; 372 211 height:50px; 373 212 padding-left:70px; 374 color:#CF7500;375 213 font-weight:700; 376 }377 378 #attachments input[type=submit]:hover {379 background:#1A1A1A url(/static/smile2.png) no-repeat top left;380 color:#F0B302;381 214 } 382 215 … … 423 256 #content.admin #tabcontent h2 { 424 257 float:left; 425 color:#fff;426 258 text-align:left; 427 259 padding:0; … … 430 262 .admin p.help { 431 263 clear:right; 432 color:#FF4500;433 264 float:left; 434 265 font-size:90%; … … 445 276 446 277 #content.admin .plugin { 447 background:#000 url(/static/presentation.png) no-repeat scroll center bottom;448 278 max-height:140px; 449 279 min-height:100px; … … 462 292 463 293 .p_word { 294 font-weight:700; 295 } 296 297 .code-lang { 298 font-weight:700; 299 } 300 301 .code-type { 302 font-weight:700; 303 } 304 305 .code-func { 306 font-weight:700; 307 } 308 309 .image-file { 310 text-align:center; 311 } 312 #content.prefs ul#tabs { 313 overflow:hidden; 314 border:none; 315 } 316 317 #content.prefs #tabcontent,#content.prefs #tabs li.active { 318 font-weight:700; 319 } 320 321 #content.prefs table,#content.prefs label { 322 font-weight:700; 323 } 324 325 #content.timeline #prefs { 326 margin-top:20px; 327 } 328 329 table.listing tbody td,table.listing tbody th { 330 white-space:normal; 331 } 332 333 #overview { 334 position:relative; 335 } 336 337 #content.search form { 338 min-height:150px; 339 margin:1em; 340 } 341 342 #content.admin #tabcontent { 343 margin-left:130px; 344 min-height:300px; 345 padding:47px; 346 } 347 348 #content.ticket,table.listing { 349 margin:0 auto; 350 } 351 352 /********************************** 353 ** colors ** 354 ***********************************/ 355 body { 356 background:#0A191E; 357 color:#CF7500; 358 border:1px solid #CF7500; 359 } 360 361 362 /* Undo /body/ for a few other cases */ 363 #dirlist { 364 background:#50646E; 365 color:#000; 366 } 367 368 #preview { 369 background:#50646E url(/static/draft.png); 370 color:#000; 371 } 372 373 #mainnav { 374 background:#0A191E; 375 } 376 377 /* smaller buttons */ 378 #mainnav :link,#mainnav :visited { 379 border-right:1px solid #000; 380 background-color:#2C373D; 381 background-image:url(/static/topbar_gradient2.png); 382 color:#CF7500; 383 } 384 .wikitoolbar :link,.wikitoolbar :visited { 385 background:url(/static/edit_toolbar.png) no-repeat 0 0; 386 border-color:#333; 387 } 388 #attachments input[type=submit] { 389 background:#444D5C url(/static/smile.png) no-repeat top left; 390 color:#CF7500; 391 } 392 393 #attachments input[type=submit]:hover { 394 background:#1A1A1A url(/static/smile2.png) no-repeat top left; 395 color:#F0B302; 396 } 397 #mainnav :link:hover,#mainnav :visited:hover { 398 border-right:1px dotted transparent; 399 color:#F0B302; 400 } 401 402 403 #prefs,#tabs,.wiki-toc { 404 background:#222; 405 border:1px inset #7387A0; 406 color:#D2E6F0; 407 } 408 409 .wiki-toc .active,#tabs li li.active { 410 background:#000; 411 border:1px solid transparent; 412 } 413 414 #mainnav li { 415 background-color:#0A191E; 416 background-image:url(/static/topbar_gradient.png); 417 } 418 419 #info { 420 background:inherit; 421 } 422 423 pre.wiki,pre.literal-block { 424 background:#7387A0; 425 border:1px solid #111; 426 } 427 428 h1 { 429 color:#7387A0; 430 } 431 .wikipage h2,.wikipage h3 { 432 color:#CF7500; 433 } 434 435 .wikitoolbar { 436 border-color:#333; 437 } 438 439 h2 { 440 background:none; 441 color:#F0B302; 442 border-color:#7387A0; 443 } 444 445 .milestone .info h2 { 446 background:none; 447 border-color:#7387A0; 448 } 449 450 #ticket,#ticket table { 451 background-color:#46505F; 452 border:1px solid #5A3200; 453 } 454 455 #ticket .description h3 { 456 border-bottom:1px solid #CF7500; 457 color:#7387A0; 458 } 459 460 #ticket table.properties tr { 461 border-bottom:1px dotted #CF7500; 462 } 463 464 div#ticket.ticketdraft { 465 background:#8EB2C4 url(/static/draft.png) repeat; 466 } 467 468 #ticket .date { 469 color:#efefef; 470 } 471 472 #warning.system-message { 473 background:#CF7500; 474 border:2px solid #886; 475 } 476 477 .searchword0 { 478 background:#8EB2C4; 479 color:#000; 480 } 481 482 input,select,input[type=button],input[type=submit],input[type=reset],input[type=checkbox],#info th { 483 background:#000; 484 color:#F0B302; 485 border-color:#CF7500; 486 } 487 488 input[type=button]:hover,input[type=submit]:hover,input[type=reset]:hover { 489 color:#CF7500; 490 background:#000; 491 border-color:#F0B302; 492 } 493 494 input[type=button][disabled],input[type=submit][disabled],input[type=reset][disabled] { 495 background:#000; 496 color:#7387A0; 497 } 498 499 input[type="text"],input.textwidget,textarea { 500 color:#CF7500; 501 background:#2C373D; 502 border-color:#F0B302; 503 } 504 505 table { 506 background:#000; 507 color:#FFF; 508 } 509 510 table.progress td { 511 background:#444; 512 } 513 514 table.progress td.closed { 515 background:#4c4; 516 } 517 518 519 520 table.listing thead { 521 background:#000; 522 } 523 524 table.listing tbody tr.even { 525 background-color:#2C373D; 526 } 527 528 table.listing tbody tr.odd { 529 background-color:#000; 530 } 531 532 :link:hover,:visited:hover { 533 background-color:#000; 534 color:#CF7500; 535 } 536 537 table.listing tbody tr :hover,table.listing tbody td :hover,table.listing tbody th :hover,table.listing tbody tr:hover td,table.listing tbody tr:hover th { 538 background-color:#000; 539 color:#D2E6F0; 540 } 541 542 table.code thead th,table.code tbody th,.diff table thead th,.diff table thead td,.diff table tbody th,.diff table tbody td,.diff li.entry,.diff table tbody.skipped td { 543 background:#000; 544 color:#D2E6F0; 545 } 546 547 .diff li.entry { 548 border:none; 549 background:#000; 550 } 551 552 .diff table tbody.skipped td { 553 border:dotted #998; 554 border-width:1px 0; 555 } 556 557 .diff table.inline tbody.mod td.l,.diff table.inline tbody.rem td.l { 558 background:#500; 559 color:#CF7500; 560 border-color:#CF7500; 561 } 562 563 .diff table.inline tbody.mod td del { 564 background:#CF7500; 565 color:#000; 566 padding:0 0.2em; 567 } 568 569 .diff table.inline tbody.mod td.r,.diff table.inline tbody.add td.r { 570 background:#468a29; 571 color:#000; 572 border-color:#1F3D12; 573 } 574 575 .diff table.inline tbody.mod td ins { 576 background:#72E043; 577 color:#000; 578 padding:0 0.2em; 579 } 580 581 h2.report-result { 582 background-color:#000; 583 color:#D2E6F0; 584 border-color:#D2E6F0; 585 } 586 587 table.tickets tbody tr.even.prio1,.tickets tr.color1-even { 588 background-color:#000; 589 color:#D31E1E; 590 border-bottom:1px solid #D31E1E; 591 } 592 593 table.tickets tbody tr.odd.prio1,.tickets tr.color1-odd { 594 background-color:#222; 595 color:#D31E1E; 596 border-bottom:1px solid #D31E1E; 597 } 598 599 table.tickets tbody tr.even.prio2,.tickets tr.color2-even { 600 background-color:#000; 601 color:#CF7500; 602 border-color:#CF7500; 603 } 604 605 table.tickets tbody tr.odd.prio2,.tickets tr.color2-odd { 606 background-color:#222; 607 color:#CF7500; 608 border-color:#CF7500; 609 } 610 611 table.tickets tbody tr.even.prio3,.tickets tr.color3-even { 612 background-color:#000; 613 color:#F0B302; 614 border-color:#F0B302; 615 } 616 617 table.tickets tbody tr.odd.prio3,.tickets tr.color3-odd { 618 background-color:#222; 619 color:#F0B302; 620 border-color:#F0B302; 621 } 622 623 table.tickets tbody tr.even.prio4,.tickets tr.color4-even { 624 background-color:#000; 625 color:#7387A0; 626 border-color:#7387A0; 627 } 628 629 table.tickets tbody tr.odd.prio4,.tickets tr.color4-odd { 630 background-color:#222; 631 color:#7387A0; 632 border-color:#7387A0; 633 } 634 635 #content.admin #tabcontent h2 { 636 color:#fff; 637 } 638 639 .admin p.help { 640 color:#FF4500; 641 } 642 643 #content.admin .plugin { 644 background:#000 url(/static/presentation.png) no-repeat scroll center bottom; 645 } 646 647 p_word { 464 648 color:green; 465 font-weight:700;466 649 } 467 650 468 651 .code-lang { 469 652 color:#ff8; 470 font-weight:700;471 653 } 472 654 473 655 .code-type { 474 656 color:#8f8; 475 font-weight:700;476 657 } 477 658 478 659 .code-func { 479 660 color:#f88; 480 font-weight:700;481 661 } 482 662 483 663 .image-file { 484 664 background:#0A191E; 485 text-align:center;486 665 } 487 666 … … 497 676 498 677 #content.prefs ul#tabs { 499 overflow:hidden;500 678 background:#333; 501 679 border:none; … … 510 688 511 689 #content.prefs #tabcontent,#content.prefs #tabs li.active { 512 font-weight:700;513 690 background:#CF7500; 514 691 color:#000; … … 523 700 background:#CF7500; 524 701 color:#000; 525 font-weight:700;526 }527 528 #content.timeline #prefs {529 margin-top:20px;530 }531 532 #altlinks li a.ics {533 background-image:url(/static/ics.png);534 }535 536 #altlinks li a.rss {537 background-image:url(/static/feed.png);538 }539 540 table.listing th.asc a {541 background-image:url(/static/asc.png);542 }543 544 table.listing th.desc a {545 background-image:url(/static/desc.png);546 }547 548 #dirlist td.name a.dir {549 background-image:url(/static/folder.png);550 }551 552 #dirlist td.name a.parent {553 background-image:url(/static/parent.png);554 }555 556 #dirlist tr span.expander {557 background-image:url(/static/expander_normal.png);558 }559 560 #dirlist tr span.expander:hover {561 background-image:url(/static/expander_normal_hover.png);562 }563 564 #dirlist tr.expanded span.expander {565 background-image:url(/static/expander_open.png);566 }567 568 #dirlist tr.expanded span.expander:hover {569 background-image:url(/static/expander_open_hover.png);570 }571 572 #dirlist td.name a.file {573 background-image:url(/static/file.png);574 }575 576 #dirlist td span.loading {577 background-image:url(/static/loading.gif);578 }579 580 table.listing tbody td,table.listing tbody th {581 white-space:normal;582 }583 584 #overview {585 position:relative;586 702 } 587 703 … … 609 725 } 610 726 611 #content.search form {612 min-height:150px;613 margin:1em;614 }615 616 #content.admin #tabcontent {617 margin-left:130px;618 min-height:300px;619 padding:47px;620 }621 622 727 .diff h2 .switch span { 623 728 color:#DDD; … … 662 767 } 663 768 664 #content.ticket,table.listing { 665 margin:0 auto; 666 } 769 770 771 772 773 774
Note: See TracChangeset
for help on using the changeset viewer.