﻿id,summary,reporter,owner,description,type,status,priority,milestone,component,version,severity,resolution,keywords,cc
22122,Conditional CSS to EXCEPT IE,syndrael,,"Hello


Sorry for my poor english


In class.wp-styles.php line 69 (and following ones) must be replaced by those line below. 

Like that, we can except IE for a CSS thanks to conditional '!IE'

{{{
if ( isset($obj->extra['conditional']) && $obj->extra['conditional'] ) {
			if($obj->extra['conditional'] != '!IE'):
				$tag .= ""<!--[if {$obj->extra['conditional']}]>\n"";
				$end_cond = ""<![endif]-->\n"";
			else: //<![if !IE]> .. <![endif]>
				$tag .= ""<![if {$obj->extra['conditional']}]>\n"";
				$end_cond = ""<![endif]>\n"";
			endif;
		}
}}}




I hope it will be helpful for you.


Best regards form Paris France",enhancement,closed,normal,,General,3.4.2,normal,duplicate,,sebastien@…
