diff options
author | Aurélien Bompard <aurelien@bompard.org> | 2012-11-14 17:35:01 +0100 |
---|---|---|
committer | Aurélien Bompard <aurelien@bompard.org> | 2012-11-14 17:35:01 +0100 |
commit | 620af3602be20f1184d477715add032d5f5f14f9 (patch) | |
tree | ff0c385cf2e0b86064ae3c435602c0939f9589d1 /hyperkitty/static | |
parent | b6b540c44917744098805e5f70207289a3755eac (diff) | |
download | hyperkitty-620af3602be20f1184d477715add032d5f5f14f9.tar.gz hyperkitty-620af3602be20f1184d477715add032d5f5f14f9.tar.xz hyperkitty-620af3602be20f1184d477715add032d5f5f14f9.zip |
Adapt to MySQL support splitting out the timezone offset
Since the sender's timezone is in a separate column, we can now display
the message date in Django's timezone and in the sender's timezone.
Future improvement : ask the user for his/her preferred timezone and store
it in his/her profile. Then use that to display the dates, instead of
Django's server-wide setting.
Diffstat (limited to 'hyperkitty/static')
-rw-r--r-- | hyperkitty/static/css/style.css | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/hyperkitty/static/css/style.css b/hyperkitty/static/css/style.css index 7e5a7f6..87a5946 100644 --- a/hyperkitty/static/css/style.css +++ b/hyperkitty/static/css/style.css @@ -161,10 +161,6 @@ ul.nav.auth { width: 70%; } -.email_date .date { - font-weight: bold; -} - #top_right { position: absolute; right: 20px; @@ -611,8 +607,7 @@ ul.attachments-list li { .email .email_date { font-size: 90%; } -.first_email .email_date span { - display: block; +.first_email .email_date { text-align: right; } .email_date .date { @@ -621,6 +616,8 @@ ul.attachments-list li { .email_date .time { color: rgb(167, 169, 172); margin-left: 0.5em; + border-bottom: 1px dashed rgb(167, 169, 172); + cursor: help; } .add_comment { |