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

@inoas wrote:
> ```(motion: none)```

None is a reserved for truthy matching e.g. (not motion) meaning the 
default, so this won't work. How about this instead.

```
(prefers-reduced-motion: default) /* 'default' should be a non-truthy 
boolean match like 'none' */
(prefers-reduced-motion: reduce)
```

So that that authors could use the valueless shorthand:
`@media (prefers-reduced-motion) { /* disable excess motion */ }`


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

Received on Sunday, 25 September 2016 19:19:18 UTC