style.css 18.3 KB
Newer Older
K
kohsuke 已提交
1 2 3
/*
 * The MIT License
 * 
4
 * Copyright (c) 2004-2010, Sun Microsystems, Inc., Kohsuke Kawaguchi, Daniel Dyer, Stephen Connolly
K
kohsuke 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
 * 
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 * 
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
K
kohsuke 已提交
24 25 26 27 28 29 30 31 32 33 34 35
body {
  margin: 0;
  padding: 0;
  background: white;
}

body, table, form, input, td, th, p, textarea, select
{
  font-family: Verdana, Helvetica, sans serif;
  font-size: 11px;
}

K
kohsuke 已提交
36 37 38 39
FORM {
  margin: 0;
}

K
kohsuke 已提交
40 41 42 43
td {
  vertical-align: top;
}

K
kohsuke 已提交
44 45 46 47
dt {
  font-weight: bold;
}

48 49 50 51
.fixed-width {
  font-family: Courier, monospace;
}

K
kohsuke 已提交
52 53 54 55
.center {
  text-align: center;
}

M
mindless 已提交
56
.middle-align td, td.middle-align {
K
kohsuke 已提交
57 58 59
  vertical-align: middle;
}

M
mindless 已提交
60
.center-align td, td.center-align {
61 62 63
  text-align: center;
}

M
mindless 已提交
64 65 66 67
.no-wrap td, td.no-wrap {
  white-space: nowrap;
}

K
kohsuke 已提交
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
#main-table {
  padding: 0;
  border-collapse: collapse;
}

#top-panel {
  margin-bottom: 3pt;
  height: 34px;
  background: url(../images/topbar.png) repeat-x;
}
#top-panel a {
  text-decoration: none;
}

#left-top-nav {
  text-align: left;
  border-left: 10px solid #fff;
  padding: 4px;
  color: #222;
}

#left-top-nav a, #right-top-nav a {
  color: black;
}

#right-top-nav {
  text-align: right;
  padding: 4px;
}

#main-panel {
  padding: 10px;
}

#side-panel {
  padding: 4px;
  width: 220px;
}

#footer {
  text-align: right;
  font-size: 8pt;
  margin-top: 10em;
  padding: 10px;
  border-top: 1px solid #bbb;
}

#tasks {
  padding: 4px;
117
}
K
kohsuke 已提交
118

119 120 121 122 123
.skiplink {
    position: absolute;
    left: -20000px;
}

124 125 126 127 128 129 130 131 132 133 134 135
#shutdown-msg {
    font-weight: bold;
    color: white;
    background-color: #ef2929;
    text-align: center;
    margin-left: 2em;
    margin-right: 2em;
    margin-bottom: 0.5em;
    padding: 0.5em;
    -moz-border-radius: 0.5em;
}

K
kohsuke 已提交
136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
a:link {
  text-decoration: underline;
  color: #204A87;
}

a:visited {
  text-decoration: underline;
  color: #5c3566;
}

/* tip - anchors of class info */
a.tip {
  position:relative;
  z-index:24;
  text-decoration: underline;
}

a.tip:hover {
  z-index:25;
}

a.tip span {
  display: none
}

a.tip:hover span {
  display:block;
  position:absolute;
164 165
  top:2em;
  left:2em;
K
kohsuke 已提交
166 167
  width:400px;
  border:1px solid #bbbbbb;
168
  background-color:#fffff0;
K
kohsuke 已提交
169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206
  color:#000;
  text-align: left
}

#top-nav .a {
  color: white;
}

img {
  vertical-align: middle;
  border: 0;
}

table.tab {
  border-collapse: collapse;
}

td.selected_tab {
  vertical-align: middle;
  border: 1px #090 solid;
  background: #ffffff;
}

td.tab_filler {
  background: #ffffff;
  border-bottom: 1px #090 solid;
}

td.tab {
  vertical-align: middle;
  border: 1px #090 solid;
  background: #f0f0f0;
}

