diff options
author | thomascube <thomas@roundcube.net> | 2008-11-28 18:59:23 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2008-11-28 18:59:23 +0000 |
commit | ba1c48f2bdb1d8946b5553b687ca4807c3014ae8 (patch) | |
tree | 6882cb7ea30250113bad24d27f485c6289daeb24 /skins | |
parent | 7342d7ef8c277c32bb161eeb585d98099f2b04fe (diff) |
Spread settings box over the whole width of the windows + make fieldsets float
Diffstat (limited to 'skins')
-rw-r--r-- | skins/default/settings.css | 13 | ||||
-rw-r--r-- | skins/default/templates/settings.html | 3 |
2 files changed, 13 insertions, 3 deletions
diff --git a/skins/default/settings.css b/skins/default/settings.css index 2a90c50a6..ccaa05659 100644 --- a/skins/default/settings.css +++ b/skins/default/settings.css @@ -50,17 +50,26 @@ span.tablink-selected a top: 95px; left: 20px; bottom: 60px; - width: 640px; + right: 20px; overflow: auto; border: 1px solid #999999; /* css hack for IE */ height: expression((parseInt(document.documentElement.clientHeight)-155)+'px'); + width: expression((parseInt(document.documentElement.clientwidth)-40)+'px'); +} + +#userprefs-box fieldset +{ + float: left; + margin-right: 14px; + width: 520px; } #userprefs-box table td.title { color: #666666; padding-right: 10px; + white-space: nowrap; } #userprefs-box table tr.advanced @@ -271,6 +280,6 @@ div.advswitch text-align: right; position: absolute; bottom: 35px; - left: 200px; + right: 20px; width: 460px; } diff --git a/skins/default/templates/settings.html b/skins/default/templates/settings.html index be38530d5..c24a67b6e 100644 --- a/skins/default/templates/settings.html +++ b/skins/default/templates/settings.html @@ -15,8 +15,9 @@ <div id="userprefs-box"> <div id="userprefs-title"><roundcube:label name="userpreferences" /></div> -<div style="padding:15px"> +<div style="padding:15px 0 15px 15px"> <roundcube:object name="userprefs"> +<div style="clear:left"></div> </div> </div> |