Changeset 4686 in subversion


Ignore:
Timestamp:
Apr 23, 2011 5:19:43 AM (2 years ago)
Author:
netbit
Message:
  • Fix incorrect CSS class name call (.quota_text_normal to .quota_text_low)
  • Small improvement in the look of quota indicator
Location:
trunk/roundcubemail
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/program/js/app.js

    r4684 r4686  
    51145114    } 
    51155115    else { 
    5116       main.addClass(' quota_text_normal'); 
     5116      main.addClass(' quota_text_low'); 
    51175117      bar1.addClass('quota_low'); 
    51185118    } 
  • trunk/roundcubemail/skins/default/common.css

    r4497 r4686  
    903903} 
    904904.quota_bg { background-color: white; } 
    905 .quota_high { background-color: #F33131; } 
    906 .quota_mid { background-color: #F5AD3C; } 
    907 .quota_low { background-color: #91E164; } 
     905.quota_high { background: url(images/quota-colors.png) repeat-x 0 -28px #f90509; } 
     906.quota_mid { background: url(images/quota-colors.png) repeat-x 0 -14px #e3e909; } 
     907.quota_low { background: url(images/quota-colors.png) repeat-x 0 0px #05f905; } 
    908908.quota_text_high { color: white; } 
    909909.quota_text_mid { color: #666; } 
Note: See TracChangeset for help on using the changeset viewer.