.dashboard td {
  padding: 4px 4px 4px 4px;
}

207 208 209 210 211 212
pre {/* see http://users.tkk.fi/tkarvine/pre-wrap-css3-mozilla-opera-ie.html */
    white-space: pre-wrap;       /* css-3 */
    white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
    white-space: -pre-wrap;      /* Opera 4-6 */
    white-space: -o-pre-wrap;    /* Opera 7 */
    word-wrap: break-word;       /* Internet Explorer 5.5+ */
213
    margin: 0;
214 215
}

K
kohsuke 已提交
216 217 218 219
pre.console {
  overflow: auto;
}

220 221 222 223
.setting-leftspace {
  width: 2em;
}

K
kohsuke 已提交
224 225 226 227
.setting-name {
  white-space: nowrap;
}

228 229 230 231 232
.setting-main {
  width: 100%; /* try to make this column as big as possible. */
}
.setting-help {
  width: 16px;
K
kohsuke 已提交
233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265
}

.setting-input {
  width: 100%;
}

.setting-description {
  font-size: 0.8em;
  margin-top: 0;
  padding-top: 0;
}

/* div that looks like a hyperlink */
.pseudoLink {
  cursor: pointer;
}

.advancedLink {
  text-align: right;
}

.advancedBody {
  display: none;
}

.scm_info {
  width: 480px;
}

.build-row {
  padding: 3px 4px 3px 4px;
}

K
kohsuke 已提交
266 267 268 269
.build-keep {
  font-weight: bold;
}

K
kohsuke 已提交
270 271 272 273 274 275 276 277 278 279 280
.task-header {
  display: block;
  border-bottom: 1px #090 solid;
  font-weight: bold;
  font-size: 12pt;
}

.task {
  white-space: nowrap;
}

281 282 283 284
.subtasks {
  padding-left: 1em;
}

K
kohsuke 已提交
285 286 287
.main-table {
}

288
div.dashboard {
K
kohsuke 已提交
289
  width: 100%;
290
  clear:both;
K
kohsuke 已提交
291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325
}

.pane  {
  margin-top: 4px;
  white-space: nowrap;
}
.pane td {
  padding: 4px 4px 3px 4px;
}

table.pane {
  width: 100%;
  border-collapse: collapse;
  border: 1px #bbb solid;
}

td.pane {
  border: 1px #bbb solid;
  padding: 3px 4px 3px 4px;
  vertical-align: middle;
}

td.pane-header {
  border: 1px #bbb solid;
  border-right: none;
  border-left: none;
  background-color: #f0f0f0;
  font-weight: bold;
}

th.pane {
  border: 1px #bbb solid;
  font-weight: bold;
}

326
.bigtable tr {
K
kohsuke 已提交
327 328 329 330
  border: 1px solid #bbb;
  padding: 3px 4px 3px 4px;
}

331 332 333 334
.bigtable tr:hover {
  background-color: #f0f0f0;
}

335
.bigtable th {
K
kohsuke 已提交
336 337 338 339 340 341
  font-weight: bold;
  border: none;
  background-color: #f0f0f0;
  padding: 3px 4px 3px 4px;
}

342
.bigtable td {
K
kohsuke 已提交
343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391
  vertical-align: middle;
  padding: 3px 4px 3px 4px;
}

.smallfont {
  font-size: 9px;
}

#foldertab {
  padding: 4px 0;
  margin-left: 0;
  border-bottom: 1px solid #090;
  font: bold 12px Verdana, sans-serif;
}

#foldertab li {
  list-style: none;
  margin: 0;
  display: inline;
}

#foldertab li a {
  padding: 4px 0.5em;
  margin-left: 3px;
  border: 1px solid #090;
  border-bottom: none;
  background: #090;
  text-decoration: none;
}

#foldertab li a:link { color: white; }
#foldertab li a:visited { color: white; }

#foldertab li a:hover {
  color: white;
  background: #6c0;
  border-color: #6c0;
}

