From a1621c6759f32d8662dab2636d0c6ba7ca548084 Mon Sep 17 00:00:00 2001
From: vbenincasa <vbenincasa@gmail.com>
Date: Sat, 23 Apr 2011 05:19:43 -0400
Subject: [PATCH]  - Fix incorrect CSS class name call (.quota_text_normal to .quota_text_low)  - Small improvement in the look of quota indicator

---
 skins/default/common.css              |    6 +++---
 skins/default/images/quota-colors.png |    0 
 program/js/app.js                     |    2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/program/js/app.js b/program/js/app.js
index d0e408d..da13947 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -5113,7 +5113,7 @@
       bar1.addClass('quota_mid');
     }
     else {
-      main.addClass(' quota_text_normal');
+      main.addClass(' quota_text_low');
       bar1.addClass('quota_low');
     }
 
diff --git a/skins/default/common.css b/skins/default/common.css
index 3af18d1..b1696ef 100644
--- a/skins/default/common.css
+++ b/skins/default/common.css
@@ -902,9 +902,9 @@
   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/skins/default/images/quota-colors.png b/skins/default/images/quota-colors.png
new file mode 100644
index 0000000..4c1f17e
--- /dev/null
+++ b/skins/default/images/quota-colors.png
Binary files differ

--
Gitblit v1.9.1