From 620af3602be20f1184d477715add032d5f5f14f9 Mon Sep 17 00:00:00 2001 From: Aurélien Bompard Date: Wed, 14 Nov 2012 17:35:01 +0100 Subject: 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. --- hyperkitty/static/css/style.css | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'hyperkitty/static/css') 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 { -- cgit