#foldertab li a#current {
  background: white;
  border-bottom: 1px solid white;
  color: black;
}

.changeset-message {
  border: 1px solid #ccb;
  background: #eed;
  padding: 4px;
392
  white-space: normal;
K
kohsuke 已提交
393 394
}

395 396 397 398
.disabledJob {
  color: gray;
}

K
kohsuke 已提交
399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415
.spinner {
  padding-left: 32px;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  background-image: url("../images/spinner.gif");
  background-repeat: no-repeat;
  background-position: left;
}

.spinner-right {
  padding-right: 32px;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  background-image: url("../images/spinner.gif");
  background-repeat: no-repeat;
  background-position: right;
}
K
kohsuke 已提交
416

417 418 419 420
#login-field {
    vertical-align: middle;
    padding-right: 1em;
    width:1px;
421 422 423 424 425
}

#login-field SPAN {
  white-space:nowrap;
  color: white;
426 427 428
}

#login-field A {
K
kohsuke 已提交
429 430 431 432 433
    /*
      link inside login field should be always white.
      If I set this to inherit, it won't work in IE7
     */
    color: white;
434 435
}

436
div.behavior-loading {
437
    position: absolute; width: 80%; height:100%;
438
    background-color: #e4e4e4; text-align: center; font-size: 300%;
439 440 441 442 443
    opacity: 0.5;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    filter: alpha(opacity=50);
}

444
/* ======================== error/warning message (mainly in the form.) Use them on block elements ======================== */
K
kohsuke 已提交
445 446 447 448 449 450 451 452 453 454
.error {
    color: #CC0000;
    font-weight: bold;
    padding-left: 20px;
    min-height: 16px;
    background-image: url("../images/16x16/error.gif");
    background-position: left center;
    background-repeat: no-repeat;
}

455 456 457 458 459
.error-inline {
    color: #CC0000;
    font-weight: bold;
}

K
kohsuke 已提交
460 461 462 463 464 465 466 467 468 469
.warning {
    color: #C4A000;
    font-weight: bold;
    padding-left: 20px;
    min-height: 16px;
    background-image: url( "../images/16x16/warning.gif" );
    background-position: left center;
    background-repeat: no-repeat;
}

470 471 472 473 474
.warning-inline {
    color: #C4A000;
    font-weight: bold;
}

475 476 477 478 479 480 481 482 483
.info {
    color: black;
    font-weight: bold;
    padding-left: 20px;
    min-height: 16px;
    background-image: url( "../images/16x16/go-next.gif" ); /* TODO: get a better icon */
    background-position: left center;
    background-repeat: no-repeat;
}
K
kohsuke 已提交
484 485 486 487 488 489 490 491 492 493 494
/* ====================== help ===================================== */

.help {
  display: none;  /* hidden until loaded */
  border: solid #bbb 1px;
  background-color: #f0f0f0;
  padding: 1em;
  margin-bottom: 1em;
}

.help-area {
495
  /* this marker class is used by JavaScript to locate the area to display help text. */
K
kohsuke 已提交
496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532
}


/* ====================== project view tab bar ===================================== */
#viewList {
  border: none;
  margin-bottom: 0px;
  width: 100%;
  white-space: nowrap;
}
#viewList td {
  padding: 0px;
}
#viewList td.inactive {
  border: solid 1px #ccc;
  border-bottom-color: #bbb;
}
#viewList td.inactive:hover {
  background-color: #777;
}
#viewList td.inactive a {
  text-decoration: none;
  color: #444
}
#viewList td.noleft {
  border-left: none;
}
#viewList td.noright {
  border-right: none;
}
#viewList td.active {
  border: solid 1px #bbb;
  padding: 0.5em;
  border-bottom: none;
  vertical-align:middle;
  background-color: rgb(240,240,240);
  font-weight: bold;
533
  white-space: nowrap;
