Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(143)

Side by Side Diff: master.tryserver.webkit/public_html/buildbot.css

Issue 5329006: Delete obsolete masters from tools/buildbot (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/buildbot/
Patch Set: Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « master.tryserver.webkit/passwords.json ('k') | master.tryserver.webkit/public_html/index.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 * {
2 font-family: Verdana, Cursor;
3 font-size: 10px;
4 font-weight: bold;
5 }
6
7 a:link,a:visited,a:active {
8 color: #444;
9 }
10 a:hover {
11 color: #FFFFFF;
12 }
13
14 table {
15 border-spacing: 1px 1px;
16 }
17
18 table td {
19 padding: 3px 0px 3px 0px;
20 text-align: center;
21 }
22
23 .Project {
24 width: 100px;
25 }
26
27 .LastBuild, .Activity {
28 width: 230px;
29 padding: 0 0 0 4px;
30 }
31
32 td.Time {
33 color: #000;
34 border-bottom: 1px solid #aaa;
35 background-color: #eee;
36 }
37
38 td.Activity, td.Change, td.Builder {
39 color: #333333;
40 background-color: #CCCCCC;
41 }
42
43 td.Change {
44 border-radius: 5px;
45 -webkit-border-radius: 5px;
46 -moz-border-radius: 5px;
47 }
48 td.Event {
49 color: #777;
50 background-color: #ddd;
51 border-radius: 5px;
52 -webkit-border-radius: 5px;
53 -moz-border-radius: 5px;
54 }
55
56 td.Activity {
57 border-top-left-radius: 10px;
58 -webkit-border-top-left-radius: 10px;
59 -moz-border-radius-topleft: 10px;
60 min-height: 20px;
61 padding: 8px 0 8px 0;
62 }
63
64 td.idle, td.waiting, td.offline, td.building {
65 border-top-left-radius: 0px;
66 -webkit-border-top-left-radius: 0px;
67 -moz-border-radius-topleft: 0px;
68 }
69
70 .LastBuild {
71 border-top-left-radius: 5px;
72 -webkit-border-top-left-radius: 5px;
73 -moz-border-radius-topleft: 5px;
74 border-top-right-radius: 5px;
75 -webkit-border-top-right-radius: 5px;
76 -moz-border-radius-topright: 5px;
77 }
78
79 /* LastBuild, BuildStep states */
80 .success {
81 color: #FFFFFF;
82 background-color: #8fdf5f;
83 }
84
85 .failure {
86 color: #FFFFFF;
87 background-color: #e98080;
88 }
89
90 .warnings {
91 color: #FFFFFF;
92 background-color: #ffc343;
93 }
94
95 .exception, td.offline {
96 color: #FFFFFF;
97 background-color: #e0b0ff;
98 }
99
100 .start,.running, td.building {
101 color: #666666;
102 background-color: #fffc6c;
103 }
104
105 .running_failure {
106 color: #FFFFFF;
107 background-color: #fffc6c;
108 outline: 2px solid #e98080;
109 border-color: #e98080;
110 border-radius: 0 !important;
111 -webkit-border-radius: 0 !important;
112 }
113
114 .start {
115 border-bottom-left-radius: 10px;
116 -webkit-border-bottom-left-radius: 10px;
117 -moz-border-radius-bottomleft: 10px;
118 border-bottom-right-radius: 10px;
119 -webkit-border-bottom-right-radius: 10px;
120 -moz-border-radius-bottomright: 10px;
121 }
122
123 td.Project a:hover, td.start a:hover {
124 color: #000;
125 }
OLDNEW
« no previous file with comments | « master.tryserver.webkit/passwords.json ('k') | master.tryserver.webkit/public_html/index.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698