~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

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

  • Committer: Toshio Kuratomi
  • Date: 2010-04-18 14:41:23 UTC
  • mto: (464.1.1 mod-wsgi)
  • mto: This revision was merged to the branch mainline in revision 465.
  • Revision ID: toshio@fedoraproject.org-20100418144123-c93a6zbtmxzid12g
Files to anable mod_wsgi

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
 
h1 {
21
 
    color: #708a96;
22
 
        font-weight: normal;
23
 
        font-size: 1.6em;
24
 
    margin-bottom: 1.5em;
25
 
}
26
 
h1 .filename {
27
 
        font-family: monospace;
28
 
}
29
 
 
30
 
.branch-name {
31
 
        color: #47626e;
32
 
}
33
 
 
34
 
 
35
 
/* ----- navigation bar at the top ----- */
36
 
 
37
 
.navbar {
38
 
}
39
 
 
40
 
.navbar table, .bar table {
41
 
        width: 100%;
42
 
}
43
 
 
44
 
.bar {
45
 
    background-color: #dee7ec;
46
 
    border: 1px solid #8cacbb;
47
 
    font-size: smaller;
48
 
    padding-top: 0px;
49
 
    padding-bottom: 0px;
50
 
}
51
 
 
52
 
/* revision navigation buttons (the ones at the top right) */
53
 
.navbuttons {
54
 
    padding: 2px;
55
 
        bottom: 0px;
56
 
        text-align: right;
57
 
        width: auto;
58
 
        border-left: 1px dotted #8cacbb;
59
 
        padding-left: 0.5em;
60
 
        padding-right: 0.5em;
61
 
}
62
 
 
63
 
.navbuttons a {
64
 
    font-weight: normal;
65
 
    margin-left: 2px;
66
 
    margin-right: 2px;
67
 
}
68
 
 
69
 
.navbuttons a:hover {
70
 
    padding: 0;
71
 
    color: blue;
72
 
}
73
 
 
74
 
/* the "changes: 425 / 425" header at the top right */
75
 
.navposition {
76
 
        margin-bottom: 1.5em;
77
 
}
78
 
 
79
 
.navposition table tr td {
80
 
    margin-top: 0px;
81
 
    font-weight: bold;
82
 
    font-size: smaller;
83
 
}
84
 
 
85
 
/* navigation button in the pages (the ones at the top left) */
86
 
.buttons {
87
 
}
88
 
 
89
 
.buttons a {
90
 
    font-weight: normal;
91
 
    color: #000088;
92
 
    font-size: 12pt;
93
 
    padding-left: 10px;
94
 
    padding-right: 7px;
95
 
    border-right: 1px dotted #8cacbb;
96
 
}
97
 
 
98
 
.buttons a:hover,.rbuttons a:hover {
99
 
    font-weight: normal;
100
 
    color: blue;
101
 
}
102
 
 
103
 
.rbuttons a {
104
 
    font-weight: normal;
105
 
    color: #000088;
106
 
    font-size: 12pt;
107
 
    padding-right: 10px;
108
 
    padding-left: 7px;
109
 
    border-left: 1px dotted #8cacbb;
110
 
    text-align: right;
111
 
    width: auto;
112
 
}
113
 
 
114
 
/* ----- revision display in various places ----- */
115
 
 
116
 
.revision .revno {
117
 
        font-weight: bold;
118
 
}
119
 
 
120
 
.revision .revid {
121
 
    font-family: monospace;
122
 
    font-size: smaller;
123
 
    padding-left: 1em;
124
 
}
125
 
 
126
 
.revision .log {
127
 
    font-size: smaller;
128
 
}
129
 
 
130
 
 
131
 
/* ----- list of merge points for a revision ----- */
132
 
 
133
 
.info-entry {
134
 
    font-size: smaller;
135
 
    margin-bottom: 2em;
136
 
    padding: 0px;
137
 
    background-color: #f4f5f8;
138
 
    border: 1px solid #8cacbb;
139
 
    width: 60%;
140
 
}
141
 
 
142
 
.info-entry th {
143
 
    background-color: #dee7ec;
144
 
    font-weight: normal;
145
 
    color: black;
146
 
    text-align: right;
147
 
    vertical-align: top;
148
 
 
149
 
    padding-left: 0.5em;
150
 
        padding-right: 0.5em;
151
 
        padding-top: 2px;
152
 
        padding-bottom: 2px;
153
 
}
154
 
 
155
 
.info-entry td {
156
 
    font-weight: normal;
157
 
        padding-left: 0.5em;
158
 
        padding-top: 2px;
159
 
        padding-bottom: 2px;
160
 
}
161
 
 
162
 
 
163
 
/* ----- changelog page ----- */
164
 
 
165
 
