From 6127c9c12fc6fecee8562c3e4c823bd7a382178f Mon Sep 17 00:00:00 2001 From: netbit Date: Sat, 23 Apr 2011 09:19:43 +0000 Subject: - Fix incorrect CSS class name call (.quota_text_normal to .quota_text_low) - Small improvement in the look of quota indicator git-svn-id: https://svn.roundcube.net/trunk@4686 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/program/js/app.js | 2 +- roundcubemail/skins/default/common.css | 6 +++--- roundcubemail/skins/default/images/quota-colors.png | Bin 0 -> 492 bytes 3 files changed, 4 insertions(+), 4 deletions(-) create mode 100644 roundcubemail/skins/default/images/quota-colors.png diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js index d0e408da2..da1394767 100644 --- a/roundcubemail/program/js/app.js +++ b/roundcubemail/program/js/app.js @@ -5113,7 +5113,7 @@ function rcube_webmail() bar1.addClass('quota_mid'); } else { - main.addClass(' quota_text_normal'); + main.addClass(' quota_text_low'); bar1.addClass('quota_low'); } diff --git a/roundcubemail/skins/default/common.css b/roundcubemail/skins/default/common.css index 3af18d124..b1696ef85 100644 --- a/roundcubemail/skins/default/common.css +++ b/roundcubemail/skins/default/common.css @@ -902,9 +902,9 @@ fieldset.tabbed cursor: default; } .quota_bg { background-color: white; } -.quota_high { background-color: #F33131; } -.quota_mid { background-color: #F5AD3C; } -.quota_low { background-color: #91E164; } +.quota_high { background: url(images/quota-colors.png) repeat-x 0 -28px #f90509; } +.quota_mid { background: url(images/quota-colors.png) repeat-x 0 -14px #e3e909; } +.quota_low { background: url(images/quota-colors.png) repeat-x 0 0px #05f905; } .quota_text_high { color: white; } .quota_text_mid { color: #666; } .quota_text_low { color: #666; } diff --git a/roundcubemail/skins/default/images/quota-colors.png b/roundcubemail/skins/default/images/quota-colors.png new file mode 100644 index 000000000..4c1f17edd Binary files /dev/null and b/roundcubemail/skins/default/images/quota-colors.png differ -- cgit v1.2.3