diff options
-rw-r--r-- | skins/larry/images/ajaxloader.gif | bin | 1849 -> 1849 bytes | |||
-rw-r--r-- | skins/larry/images/buttons.png | bin | 0 -> 10774 bytes | |||
-rw-r--r-- | skins/larry/images/taskbar.png | bin | 6383 -> 0 bytes | |||
-rw-r--r-- | skins/larry/includes/header.html | 6 | ||||
-rw-r--r-- | skins/larry/includes/settingstabs.html | 10 | ||||
-rw-r--r-- | skins/larry/mail.css | 91 | ||||
-rw-r--r-- | skins/larry/settings.css | 31 | ||||
-rw-r--r-- | skins/larry/styles.css | 383 | ||||
-rw-r--r-- | skins/larry/templates/mail.html | 76 | ||||
-rw-r--r-- | skins/larry/templates/settings.html | 29 | ||||
-rw-r--r-- | skins/larry/templates/settingsedit.html | 22 |
11 files changed, 606 insertions, 42 deletions
diff --git a/skins/larry/images/ajaxloader.gif b/skins/larry/images/ajaxloader.gif Binary files differindex e90dbd8ea..ea0b34621 100644 --- a/skins/larry/images/ajaxloader.gif +++ b/skins/larry/images/ajaxloader.gif diff --git a/skins/larry/images/buttons.png b/skins/larry/images/buttons.png Binary files differnew file mode 100644 index 000000000..2ef4a9fb0 --- /dev/null +++ b/skins/larry/images/buttons.png diff --git a/skins/larry/images/taskbar.png b/skins/larry/images/taskbar.png Binary files differdeleted file mode 100644 index ed90da7dd..000000000 --- a/skins/larry/images/taskbar.png +++ /dev/null diff --git a/skins/larry/includes/header.html b/skins/larry/includes/header.html index 93966c495..9295b7e9d 100644 --- a/skins/larry/includes/header.html +++ b/skins/larry/includes/header.html @@ -13,10 +13,10 @@ <div id="topnav"> <div id="taskbar" class="topright"> - <roundcube:button command="mail" label="mail" class="button-mail" classSel="button-mail button-selected" /> - <roundcube:button command="addressbook" label="addressbook" class="button-addressbook" classSel="button-addressbook button-selected" /> + <roundcube:button command="mail" label="mail" class="button-mail" classSel="button-mail button-selected" innerClass="button-inner" /> + <roundcube:button command="addressbook" label="addressbook" class="button-addressbook" classSel="button-addressbook button-selected" innerClass="button-inner" /> <roundcube:container name="taskbar" id="taskbar" /> - <roundcube:button command="settings" label="settings" class="button-settings" classSel="button-settings button-selected" /> + <roundcube:button command="settings" label="settings" class="button-settings" classSel="button-settings button-selected" innerClass="button-inner" /> </div> <roundcube:object name="logo" src="/images/roundcube_logo.png" id="toplogo" border="0" alt="Logo" /> </div> diff --git a/skins/larry/includes/settingstabs.html b/skins/larry/includes/settingstabs.html new file mode 100644 index 000000000..6662c189f --- /dev/null +++ b/skins/larry/includes/settingstabs.html @@ -0,0 +1,10 @@ +<div id="settings-sections" class="uibox listbox"> +<h2 class="boxtitle"><roundcube:label name="settings" /></h2> +<div id="settings-tabs" class="scroller"> + <span id="settingstabdefault" class="listitem preferences"><roundcube:button command="preferences" type="link" label="preferences" title="editpreferences" /></span> + <span id="settingstabfolders" class="listitem folders"><roundcube:button command="folders" type="link" label="folders" title="managefolders" /></span> + <span id="settingstabidentities" class="listitem identities"><roundcube:button command="identities" type="link" label="identities" title="manageidentities" /></span> + <span id="settingstababout" class="listitem about"><roundcube:button command="about" type="link" label="about" title="about" /></span> + <roundcube:container name="tabs" id="settings-tabs" /> +</div> +</div> diff --git a/skins/larry/mail.css b/skins/larry/mail.css index 2acf79270..248aaba37 100644 --- a/skins/larry/mail.css +++ b/skins/larry/mail.css @@ -10,4 +10,93 @@ * See http://creativecommons.org/licenses/by-sa/3.0/ for details. * * $Id$ - */
\ No newline at end of file + */ + +#mailview-left { + position: absolute; + top: 0; + left: 0; + width: 240px; + bottom: 0; +} + +#mailview-right { + position: absolute; + top: 0; + left: 250px; + right: 0; + bottom: 0; +} + +#mailview-top { + position: absolute; + top: 0; + left: 0; + width: 100%; + bottom: 26px; +} + +#mailview-bottom { + position: absolute; + left: 0; + bottom: 0; + width: 100%; + height: 26px; +} + +#mailboxcontainer, +#messagelistcontainer { + position: absolute; + top: 42px; + left: 0; + width: 100%; + bottom: 0; +} + +#messagelistcontainer { + bottom: 32px; + overflow: auto; +} + +#messagelistfooter { + position: absolute; + bottom: 0; + left: 0; + right: 0; + height: 26px; + padding: 2px; +} + +#messagelistfooter #countcontrols { + display: inline-block; +} + +#mailboxlist li.mailbox { + background-position: 8px 2px; + background-repeat: no-repeat; +} + +#mailboxlist li.virtual > a { + color: #aaa; +} + +#mailboxlist li.mailbox a { + padding-left: 36px; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; +} + +#mailboxlist li.mailbox ul { + padding: 0; + border-top: 1px solid #bbd3da; +} + +#mailboxlist li.mailbox ul li { + padding-left: 30px; +} + +#mailboxlist li.mailbox ul li:last-child { + border-bottom: 0; +} + diff --git a/skins/larry/settings.css b/skins/larry/settings.css index 736c3d4be..77b2ac3d8 100644 --- a/skins/larry/settings.css +++ b/skins/larry/settings.css @@ -10,4 +10,33 @@ * See http://creativecommons.org/licenses/by-sa/3.0/ for details. * * $Id$ - */
\ No newline at end of file + */ + +#settings-sections { + position: absolute; + top: 0; + left: 0; + width: 240px; + bottom: 0; +} + +#sectionslist { + position: absolute; + top: 0; + left: 250px; + width: 240px; + bottom: 0; +} + +#preferences-box { + position: absolute; + top: 0; + left: 500px; + right: 0; + bottom: 0; +} + +#preferences-frame { + border-radius: 4px 4px 0 0; +} + diff --git a/skins/larry/styles.css b/skins/larry/styles.css index 55e174348..643969eed 100644 --- a/skins/larry/styles.css +++ b/skins/larry/styles.css @@ -20,16 +20,28 @@ body { margin: 0; } +a { + color: #0069a6; +} + +a:visited { + color: #0186ba; +} + +img { + border: 0; +} + input[type="text"], input[type="password"], textarea { padding: 4px; - border: 1px solid #666; + border: 1px solid #b2b2b2; border-radius: 4px; - box-shadow: inset 0 0 2px 1px rgba(0,0,0, 0.2); - -moz-box-shadow: inset 0 0 2px 1px rgba(0,0,0, 0.2); - -webkit-box-shadow: inset 0 0 2px 1px rgba(0,0,0, 0.2); - -o-box-shadow: inset 0 0 2px 1px rgba(0,0,0, 0.2); + box-shadow: inset 0 0 2px 1px rgba(0,0,0, 0.1); + -moz-box-shadow: inset 0 0 2px 1px rgba(0,0,0, 0.1); + -webkit-box-shadow: inset 0 0 2px 1px rgba(0,0,0, 0.1); + -o-box-shadow: inset 0 0 2px 1px rgba(0,0,0, 0.1); } input[type="text"]:focus, @@ -48,6 +60,9 @@ textarea.placeholder { color: #aaa; } + +/*** buttons ***/ + input.button { color: #dddddd; font-size: 110%; @@ -91,6 +106,16 @@ input.button.mainaction { background: linear-gradient(top, rgba(80,80,80,1) 0%,rgba(42,46,49,1) 100%); } +input.button.mainaction:active { + color: #fff; + background: rgba(42,46,49,1); + background: -moz-linear-gradient(top, rgba(42,46,49,1) 0%, rgba(80,80,80,1) 100%); + background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(42,46,49,1)), color-stop(100%,rgba(80,80,80,1))); + background: -o-linear-gradient(top, rgba(42,46,49,1) 0%,rgba(80,80,80,1) 100%); + background: -ms-linear-gradient(top, rgba(42,46,49,1) 0%,rgba(80,80,80,1) 100%); + background: linear-gradient(top, rgba(42,46,49,1) 0%,rgba(80,80,80,1) 100%); +} + input.button[disabled], input.button[disabled]:hover, input.button.mainaction[disabled] { @@ -101,18 +126,112 @@ input.mainaction { font-weight: bold; } -a { - color: #0069a6; +/** link buttons **/ + +a.button { + display: inline-block; + margin: 0 3px; + padding: 2px 5px; + color: #525252; + text-shadow: 1px 1px 1px #fff; + border: 1px solid #ddd; + border-radius: 4px; + background: #f7f7f7; + background: -moz-linear-gradient(top, #f9f9f9 0%, #e6e6e6 100%); + background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f9f9f9), color-stop(100%,#e6e6e6)); + background: -o-linear-gradient(top, #f9f9f9 0%, #e6e6e6 100%); + background: -ms-linear-gradient(top, #f9f9f9 0%, #e6e6e6 100%); + background: linear-gradient(top, #f9f9f9 0%, #e6e6e6 100%); + box-shadow: 0 2px 2px 0 #999; + -o-box-shadow: 0 2px 2px 0 #999; + -webkit-box-shadow: 0 2px 2px 0 #999; + -moz-box-shadow: 0 2px 2px 0 #999; + text-decoration: none; } -a:visited { - color: #0186ba; +a.button.disabled { + color: #999; } -img { - border: 0; +a.button.disabled span.inner { + opacity: 0.4; +} + +a.button.pressed { + background: #e6e6e6; + background: -moz-linear-gradient(top, #e6e6e6 0%, #f9f9f9 100%); + background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e6e6e6), color-stop(100%,#f9f9f9)); + background: -o-linear-gradient(top, #e6e6e6 0%, #f9f9f9 100%); + background: -ms-linear-gradient(top, #e6e6e6 0%, #f9f9f9 100%); + background: linear-gradient(top, #e6e6e6 0%, #f9f9f9 100%); +} + +.pagenav a.button { + font-weight: bold; + border-color: #e6e6e6; + background: #f7f7f7; + background: -moz-linear-gradient(top, #d8d8d8 0%, #bababa 100%); + background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#d8d8d8), color-stop(100%,#bababa)); + background: -o-linear-gradient(top, #d8d8d8 0%, #bababa 100%); + background: -ms-linear-gradient(top, #d8d8d8 0%, #bababa 100%); + background: linear-gradient(top, #d8d8d8 0%, #bababa 100%); +} + +.pagenav a.button.pressed { + background: #bababa; + background: -moz-linear-gradient(top, #bababa 0%, #d8d8d8 100%); + background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#bababa), color-stop(100%,#d8d8d8)); + background: -o-linear-gradient(top, #bababa 0%, #d8d8d8 100%); + background: -ms-linear-gradient(top, #bababa 0%, #d8d8d8 100%); + background: linear-gradient(top, #bababa 0%, #d8d8d8 100%); } +.pagenav a.button span.inner { + display: inline-block; + width: 12px; + height: 12px; + text-indent: -1000px; + background: url(images/buttons.png) -8px -212px no-repeat; +} + +.pagenav a.prevpage span.inner { + background-position: -8px -227px; +} + +.pagenav a.nextpage span.inner { + background-position: -8px -242px; +} + +.pagenav a.lastpage span.inner { + background-position: -8px -257px; +} + +.pagenav .countdisplay { + display: inline-block; + padding:0 0.5em; + text-shadow: 1px 1px 1px #fff; + min-width: 20em; +} + +a.iconbutton { + display: inline-block; + width: 24px; + height: 18px; + text-decoration: none; + background: url(images/buttons.png) -1000px 0 no-repeat; +} + +a.iconbutton.searchoptions { + background-position: -4px -363px; +} + +a.iconbutton.reset { + background-position: -2px -384px; +} + + +/*** message bar ***/ + #message div.loading, #message div.warning, #message div.error, @@ -124,6 +243,7 @@ img { display: inline-block; white-space: nowrap; background: url(images/messages.png) 0 5px no-repeat; + cursor: default; } #message div.warning { @@ -145,6 +265,23 @@ img { background: url(images/ajaxloader.gif) 2px 6px no-repeat; } +#message.statusbar { + position: absolute; + bottom: 0; + left: 0; + right: 0; + height: 27px; + padding-left: 8px; + border-top: 1px solid #ddd; + border-radius: 0 0 4px 4px; + background: #eaeaea; + background: -moz-linear-gradient(top, #eaeaea 0%, #c8c8c8 100%); + background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eaeaea), color-stop(100%,#c8c8c8)); + background: -o-linear-gradient(top, #eaeaea 0%, #c8c8c8 100%); + background: -ms-linear-gradient(top, #eaeaea 0%, #c8c8c8 100%); + background: linear-gradient(top, #eaeaea 0%, #c8c8c8 100%); +} + /*** basic page layout ***/ @@ -199,18 +336,26 @@ img { #topline a.button-logout { display: inline-block; padding: 2px 10px 2px 20px; - background: url(images/taskbar.png) -6px -367px no-repeat; + background: url(images/buttons.png) -6px -193px no-repeat; color: #fff; } +/*** taskbar ***/ + #taskbar a { display: inline-block; + height: 34px; + padding: 12px 10px 0 6px; +} + +#taskbar a span.button-inner { + display: inline-block; font-size: 110%; font-weight: normal; text-shadow: 1px 1px 1px black; - height: 30px; - padding: 16px 10px 0 40px; - background: url(images/taskbar.png) -1000px 0 no-repeat; + padding: 5px 0 0 34px; + height: 19px; + background: url(images/buttons.png) -1000px 0 no-repeat; } #taskbar a.button-selected { @@ -218,40 +363,40 @@ img { background-color: #2c2c2c; } -#taskbar a.button-mail { - background-position: 6px 13px; +#taskbar a.button-mail span.button-inner { + background-position: 0 2px; } -#taskbar a.button-mail:hover, -#taskbar a.button-mail.button-selected { - background-position: 6px -33px; +#taskbar a.button-mail:hover span.button-inner, +#taskbar a.button-mail.button-selected span.button-inner { + background-position: 0 -22px; } -#taskbar a.button-addressbook { - background-position: 6px -80px; +#taskbar a.button-addressbook span.button-inner { + background-position: 0 -48px; } -#taskbar a.button-addressbook:hover, -#taskbar a.button-addressbook.button-selected { - background-position: 6px -126px; +#taskbar a.button-addressbook:hover span.button-inner, +#taskbar a.button-addressbook.button-selected span.button-inner { + background-position: 0 -72px; } -#taskbar a.button-settings { - background-position: 6px -172px; +#taskbar a.button-settings span.button-inner { + background-position: 0 -96px; } -#taskbar a.button-settings:hover, -#taskbar a.button-settings.button-selected { - background-position: 6px -218px; +#taskbar a.button-settings:hover span.button-inner, +#taskbar a.button-settings.button-selected span.button-inner { + background-position: 0 -120px; } -#taskbar a.button-calendar { - background-position: 6px -264px; +#taskbar a.button-calendar span.button-inner { + background-position: 0 -144px; } -#taskbar a.button-calendar:hover, -#taskbar a.button-calendar.button-selected { - background-position: 6px -310px; +#taskbar a.button-calendar:hover span.button-inner, +#taskbar a.button-calendar.button-selected span.button-inner { + background-position: 0 -168px; } #mainscreen { @@ -262,6 +407,10 @@ img { bottom: 20px; } +#mainscreen.offset { + top: 130px; +} + .uibox { border: 1px solid #a3a3a3; border-radius: 4px; @@ -272,8 +421,144 @@ img { background: #fff; } +/*** lists ***/ + .listbox { background: #d9ecf4; + overflow: hidden; +} + +.listbox .scroller { + position: absolute; + top: 0; + left: 0; + width: 100%; + bottom: 0; + overflow: auto; +} + +.listbox .boxtitle + .scroller { + top: 34px; +} + +.boxtitle, +.uibox .listing thead td { + font-size: 12px; + font-weight: bold; + padding: 10px 8px 8px 8px; + margin: 0; + text-shadow: 1px 1px 1px #fff; + border-bottom: 1px solid #bbd3da; +} + +.uibox .boxtitle, +.uibox .listing thead td { + background: #b0ccd7; + color: #004458; + border-radius: 4px 4px 0 0; +} + +.listbox .listitem, +.listing tbody td, +.listing li { + display: block; + border-top: 1px solid #fff; + border-bottom: 1px solid #bbd3da; + cursor: default; + font-weight: normal; +} + +.listbox .listitem a, +.listing tbody td, +.listing li a { + display: block; + color: #376572; + text-shadow: 1px 1px 1px #fff; + text-decoration: none; + cursor: default; + padding: 8px 8px 4px 8px; +} + +.listbox .listitem.selected, +.listing tbody tr.selected td, +.listing li.selected { + color: #004458; + font-weight: bold; +} + +ul.listing { + display: block; + list-style: none; + margin: 0; + padding: 0; +} + +table.listing { + width: 100%; +} + + +/*** iFrames ***/ + +body.iframe { + background: #fff; + margin: 38px 0 20px 0; +} + +body.iframe .boxtitle { + position: fixed; + top: 0; + left: 0; + width: 100%; + color: #777; + background: #eee; + background: -moz-linear-gradient(top, #eee 0%, #dfdfdf 100%); + background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eee), color-stop(100%,#dfdfdf)); + background: -o-linear-gradient(top, #eee 0%, #dfdfdf 100%); + background: -ms-linear-gradient(top, #eee 0%, #dfdfdf 100%); + background: linear-gradient(top, #eee 0%, #dfdfdf 100%); + border-bottom: 1px solid #ccc; +} + +.boxcontent { + padding: 10px; +} + +.footerleft { + padding: 0 12px; +} + +.propform fieldset { + margin-bottom: 20px; + border: 0; + padding: 0; +} + +.propform fieldset legend { + display: block; + font-size: 14px; + font-weight: bold; + margin-bottom: 10px; +} + +table.propform { + width: 100%; + border-spacing: 0; + border-collapse: collapse; +} + +table.propform td { + width: 80%; + padding: 4px 10px; + background: #eee; + border-bottom: 2px solid #fff; +} + +table.propform td.title { + width: 20%; + color: #333; + padding-right: 20px; + white-space: nowrap; } @@ -311,6 +596,7 @@ img { #login-form input[type="text"], #login-form input[type="password"] { width: 24em; + border-color: #666; } #login-form input.button { @@ -367,3 +653,30 @@ img { margin-top: 2em; } + + +/*** quicksearch **/ + +#quicksearchbar { + width: 100%; +} + +#quicksearchbar input { + width: 176px; + font-weight: bold; + padding: 5px 26px 5px 38px; + background: #f1f1f1; + border-color: #a3a3a3; +} + +#quicksearchbar #searchmenulink { + position: absolute; + top: 5px; + left: 8px; +} + +#quicksearchbar #searchreset { + position: absolute; + top: 4px; + right: 4px; +} diff --git a/skins/larry/templates/mail.html b/skins/larry/templates/mail.html index 56c7cae95..294d1cec9 100644 --- a/skins/larry/templates/mail.html +++ b/skins/larry/templates/mail.html @@ -8,11 +8,83 @@ <roundcube:include file="/includes/header.html" /> -<div id="mainscreen" class="uibox"> +<div id="mainscreen"> -<!-- just an example for now --> +<div id="mailview-left"> +<!-- search box --> +<div id="quicksearchbar"> +<roundcube:button name="searchmenulink" id="searchmenulink" class="iconbutton searchoptions" _onclick="rcmail_ui.show_popup('searchmenu');return false" title="searchmod" content=" " /> +<roundcube:object name="searchform" id="quicksearchbox" /> +<roundcube:button command="reset-search" id="searchreset" class="iconbutton reset" title="resetsearch" content=" " /> </div> +<!-- folders list --> +<div id="mailboxcontainer" class="uibox listbox"> +<div class="scroller"> +<roundcube:object name="mailboxlist" id="mailboxlist"class="listing" folder_filter="mail" /> +</div> +<div class="boxfooter"> + <roundcube:button name="mailboxmenulink" id="mailboxmenulink" type="link" title="folderactions" class="listbutton groupactions" _onclick="rcmail_ui.show_popup('mailboxmenu');return false" content=" " /> +</div> +</div> + +</div> + +<div id="mailview-right"> + +<!-- search filter --> +<div id="searchfilter"> + <roundcube:object name="searchfilter" class="searchfilter" /> +</div> + +<!-- toolbar --> +<div id="messagetoolbar"> +<!-- roundcube:include file="/includes/messagetoolbar.html" /--> +</div> + +<div id="mailview-top"> + +<!-- messagelist --> +<div id="messagelistcontainer" class="uibox boxlistcontent"> +<roundcube:object name="messages" + id="messagelist" + cellspacing="0" + columns="" + summary="Message list" + optionsmenuIcon="true" /> +</div> + +<!-- list footer --> +<div id="messagelistfooter"> + <div id="listcontrols"> + + </div> + + <div id="countcontrols" class="pagenav"> + <roundcube:object name="messageCountDisplay" class="countdisplay" /> + <roundcube:button command="firstpage" type="link" class="button firstpage disabled" classAct="button firstpage" classSel="button firstpage pressed" innerClass="inner" title="firstpage" content="|&lt;" /> + <roundcube:button command="previouspage" type="link" class="button prevpage disabled" classAct="button prevpage" classSel="button prevpage pressed" innerClass="inner" title="previouspage" content="&lt;" /> + <roundcube:button command="nextpage" type="link" class="button nextpage disabled" classAct="button nextpage" classSel="button nextpage pressed" innerClass="inner" title="nextpage" content="&gt;" /> + <roundcube:button command="lastpage" type="link" class="button lastpage disabled" classAct="button lastpage" classSel="button lastpage pressed" innerClass="inner" title="lastpage" content="&gt;|" /> +</div> + +</div> + +</div><!-- end mailview-top --> + +<div id="mailview-bottom" class="uibox"> +<div id="mailpreviewframe"> +</div> + +<roundcube:object name="message" id="message" class="statusbar" /> + +</div><!-- end mailview-bottom --> + +</div><!-- end mailview-right --> + +</div><!-- end mainscreen --> + + </body> </html> diff --git a/skins/larry/templates/settings.html b/skins/larry/templates/settings.html new file mode 100644 index 000000000..15592a264 --- /dev/null +++ b/skins/larry/templates/settings.html @@ -0,0 +1,29 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<title><roundcube:object name="pagetitle" /></title> +<roundcube:include file="/includes/links.html" /> +</head> +<body> + +<roundcube:include file="/includes/header.html" /> + +<div id="mainscreen" class="offset"> + +<roundcube:include file="/includes/settingstabs.html" /> + +<div id="sectionslist" class="uibox listbox"> +<div class="scroller"> + <roundcube:object name="sectionslist" id="sections-table" class="listing" cellspacing="0" /> +</div> +</div> + +<div id="preferences-box" class="uibox contentbox"> +<roundcube:object name="prefsframe" id="preferences-frame" width="100%" height="97%" frameborder="0" src="about:blank" /> +<roundcube:object name="message" id="message" class="statusbar" /> +</div> + +</div> + +</body> +</html> diff --git a/skins/larry/templates/settingsedit.html b/skins/larry/templates/settingsedit.html new file mode 100644 index 000000000..afcbeb590 --- /dev/null +++ b/skins/larry/templates/settingsedit.html @@ -0,0 +1,22 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<title><roundcube:object name="pagetitle" /></title> +<roundcube:include file="/includes/links.html" /> +</head> +<body class="iframe"> + +<h1 class="boxtitle"><roundcube:object name="sectionname" /></h1> + +<div id="preferences-details" class="boxcontent"> +<roundcube:object name="userprefs" form="form" class="propform" cellspacing="0" /> +</div> + +<div id="formfooter"> +<div class="footerleft"> +<roundcube:button command="save" type="input" class="button mainaction" label="save" /> +</div> +</div> + +</body> +</html> |