forked from GoogleChrome/chrome-extensions-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.css
93 lines (78 loc) · 1.38 KB
/
popup.css
1
2
3
4
5
6
7
8
9
10
11
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
/**
* Copyright 2013 The Chromium Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
body {
font-family: sans-serif;
font-size: 0.8em;
overflow: hidden;
}
a {
text-decoration: underline;
color: #444;
}
a:hover {
color: black;
cursor: pointer;
}
.status-label {
text-align: right;
font-size: 12px;
font-weight: bold;
min-width: 85px;
padding: 0px;
}
.trunk-status-cell {
padding: 0px;
}
.trunk-status-cell > iframe {
height: 10px;
border: none;
}
[data-issue] + .trunk-status-row > td,
.closer-status-row + .other-status-row > td {
padding-top: 5px;
}
div.issue-status {
display: table;
border-spacing: 1px 1px;
width: 284px;
margin: 1px 0px 1px 9px;
}
.issue-status-build {
display: table-cell;
width: 1px;
height: 10px;
}
/* build statuses */
.success {
color: #FFFFFF;
background-color: #8fdf5f;
border-color: #4F8530;
}
.failure {
color: #FFFFFF;
background-color: #e98080;
border-color: #A77272;
}
.warnings {
color: #FFFFFF;
background-color: #ffc343;
border-color: #C29D46;
}
.never {
color: #FFFFFF;
background-color: #f0f0e0;
border-color: #A77272;
}
.exception, .retry {
color: #FFFFFF;
background-color: #e0b0ff;
border-color: #ACA0B3;
}
.running {
color: #666666;
background-color: #fffc6c;
border-color: #C5C56D;
}