diff options
author | thomascube <thomas@roundcube.net> | 2005-10-16 19:14:00 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2005-10-16 19:14:00 +0000 |
commit | cd900dd71f56698b2c8ffedeb1af342e79faf0db (patch) | |
tree | 910d16436eb8d0979cac6849a631956b140ad90d /skins/default | |
parent | 9fee0ed9af6bb1daa3af2ff7290f5589040b4821 (diff) |
Improved folder display; added Portuguese and Catalan translation
Diffstat (limited to 'skins/default')
-rw-r--r-- | skins/default/mail.css | 15 | ||||
-rw-r--r-- | skins/default/templates/mail.html | 3 |
2 files changed, 14 insertions, 4 deletions
diff --git a/skins/default/mail.css b/skins/default/mail.css index 5ae46f151..5ebad537d 100644 --- a/skins/default/mail.css +++ b/skins/default/mail.css @@ -174,17 +174,26 @@ font-weight: bold; } -#mailboxlist +#mailboxlist-container { position: absolute; top: 100px; left: 20px; width: 160px; + bottom: 80px; + border: 1px solid #CCCCCC; + background-color: #F9F9F9; + overflow: auto; + /* css hack for IE */ + height: expression((parseInt(document.documentElement.clientHeight)-180)+'px'); +} + +#mailboxlist +{ + width: 100%; height: auto; margin: 0px; padding: 0px; - border: 1px solid #CCCCCC; - background-color: #F9F9F9; list-style-image: none; list-style-type: none; overflow: hidden; diff --git a/skins/default/templates/mail.html b/skins/default/templates/mail.html index 2c47cb67f..631f46d59 100644 --- a/skins/default/templates/mail.html +++ b/skins/default/templates/mail.html @@ -24,7 +24,8 @@ </div> <div id="mailboxlist-header"><roundcube:label name="mailboxlist" /></div> -<roundcube:object name="mailboxlist" id="mailboxlist" /> +<div id="mailboxlist-container"><roundcube:object name="mailboxlist" id="mailboxlist" maxlength="16" /></div> + <div id="mailcontframe"> <roundcube:object name="messages" |