~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

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

  • Committer: John Arbash Meinel
  • Date: 2011-03-16 14:43:36 UTC
  • mfrom: (411.4.8 page_loading)
  • Revision ID: john@arbash-meinel.com-20110316144336-5or6keig1cbagois
Merge the page-loading change.

When /changes page is loaded, don't walk the whole ancestry during 'get_revids_from'.
Instead, only walk enough history to generate the actual page, plus a little bit more
to get the link for the 'next' page.

Show diffs side-by-side

added added

removed removed

Lines of Context:
152
152
    float: left;
153
153
    display: inline;
154
154
    height: 22px;
155
 
    line-height: 22px;
156
155
    padding: 0 0 0 18px;
157
156
    background: transparent url(../images/ico_description.gif) no-repeat center left;
158
157
    }
164
163
    }
165
164
 
166
165
#branch-info {
 
166
    width: 900px;
167
167
    padding: 10px;
168
168
    margin: 0 0 10px 0;
169
169
    color: #666;
343
343
#footer {
344
344
    font-size: 77%;
345
345
    }
346
 
 
347
 
    
348
 
/* ====================
349
 
   Global notifications
350
 
*/
351
 
/* Move the content down so the notification banner doesn't hide any content. */
352
 
body.global-notification-visible {
353
 
    padding-top: 40px;
354
 
    }
355
 
body.global-notification-visible .login-logout {
356
 
    top: 45px;
357
 
    }
358
 
.notification-private {
359
 
    background-image: url(/static/images/notification-private.png); /* sprite-ref: icon-sprites */
360
 
    background-repeat: no-repeat;
361
 
    }
362
 
.global-notification {
363
 
    position: fixed;
364
 
    z-index: 10;
365
 
    top: 0;
366
 
    left: 0;
367
 
    right: 0;
368
 
    padding: 8px 20px;
369
 
    /* Define colour for browsers that don't support transparency */
370
 
    background-color: #8d1f1f;
371
 
    /* Set transparent background for browsers that support it */
372
 
    background-color: rgba(125,0,0,0.9);
373
 
    color: #fff;
374
 
    text-shadow: 0 -1px 0 #631616;
375
 
    font-size: 14px;
376
 
    line-height: 21px;
377
 
    font-weight: bold;
378
 
    -moz-box-shadow: 0 0 5px #333;
379
 
    -webkit-box-shadow: 0 0 5px #333;
380
 
    box-shadow: 0 0 5px #333;
381
 
    }
382
 
.global-notification .sprite.notification-private {
383
 
    float: left;
384
 
    display: inline-block;
385
 
    height: 21px;
386
 
    width: 20px;
387
 
    margin-right: 10px;
388
 
    padding: 0;
389
 
    }
390
 
.global-notification-close, .global-notification-close:active,
391
 
.global-notification-close:visited {
392
 
    color: #e47a7a;
393
 
    }
394
 
.global-notification-close {
395
 
    display: block;
396
 
    position: absolute;
397
 
    top: 11px;
398
 
    right: 20px;
399
 
    font-size: 12px;
400
 
    font-weight: normal;
401
 
    line-height: 14px;
402
 
    }
403
 
.global-notification-close .sprite.notification-close {
404
 
    float: right;
405
 
    display: block;
406
 
    height: 9px;
407
 
    width: 8px;
408
 
    margin: 3px 0 0 7px;
409
 
    padding: 0;
410
 
    }