.hide-all {
166
 
        font-size: smaller;
167
 
}
168
 
 
169
 
/* secret css-jutsu to make hidden margins vanish on a table */
170
 
.log-entries table {
171
 
        border-collapse: collapse;
172
 
    width: 100%;
173
 
}
174
 
 
175
 
.log-entries .revision-header {
176
 
    background-color: #dee7ec;
177
 
    padding: 3px;
178
 
    width: 80%;
179
 
        margin-top: 1em;
180
 
        margin-left: 1em;
181
 
}
182
 
 
183
 
.log-entries .revision-header td.expand-button {
184
 
    width: 20px;
185
 
}
186
 
 
187
 
.log-entries .revision-header .revision-number {
188
 
        width: 6em;
189
 
        padding-left: 0.5em;
190
 
}
191
 
 
192
 
.log-entries .revision-header .inventory-link {
193
 
        font-size: smaller;
194
 
        vertical-align: middle;
195
 
        width: 4em;
196
 
        text-align: right;
197
 
        padding-right: 0.5em;
198
 
}
199
 
 
200
 
.log-entries .revision-details-block {
201
 
        width: 80%;
202
 
        border: none;
203
 
        margin-left: 8em;
204
 
        margin-bottom: 1.5em;
205
 
}
206
 
 
207
 
.log-entries .revision-details table {
208
 
        font-size: smaller;
209
 
        width: 100%;
210
 
}
211
 
 
212
 
.log-entries .revision-details th {
213
 
        width: 8em;
214
 
        text-align: right;
215
 
        padding-right: 0.5em;
216
 
        vertical-align: top;
217
 
}
218
 
 
219
 
.log-entries .revision-details td.date {
220
 
/*      font-family: monospace; */
221
 
}
222
 
 
223
 
.log-entries .revision-details th.files {
224
 
        padding-top: 1em;
225
 
}
226
 
.log-entries .revision-details td.files {
227
 
        font-family: monospace;
228
 
        padding-top: 1em;
229
 
}
230
 
 
231
 
.log-entries .revision-details th.description {
232
 
        padding-top: 1em;
233
 
}
234
 
.log-entries .revision-details td.description {
235
 
        font-family: monospace;
236
 
        padding-top: 1em;
237
 
}
238
 
 
239
 
/* default state: hide all */
240
 
.show-button { display: none; }
241
 
.hidden-details { display: none; }
242
 
.hide-all#hide-all { display: none; }
243
 
 
244
 
 
245
 
/* ----- revision page ----- */
246
 
 
247
 
.revision-info {
248
 
    border: none;
249
 
    font-size: smaller;
250
 
    margin-bottom: 1em;
251
 
    padding: 0;
252
 
    background-color: #f4f5f8;
253
 
    border: 1px solid #8cacbb;
254
 
    width: 80%;
255
 
}
256
 
 
257
 
/* secret css-jutsu to make hidden margins vanish on a table */
258
 
.revision-info table {
259
 
        border-collapse: collapse;
260
 
    width: 100%;
261
 
}
262
 
 
263
 
.revision-info th {
264
 
        background-color: #dee7ec;
265
 
    color: black;
266
 
        font-weight: normal;
267
 
        text-align: right;
268
 
        vertical-align: top;
269
 
        
270
 
        padding-left: 0.5em;
271
 
        padding-right: 0.5em;
272
 
        padding-top: 2px;
273
 
        padding-bottom: 2px;
274
 
}
275
 
 
276
 
.revision-info td {
277
 
        font-weight: normal;
278
 
        padding-left: 0.5em;
279
 
        padding-top: 2px;
280
 
        padding-bottom: 2px;
281
 
}
282
 
 
283
 
.revision-info table td.date {
284
 
        font-family: monospace;
285
 
}
286
 
 
287
 
.revision-info table td.description {
288
 
        font-family: monospace;
289
 
}
290
 
 
291
 
.revision-info table td.files {
292
 
        font-family: monospace;
293
 
}
294
 
 
295
 
.revision-info table tr.divider {
296
 
    border-top: 1px solid #8cacbb;
297
 
}
298
 
 
299
 
 
300
 
/* ----- overly complex diff display ----- */
301
 
 
302
 
.diff {
303
 
    margin-bottom: 1em;
304
 
    padding-top: 10px;
305
 
    margin-top: 20px;
306
 
    width: 100%;
307
 
    background-color: #fcfcfc;
308
 
    font-family: monospace;
309
 
}
310
 
 
311
 
.diff-block,.diff-chunk {
312
 
        border-collapse: collapse;
313
 
    width: 100%;
314
 
}
315
 
 
316
 
