Re: [csswg-drafts] [mediaqueries] Media Feature: "reduce motion" user setting

@frivoal wrote:

> …you'd use the query in a boolean context, without much concern for 
whether you were merely requested to turn transparency off, or if you 
wouldn't get transparency anyway:
```css
@media (reduce-transparency) { /* good opaque variant of your design*/
 }
```

Assuming we have one or more vendors shipping a combination of both 
forced "capability-features" and non-forced "preference-features", 
it'd be less ambiguous (though admittedly more verbose) to join two 
separate media features in a query:
```css
@media (transparency-preference: reduce) or (transparency: disabled) {
 
    /* good opaque variant of your design */ 
}
```

-- 
GitHub Notification of comment by cookiecrook
Please view or discuss this issue at 
https://github.com/w3c/csswg-drafts/issues/442#issuecomment-265550025 
using your GitHub account

Received on Wednesday, 7 December 2016 19:37:47 UTC