| OLD | NEW |
| (Empty) |
| 1 a:visited { | |
| 2 color: #800080; | |
| 3 } | |
| 4 | |
| 5 td.Event, td.BuildStep, td.Activity, td.Change, td.Time, td.Builder { | |
| 6 border-top: 1px solid; | |
| 7 border-right: 1px solid; | |
| 8 } | |
| 9 | |
| 10 td.box { | |
| 11 border: 1px solid; | |
| 12 } | |
| 13 | |
| 14 /* Activity states */ | |
| 15 .offline { | |
| 16 background-color: gray; | |
| 17 } | |
| 18 .idle { | |
| 19 background-color: white; | |
| 20 } | |
| 21 .waiting { | |
| 22 background-color: yellow; | |
| 23 } | |
| 24 .building { | |
| 25 background-color: yellow; | |
| 26 } | |
| 27 | |
| 28 /* LastBuild, BuildStep states */ | |
| 29 .success { | |
| 30 background-color: #72ff75; | |
| 31 } | |
| 32 .failure { | |
| 33 background-color: red; | |
| 34 } | |
| 35 .warnings { | |
| 36 background-color: #ff8000; | |
| 37 } | |
| 38 .exception { | |
| 39 background-color: #c000c0; | |
| 40 } | |
| 41 .start,.running { | |
| 42 background-color: yellow; | |
| 43 } | |
| 44 | |
| 45 /* grid styles */ | |
| 46 | |
| 47 table.Grid { | |
| 48 border-collapse: collapse; | |
| 49 } | |
| 50 | |
| 51 table.Grid tr td { | |
| 52 padding: 0.2em; | |
| 53 margin: 0px; | |
| 54 text-align: center; | |
| 55 } | |
| 56 | |
| 57 table.Grid tr td.title { | |
| 58 font-size: 90%; | |
| 59 border-right: 1px gray solid; | |
| 60 border-bottom: 1px gray solid; | |
| 61 } | |
| 62 | |
| 63 table.Grid tr td.sourcestamp { | |
| 64 font-size: 90%; | |
| 65 } | |
| 66 | |
| 67 table.Grid tr td.builder { | |
| 68 text-align: right; | |
| 69 font-size: 90%; | |
| 70 } | |
| 71 | |
| 72 table.Grid tr td.build { | |
| 73 border: 1px gray solid; | |
| 74 } | |
| 75 | |
| 76 div.footer { | |
| 77 font-size: 80%; | |
| 78 } | |
| OLD | NEW |