We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e73f09c commit 2f11a47Copy full SHA for 2f11a47
CSS3.sublime-syntax
@@ -486,6 +486,9 @@ contexts:
486
- match: '}'
487
scope: punctuation.section.at-media.end.css
488
pop: true
489
+ - match: ';'
490
+ scope: punctuation.terminator.layer.css
491
+ pop: true
492
- match: '{'
493
scope: punctuation.section.at-media.begin.css
494
push:
@@ -495,6 +498,8 @@ contexts:
495
498
- include: nestable-at-rules
496
499
- include: properties
497
500
- include: rule
501
+ - include: identifier
502
+ - include: stray-semicolon
503
- include: stray-brace
504
505
at-namespace:
test/at-layer.css
@@ -1,3 +1,5 @@
1
+@layer test.bar, test;
2
+
3
@layer test {
4
foo {
5
color: red;
@@ -8,4 +10,4 @@
8
10
bar {
9
11
color: blue;
12
}
-}
13
+}
0 commit comments