~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/static/css/style.css

  • Committer: Launchpad Patch Queue Manager
  • Date: 2008-02-29 04:43:52 UTC
  • mfrom: (146.1.5 release-prep)
  • Revision ID: launchpad@pqm.canonical.com-20080229044352-zoweuygtkq7uwo37
[r=jml] updates to README.txt and NEWS before release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
/* from launchpad */
 
3
body {
 
4
    background-color: #fcfcfc;
 
5
    color: black;
 
6
    font-family: "Lucida Grande", "Trebuchet MS", sans-serif;
 
7
    font-size: 12pt;
 
8
    padding: 0px;
 
9
    text-align: left;
 
10
}
 
11
 
 
12
a {
 
13
    text-decoration: none;
 
14
    color: #000088;
 
15
}
 
16
a:hover {
 
17
    color: black;
 
18
}
 
19
 
 
20
img {
 
21
    border: none;
 
22
}
 
23
 
 
24
h1 {
 
25
    color: #708a96;
 
26
    font-weight: normal;
 
27
    font-size: 1.6em;
 
28
    margin-bottom: 1em;
 
29
}
 
30
h1 .filename {
 
31
    font-family: monospace;
 
32
}
 
33
 
 
34
.branch-name {
 
35
    color: #47626e;
 
36
}
 
37
 
 
38
.footer {
 
39
    margin-top: 1em;
 
40
    margin-bottom: 1em;
 
41
}
 
42
.footer .banner {
 
43
    margin-right: 5px;
 
44
}
 
45
.footer .banner img {
 
46
    border: 1px solid #8cacbb;
 
47
}
 
48
 
 
49
.collapse-triangle {
 
50
    padding-right: 0.5em;
 
51
}
 
52
 
 
53
.hide-all {
 
54
    font-size: smaller;
 
55
    padding: 0.25em 0.75em 0.25em 0.75em;
 
56
}
 
57
 
 
58
 
 
59
 
 
60
/* ----- navigation bar at the top ----- */
 
61
 
 
62
.navbar {
 
63
}
 
64
 
 
65
.bar table {
 
66
    width: 100%;
 
67
    border-collapse: collapse;
 
68
}
 
69
 
 
70
/* safari gives forms a big default margin, to vex me */
 
71
.bar form {
 
72
    margin: 0px;
 
73
}
 
74
 
 
75
.bar {
 
76
    background-color: #dee7ec;
 
77
    border: 1px solid #8cacbb;
 
78
    font-size: smaller;
 
79
    padding-top: 0px;
 
80
    padding-bottom: 0px;
 
81
}
 
82
 
 
83
/* revision navigation buttons (the ones at the top right) */
 
84
.navbuttons {
 
85
    padding: 2px;
 
86
    bottom: 0px;
 
87
    text-align: right;
 
88
    width: auto;
 
89
    border-left: 1px dotted #8cacbb;
 
90
    padding-left: 0.5em;
 
91
    padding-right: 0.5em;
 
92
}
 
93
 
 
94
.navbuttons a {
 
95
    font-weight: normal;
 
96
    margin-left: 2px;
 
97
    margin-right: 2px;
 
98
}
 
99
 
 
100
.navbuttons a:hover {
 
101
    padding: 0;
 
102
    color: blue;
 
103
}
 
104
 
 
105
/* navigation button in the pages (the ones at the top left, and bottom) */
 
106
.buttons {
 
107
}
 
108
 
 
109
.buttons a,.buttons .search {
 
110
    font-weight: normal;
 
111
    color: #000088;
 
112
    font-size: 12pt;
 
113
    padding-left: 10px;
 
114
    padding-right: 7px;
 
115
    border-right: 1px dotted #8cacbb;
 
116
}
 
117
 
 
118
.buttons a:hover,.rbuttons a:hover {
 
119
    font-weight: normal;
 
120
    color: blue;
 
121
}
 
122
 
 
123
.feed img {
 
124
    vertical-align: text-top;
 
125
}
 
