OLD | NEW |
| (Empty) |
1 /* Copyright 2014 The Chromium Authors. All rights reserved. | |
2 * Use of this source code is governed by a BSD-style license that can be | |
3 * found in the LICENSE file. */ | |
4 | |
5 body { | |
6 margin: 0px; | |
7 font-family: 'Roboto', sans-serif; | |
8 font-size: small; | |
9 } | |
10 | |
11 td { | |
12 background-color: white; | |
13 } | |
14 | |
15 a { | |
16 text-decoration: none; | |
17 color: black; | |
18 } | |
19 | |
20 a:hover { | |
21 text-decoration: underline; | |
22 } | |
23 | |
24 input#text-filter { | |
25 width: 100%; | |
26 } | |
27 | |
28 /* Waterfall styles */ | |
29 #build-info { | |
30 background-color: white; | |
31 margin-left: 250px; | |
32 border-spacing: 0px; | |
33 } | |
34 | |
35 #build-info td { | |
36 padding: 0.2em 0.5em 0.2em 0.5em; | |
37 } | |
38 | |
39 #failure-info { | |
40 background-color: white; | |
41 margin-left: 250px; | |
42 border-spacing: 0px; | |
43 } | |
44 | |
45 #failure-info td { | |
46 padding: 0.2em 0.5em 0.2em 0.5em; | |
47 } | |
48 | |
49 .failure-range { | |
50 white-space: nowrap; | |
51 } | |
52 | |
53 .section-header { | |
54 font-weight: bold; | |
55 background: #eeeeee; | |
56 border-top: 1px dotted #999999; | |
57 text-align: left; | |
58 padding: 0.2em 0.5em; | |
59 } | |
60 | |
61 .pending-count { | |
62 width: 2.5em; | |
63 min-width: 2.5em; | |
64 max-width: 3.5em; | |
65 display: inline-block; | |
66 text-align: right; | |
67 color: #cccccc; | |
68 background: transparent; | |
69 } | |
70 | |
71 .build-identifier { | |
72 width: 3.5em; | |
73 min-width: 3.5em; | |
74 max-width: 3.5em; | |
75 display: inline-block; | |
76 text-align: right; | |
77 color: blue; | |
78 } | |
79 | |
80 .build-letter { | |
81 color: blue; | |
82 } | |
83 | |
84 .build-status { | |
85 padding-left: 0.5em; | |
86 color: black; | |
87 } | |
88 | |
89 .in-flight { | |
90 background-color: #99ffff; | |
91 } | |
92 | |
93 .category { | |
94 text-align: right; | |
95 color: #e0e0e0; | |
96 } | |
97 | |
98 /* Sidebar styling. */ | |
99 #sidebar { | |
100 background-color: #dddddd; | |
101 position: fixed; | |
102 top: 0px; | |
103 left: 0px; | |
104 height: 100%; | |
105 min-width: 250px; | |
106 max-width: 250px; | |
107 width: 250px; | |
108 border-right: 1px solid #666666; | |
109 padding: 0px; | |
110 overflow: auto; | |
111 } | |
112 | |
113 .box { | |
114 background: white; | |
115 margin: 0.4em; | |
116 padding: 1em; | |
117 box-shadow: 0px 2px 2px #888888; | |
118 border-radius: 0.25em; | |
119 } | |
120 | |
121 .box li { | |
122 list-style-type: none; | |
123 } | |
124 | |
125 .box a { | |
126 color: black; | |
127 font-weight: bold; | |
128 } | |
129 | |
130 #debugging { | |
131 color: #cccccc; | |
132 } | |
133 | |
134 /* Build statuses. */ | |
135 .success { | |
136 background: #ccff99; | |
137 } | |
138 | |
139 .failed { | |
140 background: #ff9999; | |
141 } | |
142 | |
143 .exception { | |
144 background: #ff66ff; | |
145 } | |
146 | |
147 .offline { | |
148 background: #999999; | |
149 } | |
150 | |
151 .running { | |
152 background: #ffff99; | |
153 } | |
154 | |
155 .unknown { | |
156 background: #cccccc; | |
157 } | |
158 | |
159 .warnings { | |
160 background: #ffc343; | |
161 } | |
162 | |
163 /* Tree statuses. */ | |
164 .open { | |
165 background: #ccff99; | |
166 } | |
167 | |
168 .closed { | |
169 background: #ff9999; | |
170 } | |
171 | |
172 .throttled { | |
173 background: #ffff99; | |
174 } | |
175 | |
176 .maintenance { | |
177 background: #ff66ff; | |
178 } | |
OLD | NEW |