Move BrowserCloseTest.* over to unit tests.
[chromium-blink-merge.git] / tools / sheriffing / style.css
blobf2ba6577adb75b306b9c5659123711b69e30b47a
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. */
5 body {
6 margin: 0px;
7 font-family: 'Roboto', sans-serif;
8 font-size: small;
11 td {
12 background-color: white;
15 a {
16 text-decoration: none;
17 color: black;
20 a:hover {
21 text-decoration: underline;
24 input#text-filter {
25 width: 100%;
28 /* Waterfall styles */
29 #build-info {
30 background-color: white;
31 margin-left: 250px;
32 border-spacing: 0px;
35 #build-info td {
36 padding: 0.2em 0.5em 0.2em 0.5em;
39 #failure-info {
40 background-color: white;
41 margin-left: 250px;
42 border-spacing: 0px;
45 #failure-info td {
46 padding: 0.2em 0.5em 0.2em 0.5em;
49 .failure-range {
50 white-space: nowrap;
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;
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;
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;
80 .build-letter {
81 color: blue;
84 .build-status {
85 padding-left: 0.5em;
86 color: black;
89 .in-flight {
90 background-color: #99ffff;
93 .category {
94 text-align: right;
95 color: #e0e0e0;
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;
113 .box {
114 background: white;
115 margin: 0.4em;
116 padding: 1em;
117 box-shadow: 0px 2px 2px #888888;
118 border-radius: 0.25em;
121 .box li {
122 list-style-type: none;
125 .box a {
126 color: black;
127 font-weight: bold;
130 #debugging {
131 color: #cccccc;
134 /* Build statuses. */
135 .success {
136 background: #ccff99;
139 .failed {
140 background: #ff9999;
143 .exception {
144 background: #ff66ff;
147 .offline {
148 background: #999999;
151 .running {
152 background: #ffff99;
155 .unknown {
156 background: #cccccc;
159 .warnings {
160 background: #ffc343;
163 /* Tree statuses. */
164 .open {
165 background: #ccff99;
168 .closed {
169 background: #ff9999;
172 .throttled {
173 background: #ffff99;
176 .maintenance {
177 background: #ff66ff;