SublimeText / Sass

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

Vendor pseudo classes #38

Closed sandrojohanides closed 5 years ago

sandrojohanides commented 5 years ago

Type selector (input/button) should be red for my color scheme, pseudo selectors white (with grey vendor part maybe).

screen shot 2018-11-26 at 10 37 16

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    box-shadow: inset 0 0 0 100px color(white);
}

screen shot 2018-11-26 at 12 43 50

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}