diff options
-rw-r--r-- | skins/larry/styles.css | 7 | ||||
-rw-r--r-- | skins/larry/templates/mail.html | 2 |
2 files changed, 9 insertions, 0 deletions
diff --git a/skins/larry/styles.css b/skins/larry/styles.css index 33e587a1e..edb3077f7 100644 --- a/skins/larry/styles.css +++ b/skins/larry/styles.css @@ -262,6 +262,7 @@ input.button:active { .pagenav a.button { padding: 1px 3px; height: 16px; + vertical-align: middle; } .pagenav a.button span.inner { @@ -316,6 +317,11 @@ input.button:active { min-width: 16em; } +.pagenavbuttons { + position: relative; + top: -2px; +} + a.iconbutton { display: inline-block; width: 24px; @@ -858,6 +864,7 @@ table.layout td { height: 13px; width: 14px; text-indent: 1000px; + vertical-align: bottom; overflow: hidden; background: url(images/buttons.png) -4px -286px no-repeat; } diff --git a/skins/larry/templates/mail.html b/skins/larry/templates/mail.html index 4eda881a4..d82b8927d 100644 --- a/skins/larry/templates/mail.html +++ b/skins/larry/templates/mail.html @@ -85,10 +85,12 @@ <div id="countcontrols" class="pagenav dark"> <roundcube:object name="messageCountDisplay" class="countdisplay" /> + <span class="pagenavbuttons"> <roundcube:button command="firstpage" type="link" class="button firstpage disabled" classAct="button firstpage" classSel="button firstpage pressed" innerClass="inner" title="firstpage" content="|&lt;" /> <roundcube:button command="previouspage" type="link" class="button prevpage disabled" classAct="button prevpage" classSel="button prevpage pressed" innerClass="inner" title="previouspage" content="&lt;" /> <roundcube:button command="nextpage" type="link" class="button nextpage disabled" classAct="button nextpage" classSel="button nextpage pressed" innerClass="inner" title="nextpage" content="&gt;" /> <roundcube:button command="lastpage" type="link" class="button lastpage disabled" classAct="button lastpage" classSel="button lastpage pressed" innerClass="inner" title="lastpage" content="&gt;|" /> + </span> </div> <a href="#preview" id="mailpreviewtoggle" title="<roundcube:label name='previewpane' />"></a> |