OLD | NEW |
| (Empty) |
1 body { | |
2 margin-left: 30px; | |
3 margin-right: 30px; | |
4 margin-top: 20px; | |
5 padding: 0; | |
6 background: url(/bg_gradient.jpg) repeat-x; | |
7 font: 12px/18px "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana,
sans-serif; | |
8 background-color: #fff; | |
9 color: #333; | |
10 } | |
11 | |
12 a:link,a:visited,a:active { | |
13 color: #444; | |
14 } | |
15 | |
16 table { | |
17 border-spacing: 1px 1px; | |
18 } | |
19 | |
20 table td { | |
21 padding: 3px 0px 3px 0px; | |
22 text-align: center; | |
23 } | |
24 | |
25 .Project { | |
26 width: 100px; | |
27 } | |
28 | |
29 .LastBuild, .Activity { | |
30 width: 230px; | |
31 padding: 0 0 0 4px; | |
32 } | |
33 | |
34 td.Time { | |
35 color: #000; | |
36 border-bottom: 1px solid #aaa; | |
37 background-color: #eee; | |
38 } | |
39 | |
40 td.Activity, td.Change, td.Builder { | |
41 color: #333333; | |
42 background-color: #CCCCCC; | |
43 } | |
44 | |
45 td.Change { | |
46 border-radius: 5px; | |
47 -webkit-border-radius: 5px; | |
48 -moz-border-radius: 5px; | |
49 } | |
50 td.Event { | |
51 color: #777; | |
52 background-color: #ddd; | |
53 border-radius: 5px; | |
54 -webkit-border-radius: 5px; | |
55 -moz-border-radius: 5px; | |
56 } | |
57 | |
58 td.Activity { | |
59 border-top-left-radius: 10px; | |
60 -webkit-border-top-left-radius: 10px; | |
61 -moz-border-radius-topleft: 10px; | |
62 min-height: 20px; | |
63 padding: 8px 0 8px 0; | |
64 } | |
65 | |
66 td.idle, td.waiting, td.offline, td.building { | |
67 border-top-left-radius: 0px; | |
68 -webkit-border-top-left-radius: 0px; | |
69 -moz-border-radius-topleft: 0px; | |
70 } | |
71 | |
72 td.builder { | |
73 width: 150px; | |
74 color: #333333; | |
75 background-color: #CCCCCC; | |
76 } | |
77 | |
78 td.sourcestamp { | |
79 width: 80px; | |
80 vertical-align: middle; | |
81 } | |
82 | |
83 .LastBuild { | |
84 border-top-left-radius: 5px; | |
85 -webkit-border-top-left-radius: 5px; | |
86 -moz-border-radius-topleft: 5px; | |
87 border-top-right-radius: 5px; | |
88 -webkit-border-top-right-radius: 5px; | |
89 -moz-border-radius-topright: 5px; | |
90 } | |
91 | |
92 /* LastBuild, BuildStep states */ | |
93 .success { | |
94 color: #FFFFFF; | |
95 background-color: #8fdf5f; | |
96 } | |
97 | |
98 .failure { | |
99 color: #FFFFFF; | |
100 background-color: #e98080; | |
101 } | |
102 | |
103 .warnings { | |
104 color: #FFFFFF; | |
105 background-color: #ffc343; | |
106 } | |
107 | |
108 .exception, td.offline { | |
109 color: #FFFFFF; | |
110 background-color: #e0b0ff; | |
111 } | |
112 | |
113 .start,.running, td.building { | |
114 color: #666666; | |
115 background-color: #fffc6c; | |
116 } | |
117 | |
118 .start { | |
119 border-bottom-left-radius: 10px; | |
120 -webkit-border-bottom-left-radius: 10px; | |
121 -moz-border-radius-bottomleft: 10px; | |
122 border-bottom-right-radius: 10px; | |
123 -webkit-border-bottom-right-radius: 10px; | |
124 -moz-border-radius-bottomright: 10px; | |
125 } | |
126 | |
127 td.Project a:hover, td.start a:hover { | |
128 color: #000; | |
129 } | |
130 | |
OLD | NEW |