K
kohsuke 已提交
534 535 536 537 538 539 540 541 542 543 544 545 546
}
#viewList td.filler {
  border: none;
  border-bottom: solid 1px #bbb;
  width: 100%;
  text-align: right;
}
#viewList a {
  display: block;
  padding: 0.5em;
  white-space: nowrap;
}

547 548 549 550
#projectstatus th {
  text-align: left;
}

551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568
/* ============================ parameters form ========================== */

table.parameters {
  border-collapse: collapse;
}

table.parameters > tbody > tr:first-child > td {
  padding-top: 4px;
}

table.parameters .setting-description {
  padding-bottom: 4px;
}

table.parameters > tbody:hover {
  background-color: #f0f0f0;
}

569 570
/* ============================ health report hover ========================== */

571
.healthReport a {
572 573 574
    text-decoration: none;
}

575
.healthReport div.healthReportDetails {
576 577 578
    display: none;
}

579
.healthReport:hover, .healthReport.hover { /* fix IE6 bug with :hover */
580 581 582
    background: transparent;
}

583
.healthReport:hover div.healthReportDetails, .healthReport.hover div.healthReportDetails {
584 585 586
    display: block;
    position: absolute;
    background-color: #ffe;
K
kohsuke 已提交
587
    border: 1px solid #bbb;
588
    margin-left: 32px; /* move it across a bit */
589
    z-index: 26;
590 591
}

592
.healthReport div.healthReportDetails table {
593 594 595
    border-collapse: collapse;
    width: 450px; /* fix IE bug with width */
}
K
kohsuke 已提交
596

597 598 599 600 601 602
/* ========================= build history ========================= */
#buildHistory .healthReport {
    display: inline;
    margin-right: 1em;
}

M
mindless 已提交
603 604 605 606 607 608 609 610 611
#buildHistory tr.no-wrap td.middle-align {
    padding: 0;
}

#buildHistory td.desc {
    padding: 0;
    white-space: normal;
}

K
kohsuke 已提交
612 613 614 615 616 617 618 619 620 621 622
/* ========================= editable combobox style ========================= */
.comboBoxList {
  border: 1px solid #000;
  overflow: visible;
  color: MenuText;
  background-color: Menu;
}
.comboBoxSelectedItem {
  background-color: Highlight;
  color: HighlightText;
}
623 624 625
.combobox-values {
  display: none;
}
K
kohsuke 已提交
626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663


/* ========================= directory tree ========================= */
.parentPath {
  font-size: 1.2em;
  font-weight: bold;
}

.dirTree li {
  list-style: none;
}

.dirTree .rootIcon {
  margin-right: 1em;
}

TABLE.fileList {
  margin-left: 2em;
  padding: 0;
}

TABLE.fileList TD {
  padding: 0;
}

TABLE.fileList TD.fileSize {
  padding-left: 2em;
  text-align: right;
  color: #888;
}



/* ========================= test result ========================= */
.result-passed {
  color: #3465a4;
}

664 665 666 667
.result-skipped {
  color: #ddbb00;
}

K
kohsuke 已提交
668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721
.result-fixed {
  color: #3465a4;
  font-weight: bold;
}

.result-failed {
  color: #ef2929;
}

.result-regression {
  color: #ef2929;
  font-weight: bold;
}
.test-trend-caption {
  text-align: center;
  font-size: 1.2em;
  font-weight: bold;
}



/* ========================= sortable table ========================= */
table.sortable a.sortheader {
  text-decoration: none;
  color: black;
  display: block;
}
table.sortable span.sortarrow {
  color: black;
  text-decoration: none;
}




/* ========================= fingerprint ========================= */
.md5sum {
  text-align: right;
}

.fingerprint-summary-header {
  font-size: 1.2em;
  vertical-align: middle;
}

TABLE.fingerprint-in-build TD {
  padding-left: 1em;
  padding-right: 1em;
}




/* ========================= plugin manager ========================= */
722 723 724
#plugins {
  margin-top: 0;
  border-top: none;
