Re: [css-cascade] Allowing @import to be conditional on @supports queries

On Fri, Mar 20, 2015 at 4:34 AM, Florian Rivoal <florian@rivoal.net> wrote:
> One of the downside of this is that it requires double parentheses in simple cases:
>
> @import "http://example.com/foo.css" supports((display:flex));
>
> It made sense to mandate the parentheses in the @support rule, but they seem overkill here, and is probably surprising for authors. We could do:
>
> @import <url> [ supports(<supports-condition> | <declaration>) ]? <media-query-list>? ;
>
> which would let you write:
>
> @import "http://example.com/foo.css" supports(display:flex);

I think fantasai brought this up as well.  I can go either way, though
I'll note that we explicitly rejected this for CSS.supports().

~TJ

Received on Friday, 20 March 2015 17:53:11 UTC