diff options
author | thomascube <thomas@roundcube.net> | 2008-02-05 22:56:29 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2008-02-05 22:56:29 +0000 |
commit | a02d486cc8988ad367cd635f4929ce707ec6f542 (patch) | |
tree | de357974b1534b1573773f1c2426d53d879997f6 /skins/default | |
parent | cf1f0f97b23e1d22ee087436edc283da59bfb6ce (diff) |
Applied patch to prevent from purging inbox (#1484449) + CSS hack for Safari
Diffstat (limited to 'skins/default')
-rw-r--r-- | skins/default/common.css | 1 | ||||
-rw-r--r-- | skins/default/mail.css | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/skins/default/common.css b/skins/default/common.css index c7743e84a..308953bf5 100644 --- a/skins/default/common.css +++ b/skins/default/common.css @@ -10,6 +10,7 @@ body body.iframe { margin: 0px; + background-color: #FFF; } body.extwin diff --git a/skins/default/mail.css b/skins/default/mail.css index 3ea7246a1..4e2fd59d5 100644 --- a/skins/default/mail.css +++ b/skins/default/mail.css @@ -331,6 +331,10 @@ body.messagelist width: expression(parseInt(document.getElementById('mailcontframe').clientWidth)+'px'); } +/* safari hack \*/ +html>body*#messagelist[id$="messagelist"]:not([class="none"]) { table-layout: auto; } +/**/ + #messagelist thead tr td { height: 20px; |