Rob Dodson
Rob Dodson
@notwaldorf I'd really like to help but I don't think I have time to dig into all of these test failures :\
crazy question... can `max-width/min-width` be set with a custom property?
Yeah [in my post I covered something similar](https://developers.google.com/web/updates/2016/02/css-variables-why-should-you-care?hl=en). ``` :root { --gutter: 4px; } section { margin: var(--gutter); } @media (min-width: 600px) { :root { --gutter: 16px; } } ```...
oh sorry I wasn't talking specifically about the use of a `gutter` property, just referring to the approach that @kenchris had also previously referred to of having the element rely...
Is this the ChromeVox extension (aka ChromeVox classic), or ChromeVox on ChromeOS?
I'm working on a fix for paper-tabs
No I was planning to leave it inside the tab. Basically doing the fix proposed here: https://github.com/PolymerElements/paper-tabs/issues/141
btw that paper-item fix seems wrong. If the anchor is tabindex=-1 you'll never be able to activate it from a keyboard. It'll only work for mouse users
hm actually it does seem to work. I guess the anchor picks up the event dispatched from the inner child and it gets counted as an anchor click
@abdonrd I agree. We would have to change the way paper-tabs does distribution to make the other proposal work which would be a pretty big change.