We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 132d1c2 commit 549b370Copy full SHA for 549b370
2 files changed
grammars/css.cson
@@ -1698,9 +1698,9 @@
1698
{
1699
'include': '#font-features'
1700
}
1701
- {
1702
- 'include': '#selector'
1703
- }
+ {'include':'selector'}
+ {'include':'at-rules'}
+ {'include':'rule-list'}
1704
1705
# Custom properties
1706
'match': '''(?x) (?<![\\w-])
testingUtil/source.css
@@ -1,13 +1,22 @@
1
+/* add test code here */
2
+
3
body {
4
font-family: Arial, sans-serif;
5
margin: 0;
6
padding: 0;
7
background-color: #f0f0f0;
8
- @media (min-width:400px) {
- font-family: Arial, sans-serif;
9
- margin: 0;
10
- padding: 0;
11
- background-color: #f0f0f0;
+ @media (min-width:400px) {}
+ a {
12
+ color: red;
13
14
+ b {
15
+ color: blue
16
+ }
17
-}
18
19
+}
20
21
22
+@media (min-width:400px) {}
0 commit comments