diff options
author | alecpl <alec@alec.pl> | 2010-06-17 19:08:00 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-06-17 19:08:00 +0000 |
commit | ce06d32dd81e3a9c5c5c8a5e27562b5c55b49c81 (patch) | |
tree | a5267605f04f183e42263b652f27b5c475950722 /skins/default/templates/addressbook.html | |
parent | 37e467d55cfb0323989127ba04c4e449ce2ed784 (diff) |
- UI unification
- Added button to hide/unhide the preview pane (#1484215)
Diffstat (limited to 'skins/default/templates/addressbook.html')
-rw-r--r-- | skins/default/templates/addressbook.html | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/skins/default/templates/addressbook.html b/skins/default/templates/addressbook.html index 974622210..aa3f288e7 100644 --- a/skins/default/templates/addressbook.html +++ b/skins/default/templates/addressbook.html @@ -56,7 +56,19 @@ <div id="addressscreen"> <div id="addresslist"> -<roundcube:object name="addresslist" id="contacts-table" class="records-table" cellspacing="0" summary="Contacts list" /> +<div class="boxtitle"><roundcube:label name="contacts" /></div> +<div class="boxlistcontent"> +<roundcube:object name="addresslist" id="contacts-table" class="records-table" cellspacing="0" summary="Contacts list" noheader="true" /> +</div> +<div class="boxfooter"> +<div id="abookcountbar" class="pagenav"> + <roundcube:button command="firstpage" type="link" class="buttonPas firstpage" classAct="button firstpage" classSel="button firstpageSel" title="firstpage" content=" " /> + <roundcube:button command="previouspage" type="link" class="buttonPas prevpage" classAct="button prevpage" classSel="button prevpageSel" title="previouspage" content=" " /> + <roundcube:object name="recordsCountDisplay" style="padding:0 .5em; float:left" /> + <roundcube:button command="nextpage" type="link" class="buttonPas nextpage" classAct="button nextpage" classSel="button nextpageSel" title="nextpage" content=" " /> + <roundcube:button command="lastpage" type="link" class="buttonPas lastpage" classAct="button lastpage" classSel="button lastpageSel" title="lastpage" content=" " /> +</div> +</div> </div> <script type="text/javascript"> @@ -70,13 +82,7 @@ </div> -<div id="abookcountbar" class="pagenav"> - <roundcube:button command="firstpage" type="link" class="buttonPas firstpage" classAct="button firstpage" classSel="button firstpageSel" title="firstpage" content=" " /> - <roundcube:button command="previouspage" type="link" class="buttonPas prevpage" classAct="button prevpage" classSel="button prevpageSel" title="previouspage" content=" " /> - <roundcube:object name="recordsCountDisplay" style="padding:0 .5em; float:left" /> - <roundcube:button command="nextpage" type="link" class="buttonPas nextpage" classAct="button nextpage" classSel="button nextpageSel" title="nextpage" content=" " /> - <roundcube:button command="lastpage" type="link" class="buttonPas lastpage" classAct="button lastpage" classSel="button lastpageSel" title="lastpage" content=" " /> -</div> +<div id="rcmversion"><roundcube:object name="productname" /> <roundcube:object name="version" /></div> </body> </html> |