diff options
author | thomascube <thomas@roundcube.net> | 2012-01-15 17:26:01 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2012-01-15 17:26:01 +0000 |
commit | e493c842a5d5915e95a22df9bc824ef786915cca (patch) | |
tree | 03104f6f7a6bcdd6ef6a210eac7921947b7cebe0 | |
parent | 1224463db79a3a0eacbdf123ad01d5b1d2ca9098 (diff) |
Make sure message popups show at least 2sec; adjust message list column sizes
-rw-r--r-- | skins/larry/mail.css | 4 | ||||
-rw-r--r-- | skins/larry/ui.js | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/skins/larry/mail.css b/skins/larry/mail.css index ac909cc19..b74a2f09d 100644 --- a/skins/larry/mail.css +++ b/skins/larry/mail.css @@ -343,11 +343,11 @@ a.iconbutton.threadmode.selected { #messagelist tr td.to, #messagelist tr td.cc, #messagelist tr td.replyto { - width: 180px; + width: 200px; } #messagelist tr td.date { - width: 118px; + width: 125px; } #messagelist tr.message { diff --git a/skins/larry/ui.js b/skins/larry/ui.js index 6af37c6ce..f4d44af48 100644 --- a/skins/larry/ui.js +++ b/skins/larry/ui.js @@ -234,8 +234,8 @@ function rcube_mail_ui() width: 420, minHeight: 90 }).show(); - - window.setTimeout(function(){ me.messagedialog.dialog('close'); }, p.timeout / 2); + + window.setTimeout(function(){ me.messagedialog.dialog('close'); }, Math.max(2000, p.timeout / 2)); } } |