source: subversion/trunk/roundcubemail/skins/default/templates/settings.html @ 3516

Last change on this file since 3516 was 3516, checked in by alec, 3 years ago
  • Added version number in Settings (#1486290)
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.7 KB
Line 
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<roundcube:exp expression="browser:ie ? ('width:expression((parseInt(this.parentNode.offsetWidth)-'.(!empty(cookie:prefsviewsplitter) ? cookie:prefsviewsplitter+5 : 200).')+\\'px\\');') : ''" />
13}
14</style>
15
16</head>
17<body>
18
19<roundcube:include file="/includes/taskbar.html" />
20<roundcube:include file="/includes/header.html" />
21<roundcube:include file="/includes/settingstabs.html" />
22
23<div id="prefsscreen">
24
25<div id="sectionslist">
26<roundcube:object name="sectionslist" id="sections-table" class="records-table" cellspacing="0" />
27</div>
28
29<script type="text/javascript">
30  var prefviewsplit = new rcube_splitter({id:'prefsviewsplitter', p1: 'sectionslist', p2: 'prefs-box', orientation: 'v', relative: true, start: 195});
31  rcmail.add_onload('prefviewsplit.init()');
32</script>
33
34<div id="prefs-box">
35<roundcube:object name="prefsframe" id="prefs-frame" width="100%" height="100%" frameborder="0" src="/watermark.html" />
36</div>
37
38</div>
39
40<div id="rcmversion"><roundcube:object name="productname" /> <roundcube:object name="version" /></div>
41
42</body>
43</html>
Note: See TracBrowser for help on using the repository browser.