show_multiple.css 1.11 KB
Newer Older
1 2 3 4 5 6 7 8
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * This Source Code Form is "Incompatible With Secondary Licenses", as
 * defined by the Mozilla Public License, v. 2.0.
 */

9 10
hr {margin: 20px auto 40px}

11
.bz_private { color:darkred }
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55

h1 {
  font-size: 2em;
  margin-bottom: 10px;
}

/* bugfields is table of all fields and values */
.bugfields {
  font-size: small;
  background: #eee;
  padding: 5px;
  border: 1px solid silver;
  width: 100%;
}

.bugfields tr {
  vertical-align: top;
}

.bugfields th {
  width: 10em;
  text-align: left;
  font-weight: normal;
  line-height: 150%;
}

.bugfields td {
  font-weight: bold;
  line-height: 150%;
}

.bugfields .rightcell {
  padding-left: 10px;
}

/* set line-height to normal for nested tables of bugfields table */
.bugfields table th, .bugfields table td {
  line-height: 100%;
  width: auto;
}

.bugfields table.timetracking th, .bugfields table.timetracking td {
  width: 10em;
}
56 57 58 59 60

.error {
  color: red;
  font-weight: bold;
}