File tree Expand file tree Collapse file tree 5 files changed +14
-13
lines changed Expand file tree Collapse file tree 5 files changed +14
-13
lines changed Original file line number Diff line number Diff line change 1
1
syn match cssFontProp contained " \<\( justify\| align\| place\) -\( self\| content\| items\)\> "
2
+ syn match cssFontProp contained " \<\( grid-\)\=\(\( row\| column\) -\)\= gap\> "
2
3
syn keyword cssFontAttr contained safe unsafe legacy
3
4
syn match cssFontAttr contained " \<\( self\| flex\) -\( start\| end\)\> "
4
5
syn match cssFontAttr contained " \< space-\( between\| around\| evenly\)\> "
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ syn match cssFontProp contained "\<grid-template\(-\(columns\|rows\|areas\)\)\=\
2
2
syn match cssFontProp contained " \< grid-auto-\( columns\| rows\| flow\)\> "
3
3
syn match cssFontProp contained " \< grid-\( row\| column\)\( -\( start\| end\)\)\=\> "
4
4
syn match cssFontProp contained " \< grid-area\> "
5
- syn match cssFontProp contained " \< grid\( -\( column\| row\)\)\= -gap\> "
6
5
syn keyword cssFontAttr contained grid dense span
7
6
syn match cssFontAttr contained " \< inline-grid\> "
8
7
syn match cssFontAttr contained " \< auto-flow\> "
Original file line number Diff line number Diff line change 1
- " TODO: create cssMulticolProp group and cssMulticolAttr group
2
1
syn keyword cssFontProp contained columns
3
- syn match cssFontProp contained " \< column-\( count\| fill\| gap \| rule\( -\( color\| style\| width\)\)\=\| span\| width\)\> "
2
+ syn match cssFontProp contained " \< column-\( count\| fill\| rule\( -\( color\| style\| width\)\)\=\| span\| width\)\> "
4
3
syn keyword cssFontAttr contained balance
5
4
syn match cssFontAttr contained " \<\( avoid-\)\= column\> "
Original file line number Diff line number Diff line change 8
8
place-self : space-around;
9
9
place-content : space-between;
10
10
place-items : space-evenly;
11
- display : legacy;
11
+ row-gap : legacy;
12
+ column-gap : auto;
13
+ gap : auto;
14
+ grid-column-gap : auto;
15
+ grid-row-gap : auto;
16
+ grid-gap : auto;
12
17
}
13
18
14
19
.animations {
370
375
grid-column : auto;
371
376
grid-row : auto;
372
377
grid-area : auto;
373
- grid-column-gap : auto;
374
- grid-row-gap : auto;
375
- grid-gap : auto;
376
378
}
377
379
378
380
.images-3 {
502
504
columns : column;
503
505
column-count : balance;
504
506
column-fill : avoid-column;
505
- column-gap : auto;
506
507
column-rule : auto;
507
508
column-rule-color : auto;
508
509
column-rule-style : auto;
Original file line number Diff line number Diff line change 18
18
place-self : space-around;
19
19
place-content : space-between;
20
20
place-items : space-evenly;
21
- display : legacy;
21
+ row-gap : legacy;
22
+ column-gap : auto;
23
+ gap : auto;
24
+ grid-column-gap : auto;
25
+ grid-row-gap : auto;
26
+ grid-gap : auto;
22
27
}
23
28
</ style >
24
29
< style >
404
409
grid-column : auto;
405
410
grid-row : auto;
406
411
grid-area : auto;
407
- grid-column-gap : auto;
408
- grid-row-gap : auto;
409
- grid-gap : auto;
410
412
}
411
413
</ style >
412
414
< style >
545
547
columns : column;
546
548
column-count : balance;
547
549
column-fill : avoid-column;
548
- column-gap : auto;
549
550
column-rule : auto;
550
551
column-rule-color : auto;
551
552
column-rule-style : auto;
You can’t perform that action at this time.
0 commit comments