style.css 20.6 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
#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;
  color: #222;
}

K
Kohsuke Kawaguchi 已提交
88 89 90
#right-top-nav {
    float: right;
    margin-right: 1em;
K
kohsuke 已提交
91 92
}

K
Kohsuke Kawaguchi 已提交
93 94
#left-top-nav a {
  color: black;
K
kohsuke 已提交
95 96 97 98
}

#main-panel {
  padding: 10px;
K
Kohsuke Kawaguchi 已提交
99
    padding-top: 0px;
K
kohsuke 已提交
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
}

#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
a:link {
  text-decoration: underline;
  color: #204A87;
}

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

146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
a.lowkey:link {
  text-decoration: none;
  color: inherit;
}

a.lowkey:hover {
  text-decoration: underline;
  color: inherit;
}

a.lowkey:visited {
  text-decoration: none;
  color: inherit;
}

K
kohsuke 已提交
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
/* 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;
179 180
  top:2em;
  left:2em;
K
kohsuke 已提交
181 182
  width:400px;
  border:1px solid #bbbbbb;
183
  background-color:#fffff0;
K
kohsuke 已提交
184 185 186 187 188 189 190 191 192 193 194 195 196
  color:#000;
  text-align: left
}

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

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

197 198 199 200 201 202
div.disabled {
    opacity : 0.4;
    filter: alpha(opacity=40); // msie
    background-color: #000;
}

K
kohsuke 已提交
203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
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;
}

228 229 230 231 232 233
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+ */
234
    margin: 0;
235 236
}

K
kohsuke 已提交
237 238 239 240
pre.console {
  overflow: auto;
}

241 242 243 244
.setting-leftspace {
  width: 2em;
}

K
kohsuke 已提交
245 246 247 248
.setting-name {
  white-space: nowrap;
}

249 250 251 252 253
.setting-main {
  width: 100%; /* try to make this column as big as possible. */
}
.setting-help {
  width: 16px;
K
kohsuke 已提交
254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286
}

.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 已提交
287 288 289 290
.build-keep {
  font-weight: bold;
}

K
kohsuke 已提交
291 292 293 294 295 296 297 298 299 300 301
.task-header {
  display: block;
  border-bottom: 1px #090 solid;
  font-weight: bold;
  font-size: 12pt;
}

.task {
  white-space: nowrap;
}

302 303 304 305
.subtasks {
  padding-left: 1em;
}

K
kohsuke 已提交
306 307 308
.main-table {
}

309
div.dashboard {
K
kohsuke 已提交
310
  width: 100%;
311
  clear:both;
K
kohsuke 已提交
312 313 314 315 316 317 318 319 320 321 322 323 324 325 326
}

.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;
}
K
Kohsuke Kawaguchi 已提交
327 328 329
table.pane > tbody > tr > td:last-child {
  border-right: 1px #bbb solid;
}
K
kohsuke 已提交
330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349

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;
}

350
.bigtable tr {
K
kohsuke 已提交
351 352 353 354
  border: 1px solid #bbb;
  padding: 3px 4px 3px 4px;
}

355 356 357 358
.bigtable tr:hover {
  background-color: #f0f0f0;
}

359
.bigtable th {
K
kohsuke 已提交
360 361 362 363 364 365
  font-weight: bold;
  border: none;
  background-color: #f0f0f0;
  padding: 3px 4px 3px 4px;
}

366
.bigtable td {
K
kohsuke 已提交
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 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415
  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;
416
  white-space: normal;
K
kohsuke 已提交
417 418
}

419 420 421 422
.disabledJob {
  color: gray;
}

K
kohsuke 已提交
423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439
.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 已提交
440

441 442 443 444
#login-field {
    vertical-align: middle;
    padding-right: 1em;
    width:1px;
445 446 447 448 449
}

#login-field SPAN {
  white-space:nowrap;
  color: white;
450 451 452
}

#login-field A {
K
kohsuke 已提交
453 454 455 456 457
    /*
      link inside login field should be always white.
      If I set this to inherit, it won't work in IE7
     */
    color: white;
458 459
}

460
div.behavior-loading {
461
    position: absolute; width: 80%; height:100%;
462
    background-color: #e4e4e4; text-align: center; font-size: 300%;
463 464 465 466 467
    opacity: 0.5;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    filter: alpha(opacity=50);
}

468 469 470 471
LABEL.attach-previous {
    margin-left: 0.5em;
}

K
Kohsuke Kawaguchi 已提交
472
.bottom-sticker, #bottom-sticker {
473 474
    width:  100%;   /* it needs to occupy the entire width or else the underlying content will see through */
}
K
Kohsuke Kawaguchi 已提交
475 476 477 478 479
.bottom-sticker-inner {
    background:white;
    padding:1em;
}
.bottom-sticker-edge {
480 481
    height:16px;
    background-image: url("../images/bottom-sticker-top-edge.png");
K
Kohsuke Kawaguchi 已提交
482 483 484
    background-repeat: repeat-x;
}