126
 
 
127
.rbuttons a {
 
128
    font-weight: normal;
 
129
    color: #000088;
 
130
    font-size: 12pt;
 
131
    padding-right: 7px;
 
132
    padding-left: 10px;
 
133
    border-left: 1px dotted #8cacbb;
 
134
    text-align: right;
 
135
    width: auto;
 
136
}
 
137
 
 
138
 
 
139
/* ----- revision display in various places ----- */
 
140
 
 
141
.revision .revno {
 
142
    font-weight: bold;
 
143
}
 
144
 
 
145
.revision .revid {
 
146
    font-family: monospace;
 
147
    font-size: smaller;
 
148
    padding-left: 1em;
 
149
}
 
150
 
 
151
.revision .log {
 
152
    font-size: smaller;
 
153
}
 
154
 
 
155
 
 
156
/* ---- sub-links underneath the headline on some pages ----- */
 
157
 
 
158
div.links {
 
159
    padding-top: 0.5em;
 
160
    padding-left: 3em;
 
161
    font-size: 50%;
 
162
}
 
163
 
 
164
div.links div {
 
165
    margin-bottom: 3px;
 
166
}
 
167
 
 
168
 
 
169
/* ----- list of merge points for a revision ----- */
 
170
 
 
171
.info-entry {
 
172
    font-size: smaller;
 
173
    margin-bottom: 2em;
 
174
    padding: 0px;
 
175
    background-color: #f4f5f8;
 
176
    border: 1px solid #8cacbb;
 
177
    width: 60%;
 
178
}
 
179
 
 
180
.info-entry th {
 
181
    background-color: #dee7ec;
 
182
    font-weight: normal;
 
183
    color: black;
 
184
    text-align: right;
 
185
    vertical-align: top;
 
186
 
 
187
    padding-left: 0.5em;
 
188
    padding-right: 0.5em;
 
189
    padding-top: 2px;
 
190
    padding-bottom: 2px;
 
191
}
 
192
 
 
193
.info-entry td {
 
194
    font-weight: normal;
 
195
    padding-left: 0.5em;
 
196
    padding-top: 2px;
 
197
    padding-bottom: 2px;
 
198
}
 
199
 
 
200
 
 
201
/* ----- changelog page ----- */
 
202
 
 
203
/* secret css-jutsu to make hidden margins vanish on a table */
 
204
.log-entries {
 
205
    border-collapse: collapse;
 
206
    width: 98%;
 
207
    margin-top: 0.5em;
 
208
    margin-left: 1em;
 
209
}
 
210
 
 
211
.log-entries .log-header {
 
212
    background-color: #8cacbb;
 
213
    padding-top: 3px;
 
214
    padding-bottom: 3px;
 
215
    text-align: left;
 
216
}
 
217
 
 
218
.log-entries .revision-header {
 
219
    font-size: 1.0em;
 
220
}
 
221
 
 
222
.log-entries .revision-header td {
 
223
    padding-top: 2px;
 
224
    padding-bottom: 2px;
 
225
}
 
226
 
 
227
.log-entries .revision-header td.expand-button {
 
228
    width: 20px;
 
229
}
 
230
 
 
231
.log-entries .revision-number {
 
232
    padding-left: 0.5em;
 
233
}
 
234
 
 
235
.log-entries .revision-header td.date {
 
236
    font-size: smaller;
 
237
}
 
238
 
 
239
.log-entries .revision-header td.author {
 
240
    font-size: smaller;
 
241
    padding-right: 0.5em;
 
242
}
 
243
 
 
244
.log-entries .revision-header .inventory-link {
 
245
    font-size: smaller;
 
246
    vertical-align: middle;
 
247
    text-align: left;
 
248
    padding-right: 0.5em;
 
249
}
 
250
 
 
251
.log-entries table.revision-details {
 
252
    font-size: smaller;
 
253
    margin-bottom: 1.0em;
 
254
}
 
255
 
 
256
.log-entries table.revision-details th {
 
257
    text-align: right;
 
258
    padding-right: 0.5em;
 
259
    vertical-align: top;
 
260
}
 
