##// END OF EJS Templates
monoblue: Fix indentation and other styling in the annotation view.
Augie Fackler -
r8162:6f142534 default
parent child Browse files
Show More
@@ -1,461 +1,472 b''
1 1 /*** Initial Settings ***/
2 2 * {
3 3 margin: 0;
4 4 padding: 0;
5 5 font-weight: normal;
6 6 font-style: normal;
7 7 }
8 8
9 9 html {
10 10 font-size: 100%;
11 11 font-family: sans-serif;
12 12 }
13 13
14 14 body {
15 15 font-size: 77%;
16 16 margin: 15px 50px;
17 17 background: #4B4B4C;
18 18 }
19 19
20 20 a {
21 21 color:#0000cc;
22 22 text-decoration: none;
23 23 }
24 24 /*** end of Initial Settings ***/
25 25
26 26
27 27 /** common settings **/
28 28 div#container {
29 29 background: #FFFFFF;
30 30 position: relative;
31 31 color: #666;
32 32 }
33 33
34 34 div.page-header {
35 35 padding: 50px 20px 0;
36 36 background: #006699 top left repeat-x;
37 37 position: relative;
38 38 }
39 39 div.page-header h1 {
40 40 margin: 10px 0 30px;
41 41 font-size: 1.8em;
42 42 font-weight: bold;
43 43 font-family: osaka,'MS P Gothic', Georgia, serif;
44 44 letter-spacing: 1px;
45 45 color: #DDD;
46 46 }
47 47 div.page-header h1 a {
48 48 font-weight: bold;
49 49 color: #FFF;
50 50 }
51 51 div.page-header a {
52 52 text-decoration: none;
53 53 }
54 54
55 55 div.page-header form {
56 56 position: absolute;
57 57 margin-bottom: 2px;
58 58 bottom: 0;
59 59 right: 20px;
60 60 }
61 61 div.page-header form label {
62 62 color: #DDD;
63 63 }
64 64 div.page-header form input {
65 65 padding: 2px;
66 66 border: solid 1px #DDD;
67 67 }
68 68 div.page-header form dl {
69 69 overflow: hidden;
70 70 }
71 71 div.page-header form dl dt {
72 72 font-size: 1.2em;
73 73 }
74 74 div.page-header form dl dt,
75 75 div.page-header form dl dd {
76 76 margin: 0 0 0 5px;
77 77 float: left;
78 78 height: 24px;
79 79 line-height: 20px;
80 80 }
81 81
82 82 ul.page-nav {
83 83 margin: 10px 0 0 0;
84 84 list-style-type: none;
85 85 overflow: hidden;
86 86 width: 800px;
87 87 }
88 88 ul.page-nav li {
89 89 margin: 0 2px 0 0;
90 90 float: left;
91 91 width: 80px;
92 92 height: 24px;
93 93 font-size: 1.1em;
94 94 line-height: 24px;
95 95 text-align: center;
96 96 }
97 97 ul.page-nav li.current {
98 98 background: #FFF;
99 99 }
100 100 ul.page-nav li a {
101 101 height: 24px;
102 102 color: #666;
103 103 background: #DDD;
104 104 display: block;
105 105 text-decoration: none;
106 106 }
107 107 ul.page-nav li a:hover {
108 108 color:#333;
109 109 background: #FFF;
110 110 }
111 111
112 112 ul.submenu {
113 113 margin: 10px 0 -10px 20px;
114 114 list-style-type: none;
115 115 }
116 116 ul.submenu li {
117 117 margin: 0 10px 0 0;
118 118 font-size: 1.2em;
119 119 display: inline;
120 120 }
121 121
122 122 h2 {
123 123 margin: 20px 0 10px;
124 124 height: 30px;
125 125 line-height: 30px;
126 126 text-indent: 20px;
127 127 background: #FFF;
128 128 font-size: 1.2em;
129 129 border-top: dotted 1px #D5E1E6;
130 130 font-weight: bold;
131 131 }
132 132 h2.no-link {
133 133 color:#006699;
134 134 }
135 135 h2.no-border {
136 136 color: #FFF;
137 137 background: #006699;
138 138 border: 0;
139 139 }
140 140 h2 a {
141 141 font-weight:bold;
142 142 color:#006699;
143 143 }
144 144
145 145 div.page-path {
146 146 text-align: right;
147 147 padding: 20px 30px 10px 0;
148 148 border:solid #d9d8d1;
149 149 border-width:0px 0px 1px;
150 150 font-size: 1.2em;
151 151 }
152 152
153 153 div.page-footer {
154 154 margin: 50px 0 0;
155 155 position: relative;
156 156 }
157 157 div.page-footer p {
158 158 position: relative;
159 159 left: 20px;
160 160 bottom: 5px;
161 161 font-size: 1.2em;
162 162 }
163 163
164 164 ul.rss-logo {
165 165 position: absolute;
166 166 top: -10px;
167 167 right: 20px;
168 168 height: 20px;
169 169 list-style-type: none;
170 170 }
171 171 ul.rss-logo li {
172 172 display: inline;
173 173 }
174 174 ul.rss-logo li a {
175 175 padding: 3px 6px;
176 176 line-height: 10px;
177 177 border:1px solid;
178 178 border-color:#fcc7a5 #7d3302 #3e1a01 #ff954e;
179 179 color:#ffffff;
180 180 background-color:#ff6600;
181 181 font-weight:bold;
182 182 font-family:sans-serif;
183 183 font-size:10px;
184 184 text-align:center;
185 185 text-decoration:none;
186 186 }
187 187 div.rss-logo li a:hover {
188 188 background-color:#ee5500;
189 189 }
190 190
191 191 p.normal {
192 192 margin: 20px 0 20px 30px;
193 193 font-size: 1.2em;
194 194 }
195 195
196 196 table {
197 197 margin: 10px 0 0 20px;
198 198 width: 95%;
199 199 border-collapse: collapse;
200 200 }
201 201 table tr td {
202 202 font-size: 1.1em;
203 203 }
204 204 table tr td.nowrap {
205 205 white-space: nowrap;
206 206 }
207 207 /*
208 208 table tr.parity0:hover,
209 209 table tr.parity1:hover {
210 210 background: #D5E1E6;
211 211 }
212 212 */
213 213 table tr.parity0 {
214 214 background: #F1F6F7;
215 215 }
216 216 table tr.parity1 {
217 217 background: #FFFFFF;
218 218 }
219 219 table tr td {
220 220 padding: 5px 5px;
221 221 }
222 table.annotated tr td {
223 padding: 0px 5px;
224 }
222 225
223 226 span.logtags span {
224 227 padding: 2px 6px;
225 228 font-weight: normal;
226 229 font-size: 11px;
227 230 border: 1px solid;
228 231 background-color: #ffaaff;
229 232 border-color: #ffccff #ff00ee #ff00ee #ffccff;
230 233 }
231 234 span.logtags span.tagtag {
232 235 background-color: #ffffaa;
233 236 border-color: #ffffcc #ffee00 #ffee00 #ffffcc;
234 237 }
235 238 span.logtags span.branchtag {
236 239 background-color: #aaffaa;
237 240 border-color: #ccffcc #00cc33 #00cc33 #ccffcc;
238 241 }
239 242 span.logtags span.inbranchtag {
240 243 background-color: #d5dde6;
241 244 border-color: #e3ecf4 #9398f4 #9398f4 #e3ecf4;
242 245 }
243 246
244 247 div.diff pre {
245 248 margin: 10px 0 0 0;
246 249 }
247 250 div.diff pre span {
248 251 font-family: monospace;
249 252 white-space: pre;
250 253 font-size: 1.2em;
251 254 padding: 3px 0;
252 255 }
253 div.source {
256 td.source {
257 white-space: pre;
258 font-family: monospace;
254 259 margin: 10px 30px 0;
255 font-family: Tahoma, sans-serif, monospace;
256 font-size: 100%;
260 font-size: 1.2em;
261 font-family: monospace;
257 262 }
258 263 div.source div.parity0,
259 264 div.source div.parity1 {
260 265 padding: 1px;
261 266 font-size: 1.2em;
262 267 }
263 268 div.source div.parity0 {
264 269 background: #F1F6F7;
265 270 }
266 271 div.source div.parity1 {
267 272 background: #FFFFFF;
268 273 }
269 274 div.parity0:hover,
270 275 div.parity1:hover {
271 276 background: #D5E1E6;
272 277 }
273 278 .linenr {
274 279 color: #999;
275 280 text-align: right;
276 281 }
282 .lineno {
283 text-align: right;
284 }
285 .lineno a {
286 color: #999;
287 }
277 288 td.linenr {
278 289 width: 60px;
279 290 }
280 291
281 292 div#powered-by {
282 293 position: absolute;
283 294 width: 75px;
284 295 top: 15px;
285 296 right: 20px;
286 297 font-size: 1.2em;
287 298 }
288 299 div#powered-by a {
289 300 color: #EEE;
290 301 text-decoration: none;
291 302 }
292 303 div#powered-by a:hover {
293 304 text-decoration: underline;
294 305 }
295 306 /*
296 307 div#monoblue-corner-top-left {
297 308 position: absolute;
298 309 top: 0;
299 310 left: 0;
300 311 width: 10px;
301 312 height: 10px;
302 313 background: url(./monoblue-corner.png) top left no-repeat !important;
303 314 background: none;
304 315 }
305 316 div#monoblue-corner-top-right {
306 317 position: absolute;
307 318 top: 0;
308 319 right: 0;
309 320 width: 10px;
310 321 height: 10px;
311 322 background: url(./monoblue-corner.png) top right no-repeat !important;
312 323 background: none;
313 324 }
314 325 div#monoblue-corner-bottom-left {
315 326 position: absolute;
316 327 bottom: 0;
317 328 left: 0;
318 329 width: 10px;
319 330 height: 10px;
320 331 background: url(./monoblue-corner.png) bottom left no-repeat !important;
321 332 background: none;
322 333 }
323 334 div#monoblue-corner-bottom-right {
324 335 position: absolute;
325 336 bottom: 0;
326 337 right: 0;
327 338 width: 10px;
328 339 height: 10px;
329 340 background: url(./monoblue-corner.png) bottom right no-repeat !important;
330 341 background: none;
331 342 }
332 343 */
333 344 /** end of common settings **/
334 345
335 346 /** summary **/
336 347 dl.overview {
337 348 margin: 0 0 0 30px;
338 349 font-size: 1.1em;
339 350 overflow: hidden;
340 351 }
341 352 dl.overview dt,
342 353 dl.overview dd {
343 354 margin: 5px 0;
344 355 float: left;
345 356 }
346 357 dl.overview dt {
347 358 clear: left;
348 359 font-weight: bold;
349 360 width: 150px;
350 361 }
351 362 /** end of summary **/
352 363
353 364 /** chagelog **/
354 365 h3.changelog {
355 366 margin: 20px 0 5px 30px;
356 367 padding: 0 0 2px;
357 368 font-size: 1.4em;
358 369 border-bottom: dotted 1px #D5E1E6;
359 370 }
360 371 ul.changelog-entry {
361 372 margin: 0 0 10px 30px;
362 373 list-style-type: none;
363 374 position: relative;
364 375 }
365 376 ul.changelog-entry li span.revdate {
366 377 font-size: 1.1em;
367 378 }
368 379 ul.changelog-entry li.age {
369 380 position: absolute;
370 381 top: -25px;
371 382 right: 10px;
372 383 font-size: 1.4em;
373 384 color: #CCC;
374 385 font-weight: bold;
375 386 font-style: italic;
376 387 }
377 388 ul.changelog-entry li span.name {
378 389 font-size: 1.2em;
379 390 font-weight: bold;
380 391 }
381 392 ul.changelog-entry li.description {
382 393 margin: 10px 0 0;
383 394 font-size: 1.1em;
384 395 }
385 396 /** end of changelog **/
386 397
387 398 /** file **/
388 399 p.files {
389 400 margin: 0 0 0 20px;
390 401 font-size: 2.0em;
391 402 font-weight: bold;
392 403 }
393 404 /** end of file **/
394 405
395 406 /** changeset **/
396 407 h3.changeset {
397 408 margin: 20px 0 5px 20px;
398 409 padding: 0 0 2px;
399 410 font-size: 1.6em;
400 411 border-bottom: dotted 1px #D5E1E6;
401 412 }
402 413 p.changeset-age {
403 414 position: relative;
404 415 }
405 416 p.changeset-age span {
406 417 position: absolute;
407 418 top: -25px;
408 419 right: 10px;
409 420 font-size: 1.4em;
410 421 color: #CCC;
411 422 font-weight: bold;
412 423 font-style: italic;
413 424 }
414 425 p.description {
415 426 margin: 10px 30px 0 30px;
416 427 padding: 10px;
417 428 border: solid 1px #CCC;
418 429 font-size: 1.2em;
419 430 }
420 431 /** end of changeset **/
421 432
422 433 /** canvas **/
423 434 div#wrapper {
424 435 position: relative;
425 436 font-size: 1.2em;
426 437 }
427 438
428 439 canvas {
429 440 position: absolute;
430 441 z-index: 5;
431 442 top: -0.7em;
432 443 }
433 444
434 445 ul#nodebgs li.parity0 {
435 446 background: #F1F6F7;
436 447 }
437 448
438 449 ul#nodebgs li.parity1 {
439 450 background: #FFFFFF;
440 451 }
441 452
442 453 ul#graphnodes {
443 454 position: absolute;
444 455 z-index: 10;
445 456 top: 7px;
446 457 list-style: none inside none;
447 458 }
448 459
449 460 ul#nodebgs {
450 461 list-style: none inside none;
451 462 }
452 463
453 464 ul#graphnodes li, ul#nodebgs li {
454 465 height: 39px;
455 466 }
456 467
457 468 ul#graphnodes li .info {
458 469 display: block;
459 470 position: relative;
460 471 }
461 472 /** end of canvas **/
General Comments 0
You need to be logged in to leave comments. Login now