source: subversion/trunk/roundcubemail/skins/larry/templates/addressbook.html @ 5646

Last change on this file since 5646 was 5646, checked in by thomasb, 17 months ago

Address book styling for Larry; show about page in UI dialog

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Date Author Revision
File size: 5.3 KB
Line 
1<roundcube:object name="doctype" value="html5" />
2<html>
3<head>
4<title><roundcube:object name="pagetitle" /></title>
5<roundcube:include file="/includes/links.html" />
6</head>
7<body>
8
9<roundcube:include file="/includes/header.html" />
10
11<div id="mainscreen">
12
13<div id="addressview-left">
14
15<!-- search box -->
16<div id="quicksearchbar">
17<roundcube:object name="searchform" id="quicksearchbox" />
18<roundcube:button name="searchmenulink" id="searchmenulink" class="iconbutton searchoptions" onclick="UI.show_popup('searchmenu');return false" title="searchmod" content=" " />
19<roundcube:button command="reset-search" id="searchreset" class="iconbutton reset" title="resetsearch" content=" " />
20</div>
21
22<!-- sources/groups list -->
23<div id="directorylistbox" class="uibox listbox">
24<h2 class="boxtitle"><roundcube:label name="groups" /></h2>
25<div class="scroller withfooter">
26        <roundcube:object name="directorylist" id="directorylist" class="listing" />
27</div>
28<div class="boxfooter">
29        <roundcube:button command="group-create" type="link" title="newcontactgroup" class="listbutton add disabled" classAct="listbutton add" innerClass="inner" content="+" /><roundcube:button name="groupoptions" id="groupoptionslink" type="link" title="moreactions" class="listbutton groupactions" onclick="UI.show_popup('groupoptions');return false" innerClass="inner" content="&#9881;" />
30</div>
31</div>
32
33</div><!-- end addressview-left -->
34
35<div id="addressview-right">
36
37<!-- toolbar -->
38<div id="addressbooktoolbar" class="toolbar">
39        <roundcube:button command="advanced-search" type="link" class="button search disabled" classAct="button search" classSel="button search pressed" label="advsearch" title="advsearch" />
40        <roundcube:button command="compose" type="link" class="button compose disabled" classAct="button compose" classSel="button compose pressed" label="writenewmessage" title="writenewmessage" />
41        <roundcube:button command="import" type="link" class="button import disabled" classAct="button import" classSel="button import pressed" label="importcontacts" title="importcontacts" />
42        <roundcube:button command="export" type="link" class="button export disabled" classAct="button export" classSel="button export pressed" label="exportvcards" title="exportvcards" />
43        <roundcube:container name="toolbar" id="addressbooktoolbar" />
44</div>
45
46<!-- contacts list -->
47<div id="addresslist" class="uibox listbox">
48<h2 class="boxtitle"><roundcube:label name="contacts" /></h2>
49<div class="scroller withfooter">
50<roundcube:object name="addresslist" id="contacts-table" class="listing" noheader="true" />
51</div>
52<div class="boxfooter">
53        <roundcube:button command="add" type="link" title="newcontact" class="listbutton add disabled" classAct="listbutton add" innerClass="inner" content="+" /><roundcube:button command="delete" type="link" title="deletecontact" class="listbutton delete disabled" classAct="listbutton delete" innerClass="inner" content="x" />
54        <roundcube:object name="recordsCountDisplay" class="countdisplay" label="fromtoshort" />
55</div>
56<div class="boxpagenav">
57        <roundcube:button command="firstpage" type="link" class="icon firstpage disabled" classAct="icon firstpage" title="firstpage" content="|&amp;lt;" />
58        <roundcube:button command="previouspage" type="link" class="icon prevpage disabled" classAct="icon prevpage" title="previouspage" content="&amp;lt;" />
59        <roundcube:button command="nextpage" type="link" class="icon nextpage disabled" classAct="icon nextpage" title="nextpage" content="&amp;gt;" />
60        <roundcube:button command="lastpage" type="link" class="icon lastpage disabled" classAct="icon lastpage" title="lastpage" content="&amp;gt;|" />
61</div>
62</div>
63
64
65<div id="contacts-box" class="uibox">
66        <roundcube:object name="addressframe" id="contact-frame" style="width:100%; height:96%" src="/watermark.html" />
67        <roundcube:object name="message" id="message" class="statusbar" />
68</div>
69
70
71</div><!-- end addressview-right -->
72
73</div><!-- end mainscreen -->
74
75
76<div id="searchmenu" class="popupmenu">
77        <ul class="toolbarmenu">
78                <li><label><input type="checkbox" name="s_mods[]" value="name" onclick="UI.set_searchmod(this)" /> <roundcube:label name="name" /></label></li>
79                <li><label><input type="checkbox" name="s_mods[]" value="firstname" onclick="UI.set_searchmod(this)" /> <roundcube:label name="firstname" /></label></li>
80                <li><label><input type="checkbox" name="s_mods[]" value="surname" onclick="UI.set_searchmod(this)" /> <roundcube:label name="surname" /></label></li>
81                <li><label><input type="checkbox" name="s_mods[]" value="email" onclick="UI.set_searchmod(this)" /> <roundcube:label name="email" /></label></li>
82                <li><label><input type="checkbox" name="s_mods[]" value="*" onclick="UI.set_searchmod(this)" /> <roundcube:label name="allfields" /></label></li>
83        </ul>
84</div>
85
86<div id="groupoptions" class="popupmenu">
87        <ul id="groupoptionsmenu" class="toolbarmenu">
88                <li><roundcube:button command="group-rename" label="grouprename" classAct="active" /></li>
89                <li><roundcube:button command="group-delete" label="groupdelete" classAct="active" /></li>
90                <li><roundcube:button command="search-create" label="searchsave" classAct="active" /></li>
91                <li><roundcube:button command="search-delete" label="searchdelete" classAct="active" /></li>
92                <roundcube:container name="groupoptions" id="groupoptionsmenu" />
93        </ul>
94</div>
95
96<roundcube:include file="/includes/footer.html" />
97
98</body>
99</html>
Note: See TracBrowser for help on using the repository browser.