diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-10-24 19:09:23 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-10-24 19:09:23 +0000 |
| commit | 78a59366e76d171a044e005f1f50c052ff008f1e (patch) | |
| tree | b286928e2f7040f474746d044a1d755ee59c7d15 /roundcubemail/skins/default | |
| parent | 4f535f537f9bb15aa93ed4c1edafee3de3e3ec64 (diff) | |
- Fix quota indicator issues by content generation on client-size
instead of bin/quotaimage.php: better performance, better styling posibilities (#1486197, #1486220)
git-svn-id: https://svn.roundcube.net/trunk@3058 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/skins/default')
| -rw-r--r-- | roundcubemail/skins/default/mail.css | 17 | ||||
| -rw-r--r-- | roundcubemail/skins/default/templates/mail.html | 2 |
2 files changed, 14 insertions, 5 deletions
diff --git a/roundcubemail/skins/default/mail.css b/roundcubemail/skins/default/mail.css index 31d7c61b8..f9777eea6 100644 --- a/roundcubemail/skins/default/mail.css +++ b/roundcubemail/skins/default/mail.css @@ -839,12 +839,21 @@ body.messagelist color: #CCCCCC; } -#quotadisplay img -{ - margin-left: 4px; +.quota_text { + text-align: center; + font-size: 10px; + color: #666; border: 1px solid #999; + cursor: default; } - +.quota_bg { background-color: white; } +.quota_high { background-color: #F33131; } +.quota_mid { background-color: #F5AD3C; } +.quota_low { background-color: #91E164; } +.quota_text_high { color: white; } +.quota_text_mid { color: #666; } +.quota_text_low { color: #666; } + /** message view styles */ diff --git a/roundcubemail/skins/default/templates/mail.html b/roundcubemail/skins/default/templates/mail.html index ed19ff9a0..db2f4fe16 100644 --- a/roundcubemail/skins/default/templates/mail.html +++ b/roundcubemail/skins/default/templates/mail.html @@ -84,7 +84,7 @@ <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:quota" /> - <span style="margin-left: 20px"><roundcube:label name="quota" />:</span> + <span style="margin-left: 20px; margin-right: 5px"><roundcube:label name="quota" />:</span> <roundcube:object name="quotaDisplay" display="image" width="100" height="14" id="quotadisplay" /> <roundcube:endif /> </div> |
