author | Lars Hjemli <hjemli@gmail.com> | 2010-06-19 09:35:57 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2010-06-19 10:56:06 (UTC) |
commit | a2cbd3c30b64a26b52b2003ba6569f3c083f4092 (patch) (unidiff) | |
tree | 235183b969b48eecf11d66cf34b2a9bccc73deb7 | |
parent | afc40725c1bd5a25446a704995ce3a02270537df (diff) | |
download | cgit-a2cbd3c30b64a26b52b2003ba6569f3c083f4092.zip cgit-a2cbd3c30b64a26b52b2003ba6569f3c083f4092.tar.gz cgit-a2cbd3c30b64a26b52b2003ba6569f3c083f4092.tar.bz2 |
ui-shared.c: path-limit style nitpick
This subjectively makes the path-limit bar less visually intrusive.
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | cgit.css | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -1,628 +1,626 @@ | |||
1 | body, table, form { | 1 | body, table, form { |
2 | padding: 0em; | 2 | padding: 0em; |
3 | margin: 0em; | 3 | margin: 0em; |
4 | } | 4 | } |
5 | 5 | ||
6 | body { | 6 | body { |
7 | font-family: sans-serif; | 7 | font-family: sans-serif; |
8 | font-size: 10pt; | 8 | font-size: 10pt; |
9 | color: #333; | 9 | color: #333; |
10 | background: white; | 10 | background: white; |
11 | padding: 4px; | 11 | padding: 4px; |
12 | } | 12 | } |
13 | 13 | ||
14 | a { | 14 | a { |
15 | color: blue; | 15 | color: blue; |
16 | text-decoration: none; | 16 | text-decoration: none; |
17 | } | 17 | } |
18 | 18 | ||
19 | a:hover { | 19 | a:hover { |
20 | text-decoration: underline; | 20 | text-decoration: underline; |
21 | } | 21 | } |
22 | 22 | ||
23 | table { | 23 | table { |
24 | border-collapse: collapse; | 24 | border-collapse: collapse; |
25 | } | 25 | } |
26 | 26 | ||
27 | table#header { | 27 | table#header { |
28 | width: 100%; | 28 | width: 100%; |
29 | margin-bottom: 1em; | 29 | margin-bottom: 1em; |
30 | } | 30 | } |
31 | 31 | ||
32 | table#header td.logo { | 32 | table#header td.logo { |
33 | width: 96px; | 33 | width: 96px; |
34 | } | 34 | } |
35 | 35 | ||
36 | table#header td.main { | 36 | table#header td.main { |
37 | font-size: 250%; | 37 | font-size: 250%; |
38 | padding-left: 10px; | 38 | padding-left: 10px; |
39 | white-space: nowrap; | 39 | white-space: nowrap; |
40 | } | 40 | } |
41 | 41 | ||
42 | table#header td.main a { | 42 | table#header td.main a { |
43 | color: #000; | 43 | color: #000; |
44 | } | 44 | } |
45 | 45 | ||
46 | table#header td.form { | 46 | table#header td.form { |
47 | text-align: right; | 47 | text-align: right; |
48 | vertical-align: bottom; | 48 | vertical-align: bottom; |
49 | padding-right: 1em; | 49 | padding-right: 1em; |
50 | padding-bottom: 2px; | 50 | padding-bottom: 2px; |
51 | white-space: nowrap; | 51 | white-space: nowrap; |
52 | } | 52 | } |
53 | 53 | ||
54 | table#header td.form form, | 54 | table#header td.form form, |
55 | table#header td.form input, | 55 | table#header td.form input, |
56 | table#header td.form select { | 56 | table#header td.form select { |
57 | font-size: 90%; | 57 | font-size: 90%; |
58 | } | 58 | } |
59 | 59 | ||
60 | table#header td.sub { | 60 | table#header td.sub { |
61 | color: #777; | 61 | color: #777; |
62 | border-top: solid 1px #ccc; | 62 | border-top: solid 1px #ccc; |
63 | padding-left: 10px; | 63 | padding-left: 10px; |
64 | } | 64 | } |
65 | 65 | ||
66 | table.tabs { | 66 | table.tabs { |
67 | /* border-bottom: solid 2px #ccc; */ | 67 | border-bottom: solid 3px #ccc; |
68 | border-collapse: collapse; | 68 | border-collapse: collapse; |
69 | margin-top: 2em; | 69 | margin-top: 2em; |
70 | margin-bottom: 0px; | 70 | margin-bottom: 0px; |
71 | width: 100%; | 71 | width: 100%; |
72 | } | 72 | } |
73 | 73 | ||
74 | table.tabs td { | 74 | table.tabs td { |
75 | padding: 0px 1em; | 75 | padding: 0px 1em; |
76 | vertical-align: bottom; | 76 | vertical-align: bottom; |
77 | } | 77 | } |
78 | 78 | ||
79 | table.tabs td a { | 79 | table.tabs td a { |
80 | padding: 2px 0.75em; | 80 | padding: 2px 0.75em; |
81 | color: #777; | 81 | color: #777; |
82 | font-size: 110%; | 82 | font-size: 110%; |
83 | } | 83 | } |
84 | 84 | ||
85 | table.tabs td a.active { | 85 | table.tabs td a.active { |
86 | color: #000; | 86 | color: #000; |
87 | background-color: #ccc; | 87 | background-color: #ccc; |
88 | } | 88 | } |
89 | 89 | ||
90 | table.tabs td.form { | 90 | table.tabs td.form { |
91 | text-align: right; | 91 | text-align: right; |
92 | } | 92 | } |
93 | 93 | ||
94 | table.tabs td.form form { | 94 | table.tabs td.form form { |
95 | padding-bottom: 2px; | 95 | padding-bottom: 2px; |
96 | font-size: 90%; | 96 | font-size: 90%; |
97 | white-space: nowrap; | 97 | white-space: nowrap; |
98 | } | 98 | } |
99 | 99 | ||
100 | table.tabs td.form input, | 100 | table.tabs td.form input, |
101 | table.tabs td.form select { | 101 | table.tabs td.form select { |
102 | font-size: 90%; | 102 | font-size: 90%; |
103 | } | 103 | } |
104 | 104 | ||
105 | div.path { | 105 | div.path { |
106 | margin: 0px; | 106 | margin: 0px; |
107 | padding: 5px 2em 2px 2em; | 107 | padding: 5px 2em 2px 2em; |
108 | color: #000; | 108 | color: #000; |
109 | background-color: #ccc; | 109 | background-color: #eee; |
110 | font-weight: bold; | ||
111 | } | 110 | } |
112 | 111 | ||
113 | div.content { | 112 | div.content { |
114 | margin: 0px; | 113 | margin: 0px; |
115 | padding: 2em; | 114 | padding: 2em; |
116 | border-top: solid 3px #ccc; | ||
117 | border-bottom: solid 3px #ccc; | 115 | border-bottom: solid 3px #ccc; |
118 | } | 116 | } |
119 | 117 | ||
120 | 118 | ||
121 | table.list { | 119 | table.list { |
122 | width: 100%; | 120 | width: 100%; |
123 | border: none; | 121 | border: none; |
124 | border-collapse: collapse; | 122 | border-collapse: collapse; |
125 | } | 123 | } |
126 | 124 | ||
127 | table.list tr { | 125 | table.list tr { |
128 | background: white; | 126 | background: white; |
129 | } | 127 | } |
130 | 128 | ||
131 | table.list tr.logheader { | 129 | table.list tr.logheader { |
132 | background: #eee; | 130 | background: #eee; |
133 | } | 131 | } |
134 | 132 | ||
135 | table.list tr:hover { | 133 | table.list tr:hover { |
136 | background: #eee; | 134 | background: #eee; |
137 | } | 135 | } |
138 | 136 | ||
139 | table.list tr.nohover:hover { | 137 | table.list tr.nohover:hover { |
140 | background: white; | 138 | background: white; |
141 | } | 139 | } |
142 | 140 | ||
143 | table.list th { | 141 | table.list th { |
144 | font-weight: bold; | 142 | font-weight: bold; |
145 | /* color: #888; | 143 | /* color: #888; |
146 | border-top: dashed 1px #888; | 144 | border-top: dashed 1px #888; |
147 | border-bottom: dashed 1px #888; | 145 | border-bottom: dashed 1px #888; |
148 | */ | 146 | */ |
149 | padding: 0.1em 0.5em 0.05em 0.5em; | 147 | padding: 0.1em 0.5em 0.05em 0.5em; |
150 | vertical-align: baseline; | 148 | vertical-align: baseline; |
151 | } | 149 | } |
152 | 150 | ||
153 | table.list td { | 151 | table.list td { |
154 | border: none; | 152 | border: none; |
155 | padding: 0.1em 0.5em 0.1em 0.5em; | 153 | padding: 0.1em 0.5em 0.1em 0.5em; |
156 | } | 154 | } |
157 | 155 | ||
158 | table.list td.logsubject { | 156 | table.list td.logsubject { |
159 | font-family: monospace; | 157 | font-family: monospace; |
160 | font-weight: bold; | 158 | font-weight: bold; |
161 | } | 159 | } |
162 | 160 | ||
163 | table.list td.logmsg { | 161 | table.list td.logmsg { |
164 | font-family: monospace; | 162 | font-family: monospace; |
165 | white-space: pre; | 163 | white-space: pre; |
166 | padding: 1em 0.5em 2em 0.5em; | 164 | padding: 1em 0.5em 2em 0.5em; |
167 | } | 165 | } |
168 | 166 | ||
169 | table.list td a { | 167 | table.list td a { |
170 | color: black; | 168 | color: black; |
171 | } | 169 | } |
172 | 170 | ||
173 | table.list td a.ls-dir { | 171 | table.list td a.ls-dir { |
174 | font-weight: bold; | 172 | font-weight: bold; |
175 | color: #00f; | 173 | color: #00f; |
176 | } | 174 | } |
177 | 175 | ||
178 | table.list td a:hover { | 176 | table.list td a:hover { |
179 | color: #00f; | 177 | color: #00f; |
180 | } | 178 | } |
181 | 179 | ||
182 | img { | 180 | img { |
183 | border: none; | 181 | border: none; |
184 | } | 182 | } |
185 | 183 | ||
186 | input#switch-btn { | 184 | input#switch-btn { |
187 | margin: 2px 0px 0px 0px; | 185 | margin: 2px 0px 0px 0px; |
188 | } | 186 | } |
189 | 187 | ||
190 | td#sidebar input.txt { | 188 | td#sidebar input.txt { |
191 | width: 100%; | 189 | width: 100%; |
192 | margin: 2px 0px 0px 0px; | 190 | margin: 2px 0px 0px 0px; |
193 | } | 191 | } |
194 | 192 | ||
195 | table#grid { | 193 | table#grid { |
196 | margin: 0px; | 194 | margin: 0px; |
197 | } | 195 | } |
198 | 196 | ||
199 | td#content { | 197 | td#content { |
200 | vertical-align: top; | 198 | vertical-align: top; |
201 | padding: 1em 2em 1em 1em; | 199 | padding: 1em 2em 1em 1em; |
202 | border: none; | 200 | border: none; |
203 | } | 201 | } |
204 | 202 | ||
205 | div#summary { | 203 | div#summary { |
206 | vertical-align: top; | 204 | vertical-align: top; |
207 | margin-bottom: 1em; | 205 | margin-bottom: 1em; |
208 | } | 206 | } |
209 | 207 | ||
210 | table#downloads { | 208 | table#downloads { |
211 | float: right; | 209 | float: right; |
212 | border-collapse: collapse; | 210 | border-collapse: collapse; |
213 | border: solid 1px #777; | 211 | border: solid 1px #777; |
214 | margin-left: 0.5em; | 212 | margin-left: 0.5em; |
215 | margin-bottom: 0.5em; | 213 | margin-bottom: 0.5em; |
216 | } | 214 | } |
217 | 215 | ||
218 | table#downloads th { | 216 | table#downloads th { |
219 | background-color: #ccc; | 217 | background-color: #ccc; |
220 | } | 218 | } |
221 | 219 | ||
222 | div#blob { | 220 | div#blob { |
223 | border: solid 1px black; | 221 | border: solid 1px black; |
224 | } | 222 | } |
225 | 223 | ||
226 | div.error { | 224 | div.error { |
227 | color: red; | 225 | color: red; |
228 | font-weight: bold; | 226 | font-weight: bold; |
229 | margin: 1em 2em; | 227 | margin: 1em 2em; |
230 | } | 228 | } |
231 | 229 | ||
232 | a.ls-blob, a.ls-dir, a.ls-mod { | 230 | a.ls-blob, a.ls-dir, a.ls-mod { |
233 | font-family: monospace; | 231 | font-family: monospace; |
234 | } | 232 | } |
235 | 233 | ||
236 | td.ls-size { | 234 | td.ls-size { |
237 | text-align: right; | 235 | text-align: right; |
238 | font-family: monospace; | 236 | font-family: monospace; |
239 | width: 10em; | 237 | width: 10em; |
240 | } | 238 | } |
241 | 239 | ||
242 | td.ls-mode { | 240 | td.ls-mode { |
243 | font-family: monospace; | 241 | font-family: monospace; |
244 | width: 10em; | 242 | width: 10em; |
245 | } | 243 | } |
246 | 244 | ||
247 | table.blob { | 245 | table.blob { |
248 | margin-top: 0.5em; | 246 | margin-top: 0.5em; |
249 | border-top: solid 1px black; | 247 | border-top: solid 1px black; |
250 | } | 248 | } |
251 | 249 | ||
252 | table.blob td.lines { | 250 | table.blob td.lines { |
253 | margin: 0; padding: 0 0 0 0.5em; | 251 | margin: 0; padding: 0 0 0 0.5em; |
254 | vertical-align: top; | 252 | vertical-align: top; |
255 | color: black; | 253 | color: black; |
256 | } | 254 | } |
257 | 255 | ||
258 | table.blob td.linenumbers { | 256 | table.blob td.linenumbers { |
259 | margin: 0; padding: 0 0.5em 0 0.5em; | 257 | margin: 0; padding: 0 0.5em 0 0.5em; |
260 | vertical-align: top; | 258 | vertical-align: top; |
261 | text-align: right; | 259 | text-align: right; |
262 | border-right: 1px solid gray; | 260 | border-right: 1px solid gray; |
263 | } | 261 | } |
264 | 262 | ||
265 | table.blob pre { | 263 | table.blob pre { |
266 | padding: 0; margin: 0; | 264 | padding: 0; margin: 0; |
267 | } | 265 | } |
268 | 266 | ||
269 | table.blob a.no { | 267 | table.blob a.no { |
270 | color: gray; | 268 | color: gray; |
271 | text-align: right; | 269 | text-align: right; |
272 | text-decoration: none; | 270 | text-decoration: none; |
273 | } | 271 | } |
274 | 272 | ||
275 | table.blob a.no a:hover { | 273 | table.blob a.no a:hover { |
276 | color: black; | 274 | color: black; |
277 | } | 275 | } |
278 | 276 | ||
279 | table.bin-blob { | 277 | table.bin-blob { |
280 | margin-top: 0.5em; | 278 | margin-top: 0.5em; |
281 | border: solid 1px black; | 279 | border: solid 1px black; |
282 | } | 280 | } |
283 | 281 | ||
284 | table.bin-blob th { | 282 | table.bin-blob th { |
285 | font-family: monospace; | 283 | font-family: monospace; |
286 | white-space: pre; | 284 | white-space: pre; |
287 | border: solid 1px #777; | 285 | border: solid 1px #777; |
288 | padding: 0.5em 1em; | 286 | padding: 0.5em 1em; |
289 | } | 287 | } |
290 | 288 | ||
291 | table.bin-blob td { | 289 | table.bin-blob td { |
292 | font-family: monospace; | 290 | font-family: monospace; |
293 | white-space: pre; | 291 | white-space: pre; |
294 | border-left: solid 1px #777; | 292 | border-left: solid 1px #777; |
295 | padding: 0em 1em; | 293 | padding: 0em 1em; |
296 | } | 294 | } |
297 | 295 | ||
298 | table.nowrap td { | 296 | table.nowrap td { |
299 | white-space: nowrap; | 297 | white-space: nowrap; |
300 | } | 298 | } |
301 | 299 | ||
302 | table.commit-info { | 300 | table.commit-info { |
303 | border-collapse: collapse; | 301 | border-collapse: collapse; |
304 | margin-top: 1.5em; | 302 | margin-top: 1.5em; |
305 | } | 303 | } |
306 | 304 | ||
307 | table.commit-info th { | 305 | table.commit-info th { |
308 | text-align: left; | 306 | text-align: left; |
309 | font-weight: normal; | 307 | font-weight: normal; |
310 | padding: 0.1em 1em 0.1em 0.1em; | 308 | padding: 0.1em 1em 0.1em 0.1em; |
311 | vertical-align: top; | 309 | vertical-align: top; |
312 | } | 310 | } |
313 | 311 | ||
314 | table.commit-info td { | 312 | table.commit-info td { |
315 | font-weight: normal; | 313 | font-weight: normal; |
316 | padding: 0.1em 1em 0.1em 0.1em; | 314 | padding: 0.1em 1em 0.1em 0.1em; |
317 | } | 315 | } |
318 | 316 | ||
319 | div.commit-subject { | 317 | div.commit-subject { |
320 | font-weight: bold; | 318 | font-weight: bold; |
321 | font-size: 125%; | 319 | font-size: 125%; |
322 | margin: 1.5em 0em 0.5em 0em; | 320 | margin: 1.5em 0em 0.5em 0em; |
323 | padding: 0em; | 321 | padding: 0em; |
324 | } | 322 | } |
325 | 323 | ||
326 | div.commit-msg { | 324 | div.commit-msg { |
327 | white-space: pre; | 325 | white-space: pre; |
328 | font-family: monospace; | 326 | font-family: monospace; |
329 | } | 327 | } |
330 | 328 | ||
331 | div.diffstat-header { | 329 | div.diffstat-header { |
332 | font-weight: bold; | 330 | font-weight: bold; |
333 | padding-top: 1.5em; | 331 | padding-top: 1.5em; |
334 | } | 332 | } |
335 | 333 | ||
336 | table.diffstat { | 334 | table.diffstat { |
337 | border-collapse: collapse; | 335 | border-collapse: collapse; |
338 | border: solid 1px #aaa; | 336 | border: solid 1px #aaa; |
339 | background-color: #eee; | 337 | background-color: #eee; |
340 | } | 338 | } |
341 | 339 | ||
342 | table.diffstat th { | 340 | table.diffstat th { |
343 | font-weight: normal; | 341 | font-weight: normal; |
344 | text-align: left; | 342 | text-align: left; |
345 | text-decoration: underline; | 343 | text-decoration: underline; |
346 | padding: 0.1em 1em 0.1em 0.1em; | 344 | padding: 0.1em 1em 0.1em 0.1em; |
347 | font-size: 100%; | 345 | font-size: 100%; |
348 | } | 346 | } |
349 | 347 | ||
350 | table.diffstat td { | 348 | table.diffstat td { |
351 | padding: 0.2em 0.2em 0.1em 0.1em; | 349 | padding: 0.2em 0.2em 0.1em 0.1em; |
352 | font-size: 100%; | 350 | font-size: 100%; |
353 | border: none; | 351 | border: none; |
354 | } | 352 | } |
355 | 353 | ||
356 | table.diffstat td.mode { | 354 | table.diffstat td.mode { |
357 | white-space: nowrap; | 355 | white-space: nowrap; |
358 | } | 356 | } |
359 | 357 | ||
360 | table.diffstat td span.modechange { | 358 | table.diffstat td span.modechange { |
361 | padding-left: 1em; | 359 | padding-left: 1em; |
362 | color: red; | 360 | color: red; |
363 | } | 361 | } |
364 | 362 | ||
365 | table.diffstat td.add a { | 363 | table.diffstat td.add a { |
366 | color: green; | 364 | color: green; |
367 | } | 365 | } |
368 | 366 | ||
369 | table.diffstat td.del a { | 367 | table.diffstat td.del a { |
370 | color: red; | 368 | color: red; |
371 | } | 369 | } |
372 | 370 | ||
373 | table.diffstat td.upd a { | 371 | table.diffstat td.upd a { |
374 | color: blue; | 372 | color: blue; |
375 | } | 373 | } |
376 | 374 | ||
377 | table.diffstat td.graph { | 375 | table.diffstat td.graph { |
378 | width: 500px; | 376 | width: 500px; |
379 | vertical-align: middle; | 377 | vertical-align: middle; |
380 | } | 378 | } |
381 | 379 | ||
382 | table.diffstat td.graph table { | 380 | table.diffstat td.graph table { |
383 | border: none; | 381 | border: none; |
384 | } | 382 | } |
385 | 383 | ||
386 | table.diffstat td.graph td { | 384 | table.diffstat td.graph td { |
387 | padding: 0px; | 385 | padding: 0px; |
388 | border: 0px; | 386 | border: 0px; |
389 | height: 7pt; | 387 | height: 7pt; |
390 | } | 388 | } |
391 | 389 | ||
392 | table.diffstat td.graph td.add { | 390 | table.diffstat td.graph td.add { |
393 | background-color: #5c5; | 391 | background-color: #5c5; |
394 | } | 392 | } |
395 | 393 | ||
396 | table.diffstat td.graph td.rem { | 394 | table.diffstat td.graph td.rem { |
397 | background-color: #c55; | 395 | background-color: #c55; |
398 | } | 396 | } |
399 | 397 | ||
400 | div.diffstat-summary { | 398 | div.diffstat-summary { |
401 | color: #888; | 399 | color: #888; |
402 | padding-top: 0.5em; | 400 | padding-top: 0.5em; |
403 | } | 401 | } |
404 | 402 | ||
405 | table.diff { | 403 | table.diff { |
406 | width: 100%; | 404 | width: 100%; |
407 | } | 405 | } |
408 | 406 | ||
409 | table.diff td { | 407 | table.diff td { |
410 | font-family: monospace; | 408 | font-family: monospace; |
411 | white-space: pre; | 409 | white-space: pre; |
412 | } | 410 | } |
413 | 411 | ||
414 | table.diff td div.head { | 412 | table.diff td div.head { |
415 | font-weight: bold; | 413 | font-weight: bold; |
416 | margin-top: 1em; | 414 | margin-top: 1em; |
417 | color: black; | 415 | color: black; |
418 | } | 416 | } |
419 | 417 | ||
420 | table.diff td div.hunk { | 418 | table.diff td div.hunk { |
421 | color: #009; | 419 | color: #009; |
422 | } | 420 | } |
423 | 421 | ||
424 | table.diff td div.add { | 422 | table.diff td div.add { |
425 | color: green; | 423 | color: green; |
426 | } | 424 | } |
427 | 425 | ||
428 | table.diff td div.del { | 426 | table.diff td div.del { |
429 | color: red; | 427 | color: red; |
430 | } | 428 | } |
431 | 429 | ||
432 | .sha1 { | 430 | .sha1 { |
433 | font-family: monospace; | 431 | font-family: monospace; |
434 | font-size: 90%; | 432 | font-size: 90%; |
435 | } | 433 | } |
436 | 434 | ||
437 | .left { | 435 | .left { |
438 | text-align: left; | 436 | text-align: left; |
439 | } | 437 | } |
440 | 438 | ||
441 | .right { | 439 | .right { |
442 | text-align: right; | 440 | text-align: right; |
443 | } | 441 | } |
444 | 442 | ||
445 | table.list td.reposection { | 443 | table.list td.reposection { |
446 | font-style: italic; | 444 | font-style: italic; |
447 | color: #888; | 445 | color: #888; |
448 | } | 446 | } |
449 | 447 | ||
450 | a.button { | 448 | a.button { |
451 | font-size: 80%; | 449 | font-size: 80%; |
452 | padding: 0em 0.5em; | 450 | padding: 0em 0.5em; |
453 | } | 451 | } |
454 | 452 | ||
455 | a.primary { | 453 | a.primary { |
456 | font-size: 100%; | 454 | font-size: 100%; |
457 | } | 455 | } |
458 | 456 | ||
459 | a.secondary { | 457 | a.secondary { |
460 | font-size: 90%; | 458 | font-size: 90%; |
461 | } | 459 | } |
462 | 460 | ||
463 | td.toplevel-repo { | 461 | td.toplevel-repo { |
464 | 462 | ||
465 | } | 463 | } |
466 | 464 | ||
467 | table.list td.sublevel-repo { | 465 | table.list td.sublevel-repo { |
468 | padding-left: 1.5em; | 466 | padding-left: 1.5em; |
469 | } | 467 | } |
470 | 468 | ||
471 | div.pager { | 469 | div.pager { |
472 | text-align: center; | 470 | text-align: center; |
473 | margin: 1em 0em 0em 0em; | 471 | margin: 1em 0em 0em 0em; |
474 | } | 472 | } |
475 | 473 | ||
476 | div.pager a { | 474 | div.pager a { |
477 | color: #777; | 475 | color: #777; |
478 | margin: 0em 0.5em; | 476 | margin: 0em 0.5em; |
479 | } | 477 | } |
480 | 478 | ||
481 | span.age-mins { | 479 | span.age-mins { |
482 | font-weight: bold; | 480 | font-weight: bold; |
483 | color: #080; | 481 | color: #080; |
484 | } | 482 | } |
485 | 483 | ||
486 | span.age-hours { | 484 | span.age-hours { |
487 | color: #080; | 485 | color: #080; |
488 | } | 486 | } |
489 | 487 | ||
490 | span.age-days { | 488 | span.age-days { |
491 | color: #040; | 489 | color: #040; |
492 | } | 490 | } |
493 | 491 | ||
494 | span.age-weeks { | 492 | span.age-weeks { |
495 | color: #444; | 493 | color: #444; |
496 | } | 494 | } |
497 | 495 | ||
498 | span.age-months { | 496 | span.age-months { |
499 | color: #888; | 497 | color: #888; |
500 | } | 498 | } |
501 | 499 | ||
502 | span.age-years { | 500 | span.age-years { |
503 | color: #bbb; | 501 | color: #bbb; |
504 | } | 502 | } |
505 | div.footer { | 503 | div.footer { |
506 | margin-top: 0.5em; | 504 | margin-top: 0.5em; |
507 | text-align: center; | 505 | text-align: center; |
508 | font-size: 80%; | 506 | font-size: 80%; |
509 | color: #ccc; | 507 | color: #ccc; |
510 | } | 508 | } |
511 | a.branch-deco { | 509 | a.branch-deco { |
512 | margin: 0px 0.5em; | 510 | margin: 0px 0.5em; |
513 | padding: 0px 0.25em; | 511 | padding: 0px 0.25em; |
514 | background-color: #88ff88; | 512 | background-color: #88ff88; |
515 | border: solid 1px #007700; | 513 | border: solid 1px #007700; |
516 | } | 514 | } |
517 | a.tag-deco { | 515 | a.tag-deco { |
518 | margin: 0px 0.5em; | 516 | margin: 0px 0.5em; |
519 | padding: 0px 0.25em; | 517 | padding: 0px 0.25em; |
520 | background-color: #ffff88; | 518 | background-color: #ffff88; |
521 | border: solid 1px #777700; | 519 | border: solid 1px #777700; |
522 | } | 520 | } |
523 | a.remote-deco { | 521 | a.remote-deco { |
524 | margin: 0px 0.5em; | 522 | margin: 0px 0.5em; |
525 | padding: 0px 0.25em; | 523 | padding: 0px 0.25em; |
526 | background-color: #ccccff; | 524 | background-color: #ccccff; |
527 | border: solid 1px #000077; | 525 | border: solid 1px #000077; |
528 | } | 526 | } |
529 | a.deco { | 527 | a.deco { |
530 | margin: 0px 0.5em; | 528 | margin: 0px 0.5em; |
531 | padding: 0px 0.25em; | 529 | padding: 0px 0.25em; |
532 | background-color: #ff8888; | 530 | background-color: #ff8888; |
533 | border: solid 1px #770000; | 531 | border: solid 1px #770000; |
534 | } | 532 | } |
535 | 533 | ||
536 | div.commit-subject a { | 534 | div.commit-subject a { |
537 | margin-left: 1em; | 535 | margin-left: 1em; |
538 | font-size: 75%; | 536 | font-size: 75%; |
539 | } | 537 | } |
540 | 538 | ||
541 | table.stats { | 539 | table.stats { |
542 | border: solid 1px black; | 540 | border: solid 1px black; |
543 | border-collapse: collapse; | 541 | border-collapse: collapse; |
544 | } | 542 | } |
545 | 543 | ||
546 | table.stats th { | 544 | table.stats th { |
547 | text-align: left; | 545 | text-align: left; |
548 | padding: 1px 0.5em; | 546 | padding: 1px 0.5em; |
549 | background-color: #eee; | 547 | background-color: #eee; |
550 | border: solid 1px black; | 548 | border: solid 1px black; |
551 | } | 549 | } |
552 | 550 | ||
553 | table.stats td { | 551 | table.stats td { |
554 | text-align: right; | 552 | text-align: right; |
555 | padding: 1px 0.5em; | 553 | padding: 1px 0.5em; |
556 | border: solid 1px black; | 554 | border: solid 1px black; |
557 | } | 555 | } |
558 | 556 | ||
559 | table.stats td.total { | 557 | table.stats td.total { |
560 | font-weight: bold; | 558 | font-weight: bold; |
561 | text-align: left; | 559 | text-align: left; |
562 | } | 560 | } |
563 | 561 | ||
564 | table.stats td.sum { | 562 | table.stats td.sum { |
565 | color: #c00; | 563 | color: #c00; |
566 | font-weight: bold; | 564 | font-weight: bold; |
567 | /*background-color: #eee; */ | 565 | /*background-color: #eee; */ |
568 | } | 566 | } |
569 | 567 | ||
570 | table.stats td.left { | 568 | table.stats td.left { |
571 | text-align: left; | 569 | text-align: left; |
572 | } | 570 | } |
573 | 571 | ||
574 | table.vgraph { | 572 | table.vgraph { |
575 | border-collapse: separate; | 573 | border-collapse: separate; |
576 | border: solid 1px black; | 574 | border: solid 1px black; |
577 | height: 200px; | 575 | height: 200px; |
578 | } | 576 | } |
579 | 577 | ||
580 | table.vgraph th { | 578 | table.vgraph th { |
581 | background-color: #eee; | 579 | background-color: #eee; |
582 | font-weight: bold; | 580 | font-weight: bold; |
583 | border: solid 1px white; | 581 | border: solid 1px white; |
584 | padding: 1px 0.5em; | 582 | padding: 1px 0.5em; |
585 | } | 583 | } |
586 | 584 | ||
587 | table.vgraph td { | 585 | table.vgraph td { |
588 | vertical-align: bottom; | 586 | vertical-align: bottom; |
589 | padding: 0px 10px; | 587 | padding: 0px 10px; |
590 | } | 588 | } |
591 | 589 | ||
592 | table.vgraph div.bar { | 590 | table.vgraph div.bar { |
593 | background-color: #eee; | 591 | background-color: #eee; |
594 | } | 592 | } |
595 | 593 | ||
596 | table.hgraph { | 594 | table.hgraph { |
597 | border: solid 1px black; | 595 | border: solid 1px black; |
598 | width: 800px; | 596 | width: 800px; |
599 | } | 597 | } |
600 | 598 | ||
601 | table.hgraph th { | 599 | table.hgraph th { |
602 | background-color: #eee; | 600 | background-color: #eee; |
603 | font-weight: bold; | 601 | font-weight: bold; |
604 | border: solid 1px black; | 602 | border: solid 1px black; |
605 | padding: 1px 0.5em; | 603 | padding: 1px 0.5em; |
606 | } | 604 | } |
607 | 605 | ||
608 | table.hgraph td { | 606 | table.hgraph td { |
609 | vertical-align: center; | 607 | vertical-align: center; |
610 | padding: 2px 2px; | 608 | padding: 2px 2px; |
611 | } | 609 | } |
612 | 610 | ||
613 | table.hgraph div.bar { | 611 | table.hgraph div.bar { |
614 | background-color: #eee; | 612 | background-color: #eee; |
615 | height: 1em; | 613 | height: 1em; |
616 | } | 614 | } |
617 | 615 | ||
618 | table.ssdiff { | 616 | table.ssdiff { |
619 | width: 100%; | 617 | width: 100%; |
620 | } | 618 | } |
621 | 619 | ||
622 | table.ssdiff td { | 620 | table.ssdiff td { |
623 | font-size: 75%; | 621 | font-size: 75%; |
624 | font-family: monospace; | 622 | font-family: monospace; |
625 | white-space: pre; | 623 | white-space: pre; |
626 | padding: 1px 4px 1px 4px; | 624 | padding: 1px 4px 1px 4px; |
627 | border-left: solid 1px #aaa; | 625 | border-left: solid 1px #aaa; |
628 | border-right: solid 1px #aaa; | 626 | border-right: solid 1px #aaa; |