MarioRicalde / SCSS.tmbundle

The TextMate SCSS Official Bundle. Now Compatible with SublimeText2.
834 stars 110 forks source link

A few SCSS highlight problems grouped together #133

Closed pepelsbey closed 11 years ago

pepelsbey commented 11 years ago

Numbers in URL: 400, 700? Screen Shot 2013-02-07 at 3 00 46

@import url(http://fonts.googleapis.com/css?family=PT+Sans:400,700,400italic,700italic&subset=latin,cyrillic);
@import url(http://fonts.googleapis.com/css?family=PT+Sans+Narrow:400,700&subset=latin,cyrillic);

Pseudo elements: unknown + something with dash in first prefixed Screen Shot 2013-02-07 at 2 58 16

body {
    p::after {}
    p::before {}
    p::first-letter {}
    p::first-line {}
    p::selection {}

    p::-webkit-selection {}
    p::-moz-selection {}
    p::-moz-focus-inner {}
    p::-webkit-input-placeholder {}

    p:matches() {}
    p:matches()
    a:any-link {}
    a:local-link {}
    a:local-link(0) {}
    p:nth-match() {}
    p:column() {}
    p:nth-column() {}
    }

First nested property inside pseudo elements is not highlighted Screen Shot 2013-02-07 at 2 58 24

p::-webkit-selection { border:none; }
p::-webkit-selection { border:none; }
body {
    p::-webkit-selection { border:none; }
    p::-webkit-selection { border:none; }
    }