##// END OF EJS Templates
monoblue: add a margin for help text container
av6 -
r26153:8aa6fb6d default
parent child Browse files
Show More
@@ -1,516 +1,520 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 float: right;
57 57 margin-top: -2px;
58 58 }
59 59 div.page-header form label {
60 60 color: #DDD;
61 61 }
62 62 div.page-header form input {
63 63 padding: 2px;
64 64 border: solid 1px #DDD;
65 65 }
66 66 div.page-header form dl {
67 67 overflow: hidden;
68 68 }
69 69 div.page-header form dl dt {
70 70 font-size: 1.2em;
71 71 }
72 72 div.page-header form dl dt,
73 73 div.page-header form dl dd {
74 74 margin: 0 0 0 5px;
75 75 float: left;
76 76 height: 24px;
77 77 line-height: 20px;
78 78 }
79 79
80 80 ul.page-nav {
81 81 margin: 10px 0 0 0;
82 82 list-style-type: none;
83 83 overflow: hidden;
84 84 }
85 85 ul.page-nav li {
86 86 margin: 0 2px 0 0;
87 87 float: left;
88 88 width: 80px;
89 89 height: 24px;
90 90 font-size: 1.1em;
91 91 line-height: 24px;
92 92 text-align: center;
93 93 }
94 94 ul.page-nav li.current {
95 95 background: #FFF;
96 96 }
97 97 ul.page-nav li a {
98 98 height: 24px;
99 99 color: #666;
100 100 background: #DDD;
101 101 display: block;
102 102 text-decoration: none;
103 103 }
104 104 ul.page-nav li a:hover {
105 105 color:#333;
106 106 background: #FFF;
107 107 }
108 108
109 109 ul.submenu {
110 110 margin: 10px 0 -10px 20px;
111 111 list-style-type: none;
112 112 }
113 113 ul.submenu li {
114 114 margin: 0 10px 0 0;
115 115 font-size: 1.2em;
116 116 display: inline;
117 117 }
118 118
119 119 h2 {
120 120 margin: 20px 0 10px;
121 121 height: 30px;
122 122 line-height: 30px;
123 123 text-indent: 20px;
124 124 background: #FFF;
125 125 font-size: 1.2em;
126 126 border-top: dotted 1px #D5E1E6;
127 127 font-weight: bold;
128 128 }
129 129 h2.no-link {
130 130 color:#006699;
131 131 }
132 132 h2.no-border {
133 133 color: #FFF;
134 134 background: #006699;
135 135 border: 0;
136 136 }
137 137 h2 a {
138 138 font-weight:bold;
139 139 color:#006699;
140 140 }
141 141
142 142 div.page-path {
143 143 text-align: right;
144 144 padding: 20px 30px 10px 0;
145 145 border:solid #d9d8d1;
146 146 border-width:0px 0px 1px;
147 147 font-size: 1.2em;
148 148 }
149 149
150 150 div.page-footer {
151 151 margin: 50px 0 0;
152 152 position: relative;
153 153 }
154 154 div.page-footer p {
155 155 position: relative;
156 156 padding-left: 20px;
157 157 bottom: 5px;
158 158 font-size: 1.2em;
159 159 }
160 160
161 161 ul.rss-logo {
162 162 position: absolute;
163 163 top: -10px;
164 164 right: 20px;
165 165 height: 20px;
166 166 list-style-type: none;
167 167 }
168 168 ul.rss-logo li {
169 169 display: inline;
170 170 }
171 171 ul.rss-logo li a {
172 172 padding: 3px 6px;
173 173 line-height: 10px;
174 174 border:1px solid;
175 175 border-color:#fcc7a5 #7d3302 #3e1a01 #ff954e;
176 176 color:#ffffff;
177 177 background-color:#ff6600;
178 178 font-weight:bold;
179 179 font-family:sans-serif;
180 180 font-size:10px;
181 181 text-align:center;
182 182 text-decoration:none;
183 183 }
184 184 div.rss-logo li a:hover {
185 185 background-color:#ee5500;
186 186 }
187 187
188 188 p.normal {
189 189 margin: 20px 0 20px 30px;
190 190 font-size: 1.2em;
191 191 }
192 192
193 193 table {
194 194 margin: 10px 0 0 20px;
195 195 width: 95%;
196 196 border-collapse: collapse;
197 197 }
198 198 table tr td {
199 199 font-size: 1.1em;
200 200 }
201 201 table tr td.nowrap {
202 202 white-space: nowrap;
203 203 }
204 204 table tr td.closed {
205 205 background-color: #99f;
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 222 table.annotated tr td {
223 223 padding: 0px 5px;
224 224 }
225 225
226 226 span.logtags span {
227 227 padding: 2px 6px;
228 228 font-weight: normal;
229 229 font-size: 11px;
230 230 border: 1px solid;
231 231 background-color: #ffaaff;
232 232 border-color: #ffccff #ff00ee #ff00ee #ffccff;
233 233 }
234 234 span.logtags span.tagtag {
235 235 background-color: #ffffaa;
236 236 border-color: #ffffcc #ffee00 #ffee00 #ffffcc;
237 237 }
238 238 span.logtags span.branchtag {
239 239 background-color: #aaffaa;
240 240 border-color: #ccffcc #00cc33 #00cc33 #ccffcc;
241 241 }
242 242 span.logtags span.inbranchtag {
243 243 background-color: #d5dde6;
244 244 border-color: #e3ecf4 #9398f4 #9398f4 #e3ecf4;
245 245 }
246 246 span.logtags span.bookmarktag {
247 247 background-color: #afdffa;
248 248 border-color: #ccecff #46ace6 #46ace6 #ccecff;
249 249 }
250 250
251 251 div.diff pre {
252 252 margin: 10px 0 0 0;
253 253 }
254 254 div.diff pre span {
255 255 font-family: monospace;
256 256 white-space: pre;
257 257 font-size: 1.2em;
258 258 padding: 3px 0;
259 259 }
260 260 span.difflineplus { color:#008800; }
261 261 span.difflineminus { color:#cc0000; }
262 262 span.difflineat { color:#990099; }
263 263
264 264 td.source {
265 265 white-space: pre;
266 266 margin: 10px 30px 0;
267 267 font-size: 1.2em;
268 268 font-family: monospace;
269 269 }
270 270 div.source div.parity0,
271 271 div.source div.parity1 {
272 272 padding: 1px;
273 273 font-size: 1.2em;
274 274 }
275 275 div.source div.parity0 {
276 276 background: #F1F6F7;
277 277 }
278 278 div.source div.parity1 {
279 279 background: #FFFFFF;
280 280 }
281 281 div.parity0:hover,
282 282 div.parity1:hover {
283 283 background: #D5E1E6;
284 284 }
285 285 .linenr {
286 286 color: #999;
287 287 text-align: right;
288 288 }
289 289 .lineno {
290 290 text-align: right;
291 291 }
292 292 .lineno a {
293 293 color: #999;
294 294 }
295 295 td.linenr {
296 296 width: 60px;
297 297 }
298 298
299 299 div#powered-by {
300 300 position: absolute;
301 301 width: 75px;
302 302 top: 15px;
303 303 right: 20px;
304 304 font-size: 1.2em;
305 305 }
306 306 div#powered-by a {
307 307 color: #EEE;
308 308 text-decoration: none;
309 309 }
310 310 div#powered-by a:hover {
311 311 text-decoration: underline;
312 312 }
313 313 /** end of common settings **/
314 314
315 315 /** summary **/
316 316 dl.overview {
317 317 margin: 0 0 0 30px;
318 318 font-size: 1.1em;
319 319 overflow: hidden;
320 320 }
321 321 dl.overview dt,
322 322 dl.overview dd {
323 323 margin: 5px 0;
324 324 float: left;
325 325 }
326 326 dl.overview dt {
327 327 clear: left;
328 328 font-weight: bold;
329 329 width: 150px;
330 330 }
331 331 /** end of summary **/
332 332
333 333 /** chagelog **/
334 334 h3.changelog {
335 335 margin: 20px 0 5px 30px;
336 336 padding: 0 0 2px;
337 337 font-size: 1.4em;
338 338 border-bottom: dotted 1px #D5E1E6;
339 339 }
340 340 ul.changelog-entry {
341 341 margin: 0 0 10px 30px;
342 342 list-style-type: none;
343 343 position: relative;
344 344 }
345 345 ul.changelog-entry li span.revdate {
346 346 font-size: 1.1em;
347 347 }
348 348 ul.changelog-entry li.age {
349 349 position: absolute;
350 350 top: -25px;
351 351 right: 10px;
352 352 font-size: 1.4em;
353 353 color: #CCC;
354 354 font-weight: bold;
355 355 font-style: italic;
356 356 }
357 357 ul.changelog-entry li span.name {
358 358 font-size: 1.2em;
359 359 font-weight: bold;
360 360 }
361 361 ul.changelog-entry li.description {
362 362 margin: 10px 0 0;
363 363 font-size: 1.1em;
364 364 }
365 365 /** end of changelog **/
366 366
367 367 /** file **/
368 368 p.files {
369 369 margin: 0 0 0 20px;
370 370 font-size: 2.0em;
371 371 font-weight: bold;
372 372 }
373 373 /** end of file **/
374 374
375 375 /** changeset **/
376 376 h3.changeset {
377 377 margin: 20px 0 5px 20px;
378 378 padding: 0 0 2px;
379 379 font-size: 1.6em;
380 380 border-bottom: dotted 1px #D5E1E6;
381 381 }
382 382 p.changeset-age {
383 383 position: relative;
384 384 }
385 385 p.changeset-age span {
386 386 position: absolute;
387 387 top: -25px;
388 388 right: 10px;
389 389 font-size: 1.4em;
390 390 color: #CCC;
391 391 font-weight: bold;
392 392 font-style: italic;
393 393 }
394 394 p.description {
395 395 margin: 10px 30px 0 30px;
396 396 padding: 10px;
397 397 border: solid 1px #CCC;
398 398 font-size: 1.2em;
399 399 }
400 400 /** end of changeset **/
401 401
402 402 /** canvas **/
403 403 div#wrapper {
404 404 position: relative;
405 405 font-size: 1.2em;
406 406 }
407 407
408 408 canvas {
409 409 position: absolute;
410 410 z-index: 5;
411 411 top: -0.7em;
412 412 }
413 413
414 414 ul#nodebgs li.parity0 {
415 415 background: #F1F6F7;
416 416 }
417 417
418 418 ul#nodebgs li.parity1 {
419 419 background: #FFFFFF;
420 420 }
421 421
422 422 ul#graphnodes {
423 423 position: absolute;
424 424 z-index: 10;
425 425 top: 7px;
426 426 list-style: none inside none;
427 427 }
428 428
429 429 ul#nodebgs {
430 430 list-style: none inside none;
431 431 }
432 432
433 433 ul#graphnodes li, ul#nodebgs li {
434 434 height: 39px;
435 435 }
436 436
437 437 ul#graphnodes li .info {
438 438 display: block;
439 439 position: relative;
440 440 }
441 441 /** end of canvas **/
442 442
443 443 /** comparison **/
444 444 .legend {
445 445 margin-left: 20px;
446 446 padding: 1.5% 0 1.5% 0;
447 447 }
448 448
449 449 .legendinfo {
450 450 border: 1px solid #999;
451 451 font-size: 80%;
452 452 text-align: center;
453 453 padding: 0.5%;
454 454 }
455 455
456 456 .equal {
457 457 background-color: #ffffff;
458 458 }
459 459
460 460 .delete {
461 461 background-color: #faa;
462 462 color: #333;
463 463 }
464 464
465 465 .insert {
466 466 background-color: #ffa;
467 467 }
468 468
469 469 .replace {
470 470 background-color: #e8e8e8;
471 471 }
472 472
473 473 .comparison {
474 474 overflow-x: auto;
475 475 }
476 476
477 477 .comparison table td {
478 478 padding: 0px 5px;
479 479 }
480 480
481 481 .header th {
482 482 font-weight: bold;
483 483 }
484 484
485 485 .block {
486 486 border-top: 1px solid #999;
487 487 }
488 488 /** end of comparison **/
489 489
490 490 .breadcrumb a:hover {
491 491 text-decoration:underline;
492 492 }
493 493
494 494 .scroll-loading {
495 495 -webkit-animation: change_color 1s linear 0s infinite alternate;
496 496 -moz-animation: change_color 1s linear 0s infinite alternate;
497 497 -o-animation: change_color 1s linear 0s infinite alternate;
498 498 animation: change_color 1s linear 0s infinite alternate;
499 499 }
500 500
501 501 @-webkit-keyframes change_color {
502 502 from { background-color: #A0CEFF; } to { }
503 503 }
504 504 @-moz-keyframes change_color {
505 505 from { background-color: #A0CEFF; } to { }
506 506 }
507 507 @-o-keyframes change_color {
508 508 from { background-color: #A0CEFF; } to { }
509 509 }
510 510 @keyframes change_color {
511 511 from { background-color: #A0CEFF; } to { }
512 512 }
513 513
514 514 .scroll-loading-error {
515 515 background-color: #FFCCCC !important;
516 516 }
517
518 #doc {
519 margin: 0 30px;
520 }
General Comments 0
You need to be logged in to leave comments. Login now