261
 
 
262
.log-entries table.revision-details td.files .filename {
 
263
    font-family: monospace;
 
264
}
 
265
 
 
266
.log-entries .revision-details td.files .jump {
 
267
    font-size: smaller;
 
268
}
 
269
 
 
270
.log-entries .revision-details td.description {
 
271
    font-family: monospace;
 
272
}
 
273
 
 
274
/* default state: hide all */
 
275
.revision-header .hide-button { display: none; }
 
276
.hidden-details { display: none; }
 
277
.changelog .collapse-cl-hideall { display: none; }
 
278
 
 
279
 
 
280
/* ----- revision page ----- */
 
281
 
 
282
.revision-info {
 
283
    border: none;
 
284
    font-size: smaller;
 
285
    margin-bottom: 1em;
 
286
    padding: 0;
 
287
    background-color: #f4f5f8;
 
288
    border: 1px solid #8cacbb;
 
289
    width: 80%;
 
290
}
 
291
 
 
292
/* secret css-jutsu to make hidden margins vanish on a table */
 
293
.revision-info table {
 
294
    border-collapse: collapse;
 
295
    width: 100%;
 
296
}
 
297
 
 
298
.revision-info th {
 
299
    background-color: #dee7ec;
 
300
    color: black;
 
301
    font-weight: normal;
 
302
    text-align: right;
 
303
    vertical-align: top;
 
304
    
 
305
    padding-left: 0.5em;
 
306
    padding-right: 0.5em;
 
307
    padding-top: 2px;
 
308
    padding-bottom: 2px;
 
309
}
 
310
 
 
311
.revision-info td {
 
312
    font-weight: normal;
 
313
    padding-left: 0.5em;
 
314
    padding-top: 2px;
 
315
    padding-bottom: 2px;
 
316
}
 
317
 
 
318
.revision-info table td.description {
 
319
    font-family: monospace;
 
320
}
 
321
 
 
322
.revision-info table td.files .filename {
 
323
    font-family: monospace;
 
324
}
 
325
 
 
326
.revision-info table td.files a.jump {
 
327
    font-size: smaller;
 
328
}
 
329
    
 
330
.revision-info table tr.divider {
 
331
    border-top: 1px solid #8cacbb;
 
332
}
 
333
 
 
334
 
 
335
/* ----- overly complex diff display ----- */
 
336
 
 
337
.diff {
 
338
    margin-bottom: 1em;
 
339
    padding-top: 10px;
 
340
    width: 100%;
 
341
    background-color: #fcfcfc;
 
342
    font-family: monospace;
 
343
}
 
344
 
 
345
 
 
346
.diff-block {
 
347
    border-collapse: collapse;
 
348
    width: 100%;
 
349
    margin-bottom: 1em;
 
350
}
 
351
 
 
352
.diff-block th.filename {
 
353
    font-family: monospace;
 
354
    font-weight: normal;
 
355
    font-size: smaller;
 
356
    padding-left: 1em;
 
357
    padding-top: 1em;
 
358
    padding-bottom: 1em;
 
359
    text-align: left;
 
360
    background-color: #dee7ec;
 
361
}
 
362
 
 
363
.diff-block .diff-chunk {
 
364
    font-size: 66%;
 
365
    margin-top: 0px;
 
366
    margin-bottom: 2em;
 
367
}
 
368
 
 
369
.diff-block th.lineno {
 
370
    font-weight: bold;
 
371
    border-bottom: 1px solid #8cacbb;
 
372
    border-top: 1px solid #dee7ec;
 
373
}
 
374
 
 
375
.diff-block .diff-spacing {
 
376
    line-height: 1em;
 
377
}
 
378
 
 
379
.diff-option-buttons {
 
380
    margin-top: 1.0em;
 
381
    margin-bottom: 1.0em;
 
382
    border-collapse: collapse;
 
383
}
 
