vbenincasa
2011-04-23 a1621c6759f32d8662dab2636d0c6ba7ca548084
 - Fix incorrect CSS class name call (.quota_text_normal to .quota_text_low)
- Small improvement in the look of quota indicator

1 files added
2 files modified
8 ■■■■ changed files
program/js/app.js 2 ●●● patch | view | raw | blame | history
skins/default/common.css 6 ●●●● patch | view | raw | blame | history
skins/default/images/quota-colors.png patch | view | raw | blame | history
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');
    }
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; }
skins/default/images/quota-colors.png