From d2a64865a7089133345dc9eed63ddab691d43575 Mon Sep 17 00:00:00 2001 From: alecpl <alec@alec.pl> Date: Fri, 20 May 2011 02:25:46 -0400 Subject: [PATCH] - Fix func_get_args() usage for PHP<5.3 (#1487928) --- skins/default/common.css | 11 ++++++++--- 1 files changed, 8 insertions(+), 3 deletions(-) diff --git a/skins/default/common.css b/skins/default/common.css index 3af18d1..6f1f264 100644 --- a/skins/default/common.css +++ b/skins/default/common.css @@ -490,6 +490,11 @@ background-color: #c00; } +.popupmenu li input +{ + float: left; +} + .darkbg { background-color: #F2F2F2 !important; @@ -902,9 +907,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; } -- Gitblit v1.9.1