summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2012-01-15 17:26:01 +0000
committerthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2012-01-15 17:26:01 +0000
commitbca3946ee720cbd5c2f4cccbcda07d4fef3a1e01 (patch)
tree50525e9cd03ff091d10207d32aa237964c49ef6f
parent770d15e80e476f9cecc02232e825473b9b25242c (diff)
Make sure message popups show at least 2sec; adjust message list column sizes
git-svn-id: https://svn.roundcube.net/trunk@5775 208e9e7b-5314-0410-a742-e7e81cd9613c
-rw-r--r--roundcubemail/skins/larry/mail.css4
-rw-r--r--roundcubemail/skins/larry/ui.js4
2 files changed, 4 insertions, 4 deletions
diff --git a/roundcubemail/skins/larry/mail.css b/roundcubemail/skins/larry/mail.css
index ac909cc19..b74a2f09d 100644
--- a/roundcubemail/skins/larry/mail.css
+++ b/roundcubemail/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/roundcubemail/skins/larry/ui.js b/roundcubemail/skins/larry/ui.js
index 6af37c6ce..f4d44af48 100644
--- a/roundcubemail/skins/larry/ui.js
+++ b/roundcubemail/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));
}
}