source: subversion/trunk/roundcubemail/skins/default/templates/identityedit.html @ 4602

Last change on this file since 4602 was 4602, checked in by alec, 2 years ago
  • Fix tabs on identity edit page
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.4 KB
RevLine 
[3]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>
[77]5<roundcube:include file="/includes/links.html" />
[1912]6<script type="text/javascript" src="/functions.js"></script>
[3734]7<script type="text/javascript" src="/splitter.js"></script>
8<style type="text/css">
9#identities-list { width: <roundcube:exp expression="!empty(cookie:identviewsplitter) ? cookie:identviewsplitter-5 : 295" />px; }
10#identity-details { left: <roundcube:exp expression="!empty(cookie:identviewsplitter) ? cookie:identviewsplitter+5 : 305" />px;
11  <roundcube:exp expression="browser:ie ? ('width:expression((parseInt(this.parentNode.offsetWidth)-'.(!empty(cookie:identviewsplitter) ? cookie:identviewsplitter+5 : 305).')+\\'px\\');') : ''" />
12}
13</style>
14
[3]15</head>
[2495]16<body>
[3]17
[62]18<roundcube:include file="/includes/taskbar.html" />
[3]19<roundcube:include file="/includes/header.html" />
20<roundcube:include file="/includes/settingstabs.html" />
21
[3789]22<div id="mainscreen">
[3734]23
[3]24<div id="identities-list">
[3734]25<div id="identity-title" class="boxtitle"><roundcube:label name="identities" /></div>
26<div class="boxlistcontent">
27<roundcube:object name="identitiesList" id="identities-table" class="records-table" cellspacing="0" summary="Identities list" noheader="true" editIcon="" />
[1796]28</div>
[3733]29<div class="boxfooter">
[3728]30<roundcube:button command="add" type="link" title="newidentity" class="buttonPas addgroup" classAct="button addgroup" content=" " condition="config:identities_level:0<2" />
31</div>
32</div>
[3]33
[3734]34<script type="text/javascript">
35  var identviewsplit = new rcube_splitter({id:'identviewsplitter', p1: 'identities-list', p2: 'identity-details', orientation: 'v', relative: true, start: 300 });
36  rcmail.add_onload('identviewsplit.init()');
37</script>
38
[3]39<div id="identity-details">
[3022]40<div id="identity-title" class="boxtitle"><roundcube:object name="steptitle" /></div>
[3]41
[3023]42<div class="boxcontent">
[4602]43<roundcube:object name="identityform" id="identity-form" size="40" textareacols="70" textarearows="6" />
[4043]44<p>
[2006]45<roundcube:button command="delete" type="input" class="button" label="delete" condition="env:action=='edit-identity'" style="margin-right:0.5em" />
[1716]46<roundcube:button command="save" type="input" class="button mainaction" label="save" />
[3]47</p>
48</div>
[4602]49<script type="text/javascript">rcube_init_tabs('identity-form')</script>
[4043]50
[3]51</div>
52
[3734]53</div>
54
[3]55</body>
56</html>
Note: See TracBrowser for help on using the repository browser.