diff options
| author | Aurélien Bompard <aurelien@bompard.org> | 2012-10-09 18:04:40 +0200 |
|---|---|---|
| committer | Aurélien Bompard <aurelien@bompard.org> | 2012-10-09 18:04:40 +0200 |
| commit | ae5e1acaf2780e4c8aa2570c59fc15f835688aff (patch) | |
| tree | 468c503017fc482f091cb515530f4dfd7d242416 /hyperkitty/static | |
| parent | 03dd14dc68e1dbdf0865151d09b7c846d8814b22 (diff) | |
Add thread navigation buttons
Diffstat (limited to 'hyperkitty/static')
| -rw-r--r-- | hyperkitty/static/css/thread.css | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/hyperkitty/static/css/thread.css b/hyperkitty/static/css/thread.css index 90d2add..e600074 100644 --- a/hyperkitty/static/css/thread.css +++ b/hyperkitty/static/css/thread.css @@ -2,7 +2,7 @@ header { /*background-color: #f6f6f6;*/ /*border-bottom: 1px solid #b3b3b3;*/ - margin-bottom: 3em; + margin-bottom: 5em; padding: 1em 0; } @@ -12,6 +12,25 @@ h1 { line-height: 26px; } +header .thread-older, +header .thread-newer { + display: block; + padding-top: 38px; + width: 160px; + overflow: hidden; + background-repeat: no-repeat; + background-position: top center; + text-align: center; + color: #aaaaaa; +} +header .thread-older { + float: right; + background-image: url('../img/button_older.png'); +} +header .thread-newer { + float: left; + background-image: url('../img/button_newer.png'); +} #thread_nav{ margin:auto; |
