source: branches/1.1/web/addons/job_monarch/styles.css @ 925

Last change on this file since 925 was 757, checked in by ramonb, 11 years ago
  • use css: auto overflow for RRDs
File size: 3.5 KB
Line 
1#monarchimage img {
2    background-color:#FFF;
3    background-image:url(ajax-loader.gif);
4    background-repeat:no-repeat;
5    background-position: center center;
6    overflow:auto;
7}
8
9A:link
10{
11   color: rgb(32,41,204);
12   text-decoration: none;
13}
14
15A:visited
16{
17   color: rgb(51,51,204);
18   text-decoration: none;
19}
20
21A:active
22{
23   color: rgb(204,205,226);
24   text-decoration: none;
25}
26
27h1 
28{
29   font: bold 18pt/22pt helvetica, sans-serif;
30   color: rgb(12,17,142);
31   margin-bottom: 2mm;
32}
33
34h2
35{
36   font: bold 14pt/16pt helvetica;
37   color: rgb(12,17,142); 
38   margin-left: 0.1em;
39   margin-right: 0.1em;
40}
41
42h3
43{
44   font: bold 12pt/15pt helvetica, sans-serif;
45   text-align: left;
46   margin-left: 3mm;
47   color: rgb(247,142,14);
48}
49
50h4
51{
52   font: bold 12pt/14pt helvetica;
53   color: rgb(12,17,142); 
54   margin-left: 0.1em;
55   margin-right: 0.1em;
56}
57
58small
59{
60   font: 10pt/12pt arial, helvetica, sans-serif;
61}
62
63td.title
64{
65   font-size: larger;
66   font-weight: normal;
67   background: rgb(238,238,238);
68   text-align: center;
69}
70
71td.metric
72{
73   background: rgb(217,218,224);
74   padding: 2mm;
75}
76
77td.cluster
78{
79   background: rgb(238,238,238);
80   /* padding: 1mm; */
81}
82
83td.grid
84{
85   vertical-align: top;
86   background: rgb(204,204,255);
87}
88
89td.self
90{
91   vertical-align: top;
92   text-align: center;
93   background: rgb(255,153,153);
94}
95
96td.even
97{
98   background: rgb(201,205,234);
99}
100
101td.odd
102{
103   background: rgb(217,218,224);
104}
105
106td.small
107{
108   font: 10pt/12pt times, serif;
109}
110
111td.L1
112{
113   background: rgb(184,249,119);
114}
115
116td.L2
117{
118   background: rgb(213,249,119);
119}
120
121td.L3
122{
123   background: rgb(228,249,119);
124}
125
126td.L4
127{
128   background: rgb(245,249,119);
129}
130
131td.L5
132{
133   background: rgb(249,239,119);
134}
135
136td.L6
137{
138   background: rgb(249,219,119);
139}
140
141td.L7
142{
143   background: rgb(249,202,119);
144}
145
146td.L8
147{
148   background: rgb(249,182,119);
149}
150
151td.L9
152{
153   background: rgb(249,152,119);
154}
155
156td.L10
157{
158   background: rgb(249,124,119);
159}
160
161td.down
162{
163   background: rgb(255,153,153);
164}
165
166th 
167{
168   font: bold 12pt/14pt helvetica, sans-serif;
169   color: rgb(238,238,238);
170   background: rgb(80,80,80);
171   border: thin solid rgb(47,47,47);
172}
173
174tr.even
175{
176   background: rgb(255,255,255);
177}
178
179tr.odd
180{
181   background: rgb(240,240,240);
182}
183
184tr.inactive
185{
186   color: rgb(210,210,210);
187}
188
189table.overview
190{
191   border-collapse: collapse;
192}
193
194*#kol1
195{
196   border-right-style: solid;
197   border-right-color: rgb(204,204,204);
198}
199
200*#selected
201{
202   background: rgb(153,204,255);
203}
204
205tr.overview_header
206{
207   font: bold 10pt/12pt helvetica, sans-serif;
208   text-align: right;
209   border-collapse: collapse;
210   border-bottom-style: solid; 
211   border-bottom-color: rgb(0,0,0);
212}
213
214tr.overview_line
215{
216   font: 10pt/12pt helvetica, sans-serif;
217   text-align: right;
218   border-collapse: collapse;
219   border-bottom-style: dotted;
220   border-bottom-color: rgb(204,204,204);
221}
222
223tr.overview td
224{
225   font: 10pt/12pt helvetica, sans-serif;
226   text-align: right;
227}
228
229tr.monarch th
230{
231   font: bold 12pt/14pt helvetica, sans-serif;
232   color: rgb(10,10,10);
233   background: rgb(240,240,240);
234   border: thin solid rgb(47,47,47);
235   padding: 2mm;
236   margin: 1mm;
237}
238
239.jobname_hint
240{
241   border-bottom: thin dotted;
242   border-bottom-color: rgb(255,0,0);
243}
244
245.red
246{
247        color: rgb(204,51,0);
248}
249.blue
250{
251        color: rgb(0,0,153);
252}
253.brown
254{
255        color: rgb(102,102,0);
256}
257.gray
258{
259        color: rgb(204,204,204);
260}
261.green
262{
263        color: rgb(0,204,102);
264}
265
266td em
267{
268   font: 8pt/10pt helvetica, sans-serif;
269   color: rgb(31,31,112);
270   font-style: normal;
271}
272
273td strong
274{
275   color: rgb(31,31,112);
276   font-style: normal;
277}
278
279.footer
280{
281      font: 10pt/12pt helvetica, sans-serif;
282      color: rgb(100,100,100);
283}
284
Note: See TracBrowser for help on using the repository browser.