K
Kohsuke Kawaguchi 已提交
485
.top-sticker, #top-sticker {
K
Kohsuke Kawaguchi 已提交
486 487 488 489 490 491 492 493 494 495
    width:  100%;   /* it needs to occupy the entire width or else the underlying content will see through */
    z-index: 1;
}
.top-sticker-inner {
    background:white;
    padding:1em;
}
.top-sticker-edge {
    height:16px;
    background-image: url("../images/top-sticker-bottom-edge.png");
496 497
    background-repeat: repeat-x;
}
K
Kohsuke Kawaguchi 已提交
498 499 500
.top-sticker.noedge > .top-sticker-edge {
    display: none;
}
501

502
/* ======================== error/warning message (mainly in the form.) Use them on block elements ======================== */
K
kohsuke 已提交
503 504 505 506 507 508 509 510 511 512
.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;
}

513 514 515 516 517
.error-inline {
    color: #CC0000;
    font-weight: bold;
}

K
kohsuke 已提交
518 519 520 521 522 523 524 525 526 527
.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;
}

528 529 530 531 532
.warning-inline {
    color: #C4A000;
    font-weight: bold;
}

533 534 535 536 537
.info {
    color: black;
    font-weight: bold;
    padding-left: 20px;
    min-height: 16px;
K
Kohsuke Kawaguchi 已提交
538
    background-image: url( "../images/16x16/go-next.png" ); /* TODO: get a better icon */
539 540 541
    background-position: left center;
    background-repeat: no-repeat;
}
542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557

.icon16x16 {
    width: 16px;
    height: 16px;
}

.icon24x24 {
    width: 24px;
    height: 24px;
}

.icon32x32 {
    width: 32px;
    height: 32px;
}

K
kohsuke 已提交
558 559 560 561 562 563 564 565 566 567
/* ====================== help ===================================== */

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

568 569 570 571 572
.help .from-plugin {
    text-align: right;
    color: #666;
}

K
kohsuke 已提交
573
.help-area {
574
  /* this marker class is used by JavaScript to locate the area to display help text. */
K
kohsuke 已提交
575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611
}


/* ====================== 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;
612
  white-space: nowrap;
K
kohsuke 已提交
613 614 615 616 617 618 619 620 621 622 623 624 625
}
#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;
}

626 627 628 629
#projectstatus th {
  text-align: left;
}

630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647
/* ============================ 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;
}

648 649
/* ============================ health report hover ========================== */

650
.healthReport a {
651 652 653
    text-decoration: none;
}

654
.healthReport div.healthReportDetails {
655 656 657
    display: none;
}

658
.healthReport:hover, .healthReport.hover { /* fix IE6 bug with :hover */
659 660 661
    background: transparent;
}

662
.healthReport:hover div.healthReportDetails, .healthReport.hover div.healthReportDetails {
663 664 665
    display: block;
    position: absolute;
    background-color: #ffe;
K
kohsuke 已提交
666
    border: 1px solid #bbb;
667
    margin-left: 32px; /* move it across a bit */
668
    z-index: 26;
669 670
}

671
.healthReport div.healthReportDetails table {
672 673 674
    border-collapse: collapse;
    width: 450px; /* fix IE bug with width */
}
K
kohsuke 已提交
675

676 677 678 679 680 681
/* ========================= build history ========================= */
#buildHistory .healthReport {
    display: inline;
    margin-right: 1em;
}

M
mindless 已提交
682 683 684 685 686 687 688 689 690
#buildHistory tr.no-wrap td.middle-align {
    padding: 0;
}

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

K
kohsuke 已提交
691 692 693 694 695 696 697 698 699 700 701
/* ========================= editable combobox style ========================= */
.comboBoxList {
  border: 1px solid #000;
  overflow: visible;
  color: MenuText;
  background-color: Menu;
}
.comboBoxSelectedItem {
  background-color: Highlight;
  color: HighlightText;
}
702 703 704
.combobox-values {
  display: none;
}
K
kohsuke 已提交
705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742


/* ========================= 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;
}

743 744 745 746
.result-skipped {
  color: #ddbb00;
}

K
kohsuke 已提交
747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800
.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 ========================= */
801 802 803
#plugins {
  margin-top: 0;
  border-top: none;
K
kohsuke 已提交
804 805
}

M
mindless 已提交
806 807
#pluginsAdv tr:hover {
  background-color: inherit;
K
kohsuke 已提交
808 809
}

810 811
#plugins tr.already-upgraded {
  background-color: #e8eeee;
K
kohsuke 已提交
812 813
}

814 815 816

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

