You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
spectrum.css contains css properties prefixed with "*" chars within the ".sp-container", ".sp-cf", ".sp-replacer", and ".sp-palette" selectors. For example:
*display: inline;
*zoom: 1;
I assume this is the "IE7 star property hack" described here:
I believe that some of these could be removed entirely - for instance, we could replace the existing clearfix hack with this one: https://github.com/h5bp/html5-boilerplate/blob/master/css/main.css#L173. Conditional comments would be possible, but I'm not sure if those would target more recent versions that don't need the props specified after the star to be applied.
spectrum.css contains css properties prefixed with "*" chars within the ".sp-container", ".sp-cf", ".sp-replacer", and ".sp-palette" selectors. For example:
I assume this is the "IE7 star property hack" described here:
http://www.ejeliot.com/blog/63
Safari 7.0.2 (and possibly earlier versions of Safari) logs warnings about these lines:
Perhaps to avoid these warnings, IE conditional comments could be used instead to set IE7-specific styles.
The text was updated successfully, but these errors were encountered: