~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

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

  • Committer: Robey Pointer
  • Date: 2006-12-11 19:23:51 UTC
  • Revision ID: robey@lag.net-20061211192351-vccvnat6o01fxnl3
add revision page, put some of the config in the config file

Show diffs side-by-side

added added

removed removed

Lines of Context:
162
162
/* secret css-jutsu to make hidden margins vanish on a table */
163
163
.log-entries table {
164
164
        border-collapse: collapse;
 
165
    width: 99.9%;
165
166
}
166
167
 
167
168
/* left and right cols are fixed size */
211
212
    text-align: left;
212
213
}
213
214
 
 
215
 
 
216
/* ----- revision page ----- */
 
217
 
 
218
.info-entries {
 
219
    border: none;
 
220
    font-size: smaller;
 
221
    margin-bottom: 1em;
 
222
    padding: 0;
 
223
    background-color: #f4f5f8;
 
224
    border: 1px solid #8cacbb;
 
225
    width: 80%;
 
226
}
 
227
 
 
228
/* secret css-jutsu to make hidden margins vanish on a table */
 
229
.info-entries table {
 
230
        border-collapse: collapse;
 
231
    width: 100%;
 
232
}
 
233
 
 
234
.info-entries th {
 
235
        background-color: #dee7ec;
 
236
    color: black;
 
237
        font-weight: normal;
 
238
        text-align: right;
 
239
        vertical-align: top;
 
240
        
 
241
        padding-left: 0.5em;
 
242
        padding-right: 0.5em;
 
243
        padding-top: 2px;
 
244
        padding-bottom: 2px;
 
245
}
 
246
 
 
247
.info-entries td {
 
248
        font-weight: normal;
 
249
        padding-left: 0.5em;
 
250
        padding-top: 2px;
 
251
        padding-bottom: 2px;
 
252
}
 
253
 
 
254
.info-entries table .date {
 
255
        font-family: monospace;
 
256
}
 
257
 
 
258
.info-entries table td.description {
 
259
        font-family: monospace;
 
260
}
 
261
 
 
262
.info-entries table td.files {
 
263
        font-family: monospace;
 
264
}
 
265
 
 
266
.info-entries table tr.divider {
 
267
    border-top: 1px solid #8cacbb;
 
268
}
 
269
 
 
270
.diff {
 
271
    font-size: 66%;
 
272
    margin-bottom: 1em;
 
273
    xxxborder-top: 1px solid #8cacbb;
 
274
    padding-top: 10px;
 
275
    margin-top: 20px;
 
276
    width: 100%;
 
277
    background-color: #fcfcfc;
 
278
    font-family: monospace;
 
279
}
 
280
 
 
281
.diff .old-file { color: red; }
 
282
.diff .new-file { color: green; }
 
283
.diff .lineno { color: purple; background-color: #dee7ec; }
 
284
.diff .info {
 
285
        color: blue;
 
286
        background-color: #dee7ec;
 
287
        margin-top: 15px;
 
288
}