diff options
author | Aurélien Bompard <aurelien@bompard.org> | 2012-10-10 19:12:07 +0200 |
---|---|---|
committer | Aurélien Bompard <aurelien@bompard.org> | 2012-10-10 19:12:07 +0200 |
commit | fbfe8fc7ea6ba91661027ea51dec290823f9e0bb (patch) | |
tree | 0000af97b2ca88ee0b92f5ac666a9a91682f0e7e /hyperkitty/static/css | |
parent | 7558ef3a1e4f2625075d8a34b25224f7e595c939 (diff) | |
download | hyperkitty-fbfe8fc7ea6ba91661027ea51dec290823f9e0bb.tar.gz hyperkitty-fbfe8fc7ea6ba91661027ea51dec290823f9e0bb.tar.xz hyperkitty-fbfe8fc7ea6ba91661027ea51dec290823f9e0bb.zip |
Improve styling in headers and thread view
Diffstat (limited to 'hyperkitty/static/css')
-rw-r--r-- | hyperkitty/static/css/style.css | 69 | ||||
-rw-r--r-- | hyperkitty/static/css/thread.css | 1 |
2 files changed, 58 insertions, 12 deletions
diff --git a/hyperkitty/static/css/style.css b/hyperkitty/static/css/style.css index fe53a2f..a8c7a16 100644 --- a/hyperkitty/static/css/style.css +++ b/hyperkitty/static/css/style.css @@ -55,24 +55,27 @@ body { /* Add icons to some text */ -.participant { - background: url("../img/participant.png") no-repeat scroll left top; +.participant, .discussion, .saved, .notsaved { padding-left: 20px; + padding-right: 10px; + background: no-repeat scroll left center; +} + +.participant { + background-image: url("../img/participant.png"); + padding-left: 16px; } .discussion { - background: url("../img/discussion.png") no-repeat scroll left top; - padding-left: 20px; + background-image: url("../img/discussion.png"); } .saved { - background: url("../img/saved.png") no-repeat scroll left top; - padding-left: 20px; + background-image: url("../img/saved.png"); } .notsaved { - background: url("../img/notsaved.png") no-repeat scroll left top; - padding-left: 20px; + background-image: url("../img/notsaved.png"); } .gravatar { @@ -209,7 +212,7 @@ body { font-style: italic; } -#recent_activities{ +#recent_activities, #month-view { width: 88%; margin-top: 20px; margin-right: 10px; @@ -234,9 +237,43 @@ body { #archives li { list-style-type: none; } +#archives li.current { + font-weight: bold; +} + +/* Month view header */ + +#month-view header { + margin-bottom: 4em; +} + +#month-view header .list-name { + display: inline; + font-size: 190%; + font-weight: bold; + padding-right: 0.5em; +} + +#month-view header .month-name { + display: inline; + font-size: 190%; + padding-right: 1em; +} + +#month-view header .month-info { + display: inline; + list-style-type: none; +} +#month-view header .month-info li { + display: inline; +} /* Thread list */ +.thread { + margin-bottom: 3em; +} + .thread_title { font-weight: bold; font-size: 125%; @@ -249,12 +286,20 @@ body { } .thread_content { - margin-top:10px; + margin-top: 0.5em; } .thread_info { text-align:right; - padding-right: 50px; +} +.thread_info .btn { + padding-top: 2px; + padding-bottom: 2px; +} + +.thread_content .thread_email { + display: inline-block; + margin-bottom: 5px; } .tags { @@ -265,7 +310,7 @@ body { /* Part containing the body of the mail which can be shown/hidden */ .expander { - width: 665px; + width: 740px; background-image: linear-gradient(bottom, rgb(236,236,236) 11%, rgb(255,255,255) 100%); background-image: -o-linear-gradient(bottom, rgb(236,236,236) 11%, rgb(255,255,255) 100%); background-image: -moz-linear-gradient(bottom, rgb(236,236,236) 11%, rgb(255,255,255) 100%); diff --git a/hyperkitty/static/css/thread.css b/hyperkitty/static/css/thread.css index 43fca6b..cc3e8a4 100644 --- a/hyperkitty/static/css/thread.css +++ b/hyperkitty/static/css/thread.css @@ -153,6 +153,7 @@ header .thread-newer { vertical-align: middle; } + /* Main section with the whole thread */ /* First email of the thread. */ |