diff options
author | alecpl <alec@alec.pl> | 2008-12-05 07:19:35 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2008-12-05 07:19:35 +0000 |
commit | 7f43e18fde11cf30a8b8fbe71ab5e2a0dba823f8 (patch) | |
tree | 3a1372ccbc124d8c6601d2437164d5a678c402f8 /skins/default/common.css | |
parent | 39cd51aff59d8a85321474ee573b09b507b3f24e (diff) |
#1485605: some css fixes for IE6
Diffstat (limited to 'skins/default/common.css')
-rw-r--r-- | 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 2ba57f55f..12cc2713b 100644 --- a/skins/default/common.css +++ b/skins/default/common.css @@ -73,6 +73,9 @@ input, textarea 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"], |