384
.diff-option-buttons td {
 
385
    line-height: 1em;
 
386
    height: 1em;
 
387
    vertical-align: middle;
 
388
    padding: 0px;
 
389
}
 
390
.diff-option-buttons .label {
 
391
    font-size: smaller;
 
392
    padding-left: 0.75em;
 
393
    padding-right: 2em;
 
394
    line-height: 1em;
 
395
}
 
396
.diff-option-buttons .spacey {
 
397
    padding-right: 5em;
 
398
}
 
399
 
 
400
.diff-option-buttons .collapse-file-showall { display: none; }
 
401
 
 
402
.diff-block .show-button { display: none; }
 
403
.collapse-style-unified-content { display: none; }
 
404
.collapse-style-sbs-show { display: none; }
 
405
 
 
406
.diff-insert {
 
407
    background-color: #9cc8ff;
 
408
}
 
409
.diff-delete {
 
410
    background-color: #ffa0a0;
 
411
}
 
412
.diff-chunk td.text {
 
413
    padding-left: 1em;
 
414
}
 
415
 
 
416
.diff-key {
 
417
    display: inline;
 
418
    font-size: smaller;
 
419
}
 
420
 
 
421
.diff-key-block {
 
422
    width: 1em;
 
423
    height: 1em;
 
424
    border: 1px solid #8cacbb;
 
425
}
 
426
 
 
427
.diff-key .label {
 
428
    padding-right: 2em;
 
429
}
 
430
 
 
431
.diff .lineno {
 
432
    color: purple;
 
433
    background-color: #dee7ec; 
 
434
    width: 4em;
 
435
    text-align: right;
 
436
    padding-right: 3px;
 
437
    border-bottom: 1px solid #8cacbb;
 
438
}
 
439
.diff .lineno-skip {
 
440
    width: 4em;
 
441
    background-color: #dee7ec;
 
442
}
 
443
.diff .info {
 
444
    color: blue;
 
445
    background-color: #dee7ec;
 
446
    margin-top: 15px;
 
447
}
 
448
/*
 
449
.diff-context-skip {
 
450
    background-color: #dee7ec;
 
451
}*/
 
452
 
 
453
 
 
454
/* ----- file inventory ----- */
 
455
 
 
456
.inventory-path {
 
457
    margin-top: 2em;
 
458
}
 
459
 
 
460
table.inventory {
 
461
    border-collapse: collapse;
 
462
    width: 100%;
 
463
    font-size: smaller;
 
464
    margin-top: 1em;
 
465
    border: 1px solid #8cacbb;
 
466
}
 
467
 
 
468
table.inventory td {
 
469
    padding-top: 3px;
 
470
    padding-bottom: 3px;
 
471
    vertical-align: middle;
 
472
}
 
473
 
 
474
table.inventory th {
 
475
    background-color: #8cacbb;
 
476
    padding-top: 3px;
 
477
    padding-bottom: 3px;
 
478
    text-align: left;
 
479
}
 
480
 
 
481
table.inventory th.permissions {
 
482
    padding-left: 0.5em;
 
483
}
 
