From 7f43e18fde11cf30a8b8fbe71ab5e2a0dba823f8 Mon Sep 17 00:00:00 2001
From: alecpl <alec@alec.pl>
Date: Fri, 05 Dec 2008 02:19:35 -0500
Subject: [PATCH] #1485605: some css fixes for IE6

---
 skins/default/common.css |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/skins/default/common.css b/skins/default/common.css
index 2ba57f5..12cc271 100644
--- a/skins/default/common.css
+++ b/skins/default/common.css
@@ -73,6 +73,9 @@
   color: #333333;
   background-color: #ffffff;
   border: 1px solid #666666;
+  /* css hack for IE */
+  background-color: expression(this.type=="checkbox" || this.type=="radio"? 'transparent' : '#ffffff');
+  border-width: expression(this.type=="checkbox" || this.type=="radio"? '0' : '1px');
 }
 
 input[type="checkbox"],

--
Gitblit v1.9.1