diff options
author | thomascube <thomas@roundcube.net> | 2006-01-05 00:37:10 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2006-01-05 00:37:10 +0000 |
commit | 15a9d1ce671fcbc44ea3e4858d7aa6f5b22300c9 (patch) | |
tree | 30e15c3f52ff435d5b08691424515995d8b077c9 /skins | |
parent | 977a295eb1e97e0c230063da40b8296fca778814 (diff) |
Optimized loading time; added periodic mail check; added EXPUNGE command
Diffstat (limited to 'skins')
-rw-r--r-- | skins/default/mail.css | 30 | ||||
-rw-r--r-- | skins/default/templates/mail.html | 5 |
2 files changed, 32 insertions, 3 deletions
diff --git a/skins/default/mail.css b/skins/default/mail.css index 9d507fe7b..28fe2ee63 100644 --- a/skins/default/mail.css +++ b/skins/default/mail.css @@ -51,7 +51,10 @@ #listcontrols a, #listcontrols a:active, -#listcontrols a:visited +#listcontrols a:visited, +#mailboxcontrols a, +#mailboxcontrols a:active, +#mailboxcontrols a:visited { color: #999999; font-size: 11px; @@ -60,12 +63,16 @@ #listcontrols a.active, #listcontrols a.active:active, -#listcontrols a.active:visited +#listcontrols a.active:visited, +#mailboxcontrols a.active, +#mailboxcontrols a.active:active, +#mailboxcontrols a.active:visited { color: #CC0000; } -#listcontrols a.active:hover +#listcontrols a.active:hover, +#mailboxcontrols a.active:hover { text-decoration: underline; } @@ -294,6 +301,17 @@ } +#mailboxcontrols +{ + position: absolute; + left: 20px; + width: 160px; + bottom: 20px; + height: 16px; + overflow: hidden; +} + + /** message list styles */ body.messagelist @@ -430,6 +448,12 @@ body.messagelist color: #FFFFFF; } +#messagelist tr.deleted td, +#messagelist tr.deleted td a +{ + color: #CCCCCC; +} + /** message view styles */ diff --git a/skins/default/templates/mail.html b/skins/default/templates/mail.html index 0f87c635d..1af25ed88 100644 --- a/skins/default/templates/mail.html +++ b/skins/default/templates/mail.html @@ -28,6 +28,11 @@ <div id="mailboxlist-header"><roundcube:label name="mailboxlist" /></div> <div id="mailboxlist-container"><roundcube:object name="mailboxlist" id="mailboxlist" maxlength="16" /></div> +<div id="mailboxcontrols"> +<roundcube:label name="folder" />: +<roundcube:button command="expunge" label="compact" classAct="active" /> +</div> + <div id="mailcontframe"> <roundcube:object name="messages" |