484
 
 
485
.parity0 { background-color: #dee7ec; }
 
486
.parity1 { background-color: #eff8fd; }
 
487
 
 
488
.inventory td.permissions {
 
489
    font-family: monospace;
 
490
    padding-left: 0.5em;
 
491
    width: 9em;
 
492
}
 
493
 
 
494
.inventory td.filename {
 
495
    font-family: monospace;
 
496
}
 
497
 
 
498
.inventory td.size {
 
499
    font-family: monospace;
 
500
    font-size: smaller;
 
501
    width: 5em;
 
502
    line-height: 1em;
 
503
    vertical-align: bottom;
 
504
}
 
505
 
 
506
.inventory td.revision {
 
507
    padding-right: 1em;
 
508
    text-align: left;
 
509
    width: 8em;
 
510
}
 
511
 
 
512
.inventory td.date {
 
513
    padding-right: 1em;
 
514
    width: 11em;
 
515
}
 
516
 
 
517
.inventory td.changes-link {
 
518
    font-size: smaller;
 
519
    width: 6em;
 
520
}
 
521
 
 
522
.inventory td.download-link {
 
523
    font-size: smaller;
 
524
    width: 8em;
 
525
}
 
526
 
 
527
span.folder {
 
528
    font-family: monospace;
 
529
}
 
530
 
 
531
 
 
532
/* ----- file annotation ----- */
 
533
 
 
534
.annotate-path {
 
535
    font-family: monospace;
 
536
}
 
537
 
 
538
.annotate table {
 
539
    border-collapse: collapse;
 
540
    width: 100%;
 
541
    font-size: 66%;
 
542
}
 
543
 
 
544
.annotate td {
 
545
    padding-top: 2px;
 
546
    padding-bottom: 2px;
 
547
    vertical-align: bottom;
 
548
}
 
549
 
 
550
.annotate td.lineno {
 
551
    font-family: monospace;
 
552
    text-align: right;
 
553
    width: 4em;
 
554
    padding-right: 5px;
 
555
    font-weight: bold;
 
556
    border-bottom: 1px solid #8cacbb;
 
557
}
 
558
 
 
559
.annotate td.revno {
 
560
    font-family: monospace;
 
561
    text-align: right;
 
562
    width: 8em;
 
563
    padding-right: 5px;
 
564
    border-right: 1px solid #8cacbb;
 
565
}
 
566
 
 
567
.annotate td.text {
 
568
    font-family: monospace;
 
569
    padding-left: 1em;
 
570
}
 
571
 
 
572
.annotate th {
 
573
    background-color: #8cacbb;
 
574
    padding-top: 3px;
 
575
    padding-bottom: 3px;
 
576
    text-align: left;
 
577
}
 
578
 
 
579
.annotate th.lineno {
 
580
    text-align: right;
 
581
}
 
582
 
 
583
.annotate th.revision {
 
584
    text-align: right;
 
585
    padding-right: 5px;
 
586
}
 
587
 
 
588
.annotate th.text {
 
589
    padding-left: 1em;
 
590
}
 
591
 
 
592
 
 
593
/* ----- top-level browse page ----- */
 
594
 
 
595
.browse-project-name {
 
596
    background-color: #dee7ec;
 
597
    padding-top: 5px;
 
598
    padding-bottom: 5px;
 
599
    margin-left: 1em;
 
600
    margin-right: 1em;
 
601
    padding-left: 1em;
 
602
    width: 90%;
 
603
    font-weight: bold;
 
604
}
 
605
 
 
606
.browse-project-description {
 
607
        padding-top: 1em;
 
608
        padding-bottom: 1em;
 
609
        margin-left: 2em;
 
610
    width: 90%;
 
611
}
 
612
        
 
613
.browse-view {
 
614
        margin-top: 1em;
 
615
        margin-bottom: 1em;
 
616
        margin-left: 2em;
 
617
}
 
618
 
 
619
.browse-view table {
 
620
    border-collapse: collapse;
 
621
    width: 90%;
 
622
    margin-bottom: 2em;
 
623
}
 
624
 
 
625
.browse-view table tr.heading {
 
626
    background-color: #8cacbb;
 
627
    border-bottom: solid 1px #8cacbb;
 
628
    font-size: smaller;
 
629
}
 
630
 
 
631
.browse-view td,.browse-view th {
 
632
    padding: 0.25em 0.5em 0.25em 0.5em;
 
633
}
 
634
 
 
635
.browse-view td.name {
 
636
    width: 20%;
 
637
}
 
638
 
 
639
.browse-view td.last-update {
 
640
    font-size: smaller;
 
641
    width: 20em;
 
642
}
 
643
 
 
644
.browse-view td.url {
 
645
    font-family: monospace;
 
646
    font-size: smaller;
 
647
    padding-left: 3em;
 
648
    padding-top: 0px;
 
649
}
 
650
 
 
651
.browse-view td.feed {
 
652
        width: 16px;
 
653
}