K
kohsuke 已提交
725 726
}

M
mindless 已提交
727 728
#pluginsAdv tr:hover {
  background-color: inherit;
K
kohsuke 已提交
729 730
}

731 732
#plugins tr.already-upgraded {
  background-color: #e8eeee;
K
kohsuke 已提交
733 734
}

735 736 737

/* ========================= repeatable elements ========================= */

738 739
.repeated-chunk .show-if-last      { visibility: hidden; }
.repeated-chunk.last .show-if-last { visibility: visible; }
740

741 742
.repeated-chunk .show-if-not-last      { visibility: visible; }
.repeated-chunk.last .show-if-not-last { visibility: hidden; }
743

744 745
.repeated-chunk .show-if-not-only      { visibility: visible; }
.repeated-chunk.only .show-if-not-only { visibility: hidden; }
K
kohsuke 已提交
746

747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766
/* == nested erpeatable elements / 2 deep == */
.repeated-chunk .repeated-chunk .show-if-last      { visibility: hidden; }
.repeated-chunk .repeated-chunk.last .show-if-last { visibility: visible; }

.repeated-chunk .repeated-chunk .show-if-not-last      { visibility: visible; }
.repeated-chunk .repeated-chunk.last .show-if-not-last { visibility: hidden; }

.repeated-chunk .repeated-chunk .show-if-not-only      { visibility: visible; }
.repeated-chunk .repeated-chunk.only .show-if-not-only { visibility: hidden; }

/* == nested erpeatable elements / 3 deep == */
.repeated-chunk .repeated-chunk .repeated-chunk .show-if-last      { visibility: hidden; }
.repeated-chunk .repeated-chunk .repeated-chunk.last .show-if-last { visibility: visible; }

.repeated-chunk .repeated-chunk .repeated-chunk .show-if-not-last      { visibility: visible; }
.repeated-chunk .repeated-chunk .repeated-chunk.last .show-if-not-last { visibility: hidden; }

.repeated-chunk .repeated-chunk .repeated-chunk .show-if-not-only      { visibility: visible; }
.repeated-chunk .repeated-chunk .repeated-chunk.only .show-if-not-only { visibility: hidden; }

K
kohsuke 已提交
767 768 769 770 771 772 773 774 775 776 777
/*
    <DIV>s marked with to-be-removed is used in conjunction with repetable.jelly and hetero-list.jelly
    and represents a master copy that gets pulled out from HTML, then inserted later upon demand multiple times
    when the user does "Add".
*/
DIV.to-be-removed { display: none; }

/* ========================= Other form related CSS ========================= */

.row-set-end { display: none; }

K
kohsuke 已提交
778 779 780 781 782 783 784 785
/* ========================= Yahoo UI style adjustments ========================= */
.ygtvlabel, .ygtvlabel:link, .ygtvlabel:visited, .ygtvlabel:hover {
	color: inherit;
}

DIV.yahooTree td {
  vertical-align: middle;
}
K
kohsuke 已提交
786 787 788 789 790 791 792 793

.yui-tt {
  border: 1px solid black !important;
  background-color: #FFFFFF !important;
  padding: 2px !important;
  font-family: inherit !important;
  color: inherit !important;
}
794

K
kohsuke 已提交
795 796 797 798
.yui-skin-sam .yui-tt .bd {
  border: none !important;
  background-color: #FFF !important;
}
799 800 801 802 803
/* ========================= search box at the top-right of the page ========================= */
#search-box {
  background: white url(../images/16x16/search.gif) no-repeat 2px center;
  padding-left: 20px;
  width: 10em;
804
  position: static; 
805 806
}

807 808 809 810
#search-box.defaulted {
  color: gray;
}

811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837
#search-box-completion {
  text-align: left;
  width:10em;
  position: absolute;
  z-index: 999;
}

#search-box-completion .yui-ac-content {
  border: 1px solid black;
  width:10em;
  background-color: white;
  overflow: hidden;
}