817 818
.repeated-chunk .show-if-last      { visibility: hidden; }
.repeated-chunk.last .show-if-last { visibility: visible; }
819

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

823 824
.repeated-chunk .show-if-not-only      { visibility: visible; }
.repeated-chunk.only .show-if-not-only { visibility: hidden; }
K
kohsuke 已提交
825

826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845
/* == 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 已提交
846 847 848 849 850 851 852 853 854 855 856
/*
    <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 已提交
857 858 859 860 861 862 863 864
/* ========================= Yahoo UI style adjustments ========================= */
.ygtvlabel, .ygtvlabel:link, .ygtvlabel:visited, .ygtvlabel:hover {
	color: inherit;
}

DIV.yahooTree td {
  vertical-align: middle;
}
K
kohsuke 已提交
865 866 867 868 869 870 871 872

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

K
kohsuke 已提交
874 875 876 877
.yui-skin-sam .yui-tt .bd {
  border: none !important;
  background-color: #FFF !important;
}
878 879 880 881
/* ========================= 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;
T
Tom Huybrechts 已提交
882
  width: 15em;
883
  position: static; 
884 885
}

886 887 888 889
#search-box.defaulted {
  color: gray;
}

890 891
#search-box-completion {
  text-align: left;
T
Tom Huybrechts 已提交
892
  width:25em;
893 894 895 896 897 898
  position: absolute;
  z-index: 999;
}

#search-box-completion .yui-ac-content {
  border: 1px solid black;
T
Tom Huybrechts 已提交
899
  width:25em;
900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916
  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;
}
917 918 919
#search-box-minWidth {
  position:absolute;
  visibility: hidden;
T
Tom Huybrechts 已提交
920
  width:15em;
921 922 923 924 925
}

#search-box-sizer {
  position:absolute;
  visibility: hidden;
926
}
K
kohsuke 已提交
927

T
Tom Huybrechts 已提交
928

K
kohsuke 已提交
929 930 931 932 933 934 935 936 937 938 939 940
/* ========================= 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;
941
}
942 943 944
TEXTAREA.rich-editor {
  visibility: hidden;
}
945 946 947 948 949 950 951 952 953

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

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

955
/* ========================= D&D support in heterogenous/repeatable lists = */
956

957
.hetero-list-container .dd-handle, .repeated-container .dd-handle {
958
    cursor: move;
K
kohsuke 已提交
959 960 961
    background-image: url(../images/grip.png);
    background-repeat: repeat-y;
    padding-left: 20px;
962 963 964 965 966 967 968 969 970
}

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

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

973 974 975 976 977 978 979
#plugins .compatWarning {
    white-space: normal;
    margin-top: 0.5em;
    padding-left: 2em;
    color: #FF0000;
}

980 981 982 983 984 985 986 987 988 989
/* ========================= progress bar ========================= */

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

K
kohsuke 已提交
990 991 992 993
table.progress-bar tr.unknown {
    background-image:url(../images/progress-unknown.gif);
}

994 995 996 997 998 999 1000 1001 1002 1003 1004 1005
td.progress-bar-done {
  background-color: #3465a4;
}

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

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

K
kohsuke 已提交
1006 1007 1008
table.progress-bar.red tr.unknown {
    background-image:url(../images/progress-unknown-red.gif);
}
1009 1010 1011
table.progress-bar.red td.progress-bar-done {
  background-color: #cc0000;
}
1012

1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023
/* ========================= notification bar ========================= */
#notification-bar {
    width:100%;
    position:fixed;
    text-align:center;
    left:0px;
    font-size: 2em;
    z-index:999;
    border-bottom: 1px solid black;
}

1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042
/* ========================= 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;
}

1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054
/* ========================= 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; }
1055 1056 1057

/* ========================= textarea.jelly ================== */

1058
.textarea-preview-container {
1059 1060
    text-align:left;
}
1061
.textarea-preview {
1062 1063 1064
    background-color: #F0F0F0;
    padding: 0.5em;
}
1065 1066 1067

/* ========================= matrix configuration table ================== */
table#configuration-matrix {
1068
	border: 1px #BBBBBB solid;
1069 1070 1071 1072 1073 1074 1075
	border-collapse: collapse;
}
tr.matrix-row {
	background: #f0f0f0;
	font-weight: bold;
}
td.matrix-header {
1076
	border: 1px #BBBBBB solid;
1077 1078 1079 1080 1081 1082
	padding: 3px;
}
td#matrix-title {
	padding: 3px;
}
td.matrix-leftcolumn {
1083
	border: 1px #BBBBBB solid;
1084 1085 1086 1087 1088 1089 1090 1091
	font-weight: bold;
	background: #f0f0f0;
	padding: 3px;
}
td.matrix-cell {
	border: 1px #BBBBBB solid;
	text-align: center;
}