comparison skins/classic/templates/settings.html @ 0:4681f974d28b

vanilla 1.3.3 distro, I hope
author Charlie Root
date Thu, 04 Jan 2018 15:52:31 -0500
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:4681f974d28b
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 <html xmlns="http://www.w3.org/1999/xhtml">
3 <head>
4 <title><roundcube:object name="pagetitle" /></title>
5 <roundcube:include file="/includes/links.html" />
6 <script type="text/javascript" src="/functions.js"></script>
7 <script type="text/javascript" src="/splitter.js"></script>
8
9 <style type="text/css">
10 #sectionslist { width: <roundcube:exp expression="!empty(cookie:prefsviewsplitter) ? cookie:prefsviewsplitter-5 : 190" />px; }
11 #prefs-box { left: <roundcube:exp expression="!empty(cookie:prefsviewsplitter) ? cookie:prefsviewsplitter+5 : 200" />px; }
12 </style>
13
14 </head>
15 <body>
16
17 <roundcube:include file="/includes/taskbar.html" />
18 <roundcube:include file="/includes/header.html" />
19 <roundcube:include file="/includes/settingstabs.html" />
20
21 <div id="mainscreen">
22
23 <div id="sectionslist">
24 <roundcube:object name="sectionslist" id="sections-table" class="records-table" cellspacing="0" />
25 </div>
26
27 <script type="text/javascript">
28 var prefviewsplit = new rcube_splitter({id:'prefsviewsplitter', p1: 'sectionslist', p2: 'prefs-box', orientation: 'v', relative: true, start: 195});
29 rcmail.add_onload('prefviewsplit.init()');
30 </script>
31
32 <div id="prefs-box">
33 <roundcube:object name="prefsframe" id="prefs-frame" width="100%" height="100%" frameborder="0" src="/watermark.html" />
34 </div>
35
36 </div>
37
38 </body>
39 </html>