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 | 1cc470db0151443fda2ba06e450d6a6cc82a2d90 (patch) | |
tree | 468c503017fc482f091cb515530f4dfd7d242416 /hyperkitty/static/css | |
parent | e100457ddce07e3546bde6144c7095c56aebc691 (diff) | |
download | hyperkitty-1cc470db0151443fda2ba06e450d6a6cc82a2d90.tar.gz hyperkitty-1cc470db0151443fda2ba06e450d6a6cc82a2d90.tar.xz hyperkitty-1cc470db0151443fda2ba06e450d6a6cc82a2d90.zip |
Add thread navigation buttons
Diffstat (limited to 'hyperkitty/static/css')
-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; |