.diff-block th.filename {
317
 
        font-family: monospace;
318
 
        font-weight: normal;
319
 
        font-size: smaller;
320
 
        padding-left: 1em;
321
 
        padding-top: 1em;
322
 
        padding-bottom: 1em;
323
 
        text-align: left;
324
 
        background-color: #dee7ec;
325
 
}
326
 
 
327
 
.diff-chunk {
328
 
    font-size: 66%;
329
 
    margin-top: 0px;
330
 
        margin-bottom: 1em;
331
 
}
332
 
 
333
 
.diff-chunk th.lineno {
334
 
        font-weight: bold;
335
 
    border-bottom: 1px solid #8cacbb;
336
 
    border-top: 1px solid #dee7ec;
337
 
    border-left: 1px solid #dee7ec;
338
 
}
339
 
.diff-chunk .insert {
340
 
        background-color: #b0efb0;
341
 
}
342
 
.diff-chunk .delete {
343
 
        background-color: #ffa0a0;
344
 
}
345
 
.diff-chunk td.text {
346
 
        padding-left: 1em;
347
 
}
348
 
 
349
 
.diff .lineno {
350
 
        color: purple;
351
 
        background-color: #dee7ec; 
352
 
        width: 4em;
353
 
        text-align: right;
354
 
        padding-right: 3px;
355
 
        border-bottom: 1px solid #8cacbb;
356
 
}
357
 
.diff .info {
358
 
        color: blue;
359
 
        background-color: #dee7ec;
360
 
        margin-top: 15px;
361
 
}
362
 
 
363
 
 
364
 
/* ----- file inventory ----- */
365
 
 
366
 
table.inventory {
367
 
        border-collapse: collapse;
368
 
    width: 80%;
369
 
    font-size: smaller;
370
 
    margin-top: 1em;
371
 
    border: 1px solid #8cacbb;
372
 
}
373
 
 
374
 
table.inventory td {
375
 
        padding-top: 3px;
376
 
        padding-bottom: 3px;
377
 
        vertical-align: middle;
378
 
}
379
 
 
380
 
table.inventory th {
381
 
    background-color: #8cacbb;
382
 
    padding-top: 3px;
383
 
    padding-bottom: 3px;
384
 
        text-align: left;
385
 
}
386
 
table.inventory th.permissions {
387
 
        padding-left: 0.5em;
388
 
}
389
 
 
390
 
.parity0 { background-color: #dee7ec; }
391
 
.parity1 { background-color: #eff8fd; }
392
 
 
393
 
.inventory td.permissions {
394
 
    font-family: monospace;
395
 
    width: 10em;
396
 
        padding-left: 0.5em;
397
 
}
398
 
 
399
 
.inventory td.filename {
400
 
    font-family: monospace;
401
 
}
402
 
 
403
 
.inventory td.revision {
404
 
    width: 8em;
405
 
}
406
 
 
407
 
.inventory td.changes-link {
408
 
    width: 6em;
409
 
}
410
 
 
411
 
span.folder {
412
 
    font-family: monospace;
413
 
}
414
 
 
415
 
 
416
 
/* ----- file annotation ----- */
417
 
 
418
 
.annotate table {
419
 
        border-collapse: collapse;
420
 
    width: 100%;
421
 
    font-size: 66%;
422
 
}
423
 
 
424
 
.annotate td {
425
 
        padding-top: 2px;
426
 
        padding-bottom: 2px;
427
 
        vertical-align: bottom;
428
 
}
429
 
 
430
 
.annotate td.lineno {
431
 
        font-family: monospace;
432
 
        text-align: right;
433
 
        width: 4em;
434
 
        padding-right: 5px;
435
 
        font-weight: bold;
436
 
        border-bottom: 1px solid #8cacbb;
437
 
}
438
 
 
439
 
.annotate td.revno {
440
 
        font-family: monospace;
441
 
        text-align: right;
442
 
        width: 8em;
443
 
        padding-right: 5px;
444
 
        border-right: 1px solid #8cacbb;
445
 
}
446
 
 
447
 
.annotate td.text {
448
 
    font-family: monospace;
449
 
    padding-left: 1em;
450
 
}
451
 
 
452
 
.annotate th {
453
 
    background-color: #8cacbb;
454
 
    padding-top: 3px;
455
 
    padding-bottom: 3px;
456
 
        text-align: left;
457
 
}
458
 
 
459
 
.annotate th.lineno {
460
 
    text-align: right;
461
 
}
462
 
 
463
 
.annotate th.revision {
464
 
    text-align: right;
465
 
    padding-right: 5px;
466
 
}
467
 
 
468
 
.annotate th.text {
469
 
        padding-left: 1em;
470
 
}
471
 
 
472
 
.annotate td.changed {
473
 
        xxborder-top: 1px solid #8cacbb;
474
 
}
475
 
 
476