SublimeText / Sass

Sass and SCSS syntax for Sublime Text
https://packagecontrol.io/packages/Sass
MIT License
51 stars 8 forks source link

Vendor pseudo elements #39

Closed sandrojohanides closed 5 years ago

sandrojohanides commented 5 years ago

Vendor parts of pseudo elements are grey, please close if on purpose.

screen shot 2018-11-26 at 10 38 13

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    appearance: none;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    appearance: none;
}

input::-ms-clear,
input::-ms-reveal {
    display: none;

    width: 0;
    height: 0;
}
braver commented 5 years ago

@sandrojohanides This is indeed on purpose, the vendor-prefixes should stand out from the keyword itself. These look correct to me.

Thanks by the way for all the reports. You make it super easy to work with, with each separate issue and the code snippets. Really appreciated! 🏅 💯 👍

sandrojohanides commented 5 years ago

Thank YOU.