From 81831ae50d8c92d1c7f8913abcc9354d95b1e30a Mon Sep 17 00:00:00 2001
From: alecpl <alec@alec.pl>
Date: Tue, 09 Dec 2008 13:39:29 -0500
Subject: [PATCH] - IE fix for r2139 change

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

diff --git a/skins/default/common.css b/skins/default/common.css
index 0d90219..e86b2ec 100644
--- a/skins/default/common.css
+++ b/skins/default/common.css
@@ -84,7 +84,7 @@
   padding-left: 3px;
   padding-right: 3px;
   /* IE hacks for input elements */
-  border-style: expression(this.type=='checkbox' || this.type=='radio' ? 'none' : 'solid');
+  border-style: expression(this.type=='checkbox' || this.type=='radio' || this.id=='quicksearchbox' ? 'none' : 'solid');
   border-width: expression(this.type=='checkbox' || this.type=='radio' ? '0' : '1px');
   border-color: expression(this.type=='checkbox' || this.type=='radio' ? '' : '#666666');
   background-color: expression(this.type=='checkbox' || this.type=='radio' ? 'transparent' : '#ffffff');

--
Gitblit v1.9.1