diff options
author | thomascube <thomas@roundcube.net> | 2008-09-18 20:57:26 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2008-09-18 20:57:26 +0000 |
commit | 5d480c14c7c3f7390cdce6cfe2b814a93130a866 (patch) | |
tree | a922d463fb52f5a40cc7f01a450024e611f50200 | |
parent | ae579cee860c90183b3968d9658ffe0b3ba29dd5 (diff) |
Place save button below the scrollable prefs box
-rw-r--r-- | skins/default/settings.css | 8 | ||||
-rw-r--r-- | skins/default/templates/settings.html | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/skins/default/settings.css b/skins/default/settings.css index a5671387f..8c229a15c 100644 --- a/skins/default/settings.css +++ b/skins/default/settings.css @@ -49,12 +49,12 @@ span.tablink-selected a position: absolute; top: 95px; left: 20px; - bottom: 30px; - width: 600px; + bottom: 60px; + width: 640px; overflow: auto; - border: 1px solid #999999; + border: 1px solid #999999; /* css hack for IE */ - height: expression((parseInt(document.documentElement.clientHeight)-125)+'px'); + height: expression((parseInt(document.documentElement.clientHeight)-155)+'px'); } #userprefs-box table td.title diff --git a/skins/default/templates/settings.html b/skins/default/templates/settings.html index 490d35de4..2b69f423d 100644 --- a/skins/default/templates/settings.html +++ b/skins/default/templates/settings.html @@ -16,11 +16,11 @@ <div style="padding:15px"> <roundcube:object name="userprefs"> - -<p><roundcube:button command="save" type="input" class="button mainaction" label="save" /></p> </div> </div> +<p id="listbuttons"><roundcube:button command="save" type="input" class="button mainaction" label="save" /></p> + <roundcube:include file="/includes/settingscripts.html" /> </body> |