diff options
author | thomascube <thomas@roundcube.net> | 2010-06-18 12:10:35 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2010-06-18 12:10:35 +0000 |
commit | 9689f5b54ddc29cce84cffe2c07628a7fb56edfc (patch) | |
tree | 22766b5fd20dac19e4c7bb197753c8d684e8f2f9 | |
parent | 7dff2fe2da79559685baa769607362dd45622119 (diff) |
Make preview pane label clickable + slightly darker labels in pagenav
-rw-r--r-- | skins/default/common.css | 2 | ||||
-rw-r--r-- | skins/default/templates/mail.html | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/skins/default/common.css b/skins/default/common.css index baa46b424..6ada77c34 100644 --- a/skins/default/common.css +++ b/skins/default/common.css @@ -314,7 +314,7 @@ img .pagenav span { - color: #666; + color: #444; font-size: 11px; text-shadow: white 1px 1px; } diff --git a/skins/default/templates/mail.html b/skins/default/templates/mail.html index 0ceb9d309..75acbcdd6 100644 --- a/skins/default/templates/mail.html +++ b/skins/default/templates/mail.html @@ -74,13 +74,13 @@ <roundcube:button command="select-none" type="link" title="none" class="buttonPas none" classAct="button none" classSel="button nonesel" content=" " /> <roundcube:container name="listcontrols" id="listcontrols" /> <roundcube:if condition="env:threads" /> - <span style="margin-left: 10px"><roundcube:label name="threads" />: </span> + <span style="margin-left: 12px"><roundcube:label name="threads" />: </span> <roundcube:button command="expand-all" type="link" title="expand-all" class="buttonPas expand-all" classAct="button expand-all" classSel="button expand-allsel" content=" " /> <roundcube:button command="expand-unread" type="link" title="expand-unread" class="buttonPas expand-unread" classAct="button expand-unread" classSel="button expand-unreadsel" content=" " /> <roundcube:button command="collapse-all" type="link" title="collapse-all" class="buttonPas collapse-all" classAct="button collapse-all" classSel="button collapse-allsel" content=" " /> <roundcube:endif /> - <span style="margin-left: 10px"><roundcube:label name="previewpane" />: </span> - <input type="checkbox" onclick="rcmail_ui.switch_preview_pane(this)"<roundcube:if condition="config:preview_pane == true" /> checked="checked"<roundcube:endif /> /> + <label><span style="margin-left: 12px"><roundcube:label name="previewpane" />: </span> + <input type="checkbox" onclick="rcmail_ui.switch_preview_pane(this)"<roundcube:if condition="config:preview_pane == true" /> checked="checked"<roundcube:endif /> /></label> </div> <div id="countcontrols" class="pagenav"> <roundcube:button command="lastpage" type="link" class="buttonPas lastpage" classAct="button lastpage" classSel="button lastpageSel" title="lastmessages" content=" " /> |