#search-box-completion UL {
  padding: 0 0;
  width: 100%;
  margin: 0 0;
  list-style: none;
}
#search-box-completion LI {
  padding-left:20px;
  white-space:nowrap;
}
#search-box-completion LI.yui-ac-highlight {
  background: #729FCF;
}
838 839 840 841 842 843 844 845 846
#search-box-minWidth {
  position:absolute;
  visibility: hidden;
  width:5em;
}

#search-box-sizer {
  position:absolute;
  visibility: hidden;
847
}
K
kohsuke 已提交
848 849 850 851 852 853 854 855 856 857 858 859 860

/* ========================= resizable text area ========================= */

TEXTAREA {
    margin-bottom: 0;
}
DIV.textarea-handle {
    height: 5px;
    font-size: 0;
    background: #EEE url(../images/textarea-handle.gif) no-repeat 50% 1px;
    border: 1px solid #BABDB6;
    border-top: none;
    cursor: s-resize;
861
}
862 863 864
TEXTAREA.rich-editor {
  visibility: hidden;
}
865 866 867 868 869 870 871 872 873

/* ========================= hover notification ========================= */

#hoverNotification {
    visibility:hidden;
    background-color: white;
    border: 1px solid black;
    padding: 0.5em;
}
874

875
/* ========================= D&D support in heterogenous/repeatable lists = */
876

877
.hetero-list-container .dd-handle, .repeated-container .dd-handle {
878
    cursor: move;
K
kohsuke 已提交
879 880 881
    background-image: url(../images/grip.png);
    background-repeat: repeat-y;
    padding-left: 20px;
882 883 884 885 886 887 888 889 890
}

/* ========================= plugin update center ========================= */

#plugins .excerpt {
    white-space: normal;
    margin-top: 0.5em;
    padding-left: 2em;
    color: #888a85;
891 892
}

893 894 895 896 897 898 899
#plugins .compatWarning {
    white-space: normal;
    margin-top: 0.5em;
    padding-left: 2em;
    color: #FF0000;
}

900 901 902 903 904 905 906 907 908 909
/* ========================= progress bar ========================= */

table.progress-bar {
  border-collapse: collapse;
  border: 1px solid #3465a4;
  height: 6px;
  width: 100px;
  clear: none;
}

K
kohsuke 已提交
910 911 912 913
table.progress-bar tr.unknown {
    background-image:url(../images/progress-unknown.gif);
}

914 915 916 917 918 919 920 921 922 923 924 925
td.progress-bar-done {
  background-color: #3465a4;
}

td.progress-bar-left {
  background-color: #ffffff;
}

table.progress-bar.red {
  border: 1px solid #cc0000;
}

K
kohsuke 已提交
926 927 928
table.progress-bar.red tr.unknown {
    background-image:url(../images/progress-unknown-red.gif);
}
929 930 931
table.progress-bar.red td.progress-bar-done {
  background-color: #cc0000;
}
932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951

/* ========================= YUI dialog ========================= */

.dialog .hd {
    font-size: 12px !important;
}
/* discovered this margin fix by a trial and error. This can very well be a totally wrong fix, or perhaps updating
 to the latest YUI will fix this? */
.dialog .hd {
    margin: 0 !important;
}

.dialog .bd {
    margin: 0 !important;
}

.dialog .ft {
    margin: 0 !important;
}

952 953 954 955 956 957 958 959 960 961 962 963
/* ========================= tags/labels ================== */
/* tag0 is the least important tag in a tag cloud */
.tag0 { font-size: 1.00em; }
.tag1 { font-size: 1.10em; }
.tag2 { font-size: 1.20em; }
.tag3 { font-size: 1.30em; }
.tag4 { font-size: 1.40em; }
.tag5 { font-size: 1.50em; }
.tag6 { font-size: 1.60em; }
.tag7 { font-size: 1.70em; }
.tag8 { font-size: 1.80em; }
.tag9 { font-size: 1.90em; }