| OLD | NEW |
| (Empty) | |
| 1 /* |
| 2 * Copyright (c) 2009-2010 The Chromium Authors. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. |
| 5 */ |
| 6 |
| 7 /* Keep all links blue */ |
| 8 a:link { |
| 9 color: blue; |
| 10 } |
| 11 a:visited { |
| 12 color: blue; |
| 13 } |
| 14 |
| 15 /* Make graphs 400x200 */ |
| 16 img.graph { |
| 17 width: 400px |
| 18 height: 200px |
| 19 } |
| 20 |
| 21 /* Turn off borders on all images by default */ |
| 22 img { |
| 23 border-style: none; |
| 24 } |
| 25 |
| 26 /* Format each job into a grouping of several builds. */ |
| 27 dl.job |
| 28 { |
| 29 margin: 2em 0; |
| 30 padding: 0; |
| 31 } |
| 32 .job dt |
| 33 { |
| 34 background-color: #777777; |
| 35 border-left: 1px solid #131210; |
| 36 border-right: 1px solid #131210; |
| 37 border-top: 1px solid #131210; |
| 38 color: #000000; |
| 39 padding: .5em .5em; |
| 40 } |
| 41 .job dd |
| 42 { |
| 43 background: #ffffff; |
| 44 border-bottom: 1px solid #131210; |
| 45 border-left: 1px solid #131210; |
| 46 border-right: 1px solid #131210; |
| 47 margin: 0 0 1em 0; |
| 48 padding: 0em 1em; |
| 49 } |
| 50 |
| 51 /* Format each build result into a row of grid cells. */ |
| 52 dl.build |
| 53 { |
| 54 margin: 0; |
| 55 padding: 0; |
| 56 } |
| 57 .build dt |
| 58 { |
| 59 background-color: #ffffff; |
| 60 border-left: none; |
| 61 border-right: none; |
| 62 border-top: none; |
| 63 color: #000000; |
| 64 font-weight: normal; |
| 65 padding: 0em 0em; |
| 66 text-align: left; |
| 67 } |
| 68 .build dd |
| 69 { |
| 70 background: #ffffff; |
| 71 border-bottom: none; |
| 72 border-left: none; |
| 73 border-right: none; |
| 74 margin: 0em 0em 1em 1em; |
| 75 padding: 0em 0em; |
| 76 text-align: left; |
| 77 } |
| 78 |
| 79 /* Color the background of build step body based on build result. */ |
| 80 dd.success |
| 81 { |
| 82 background: #77ff77; |
| 83 } |
| 84 dd.running |
| 85 { |
| 86 background: #ffff77; |
| 87 } |
| 88 dd.failure |
| 89 { |
| 90 background: #ff7777; |
| 91 } |
| 92 dd.exception |
| 93 { |
| 94 background: #ff77ff; |
| 95 } |
| 96 |
| 97 /* Color the background of build step titles based on build result. */ |
| 98 dt.success |
| 99 { |
| 100 background: #77ff77; |
| 101 } |
| 102 dt.running |
| 103 { |
| 104 background: #ffff77; |
| 105 } |
| 106 dt.failure |
| 107 { |
| 108 background: #ff7777; |
| 109 } |
| 110 dt.exception |
| 111 { |
| 112 background: #ff77ff; |
| 113 } |
| 114 |
| OLD | NEW |