File tree 4 files changed +27
-0
lines changed
4 files changed +27
-0
lines changed Original file line number Diff line number Diff line change
1
+ syn match cssFontProp contained " \< shape-inside\> "
2
+ syn match cssFontProp contained " \< border-boundary\> "
3
+ syn match cssFontProp contained " \< polar-\( angle\| distance\)\> "
4
+ syn keyword cssFontAttr contained parent polar
5
+ syn match cssFontAttr contained " \< outside-shape\> "
6
+ syn match cssFontAttr contained " \< shape-box\> "
7
+ syn match cssMediaProp contained / device-radius/
Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ syn include @htmlCss syntax/css/css-masking-1.vim
34
34
syn include @htmlCss syntax/css/css-overflow-3.vim
35
35
syn include @htmlCss syntax/css/css-pseudo-4.vim
36
36
syn include @htmlCss syntax/css/css-page-floats-3.vim
37
+ syn include @htmlCss syntax/css/css-round-display-1.vim
37
38
syn include @htmlCss syntax/css/css-ruby-1.vim
38
39
syn include @htmlCss syntax/css/css-scoping-1.vim
39
40
syn include @htmlCss syntax/css/css-shapes-1.vim
Original file line number Diff line number Diff line change 377
377
display : avoid-region;
378
378
}
379
379
380
+ @media (device-radius : 50% ) {
381
+ .round-display-1 {
382
+ shape-inside : outside-shape;
383
+ border-boundary : shape-box;
384
+ polar-angle : parent;
385
+ polar-distance : polar;
386
+ }
387
+ }
388
+
380
389
.ruby {
381
390
ruby-position : ruby-base-container;
382
391
ruby-merge : ruby-text-container;
Original file line number Diff line number Diff line change 416
416
}
417
417
</ style >
418
418
< style >
419
+ @media (device-radius : 50% ) {
420
+ .round-display-1 {
421
+ shape-inside : outside-shape;
422
+ border-boundary : shape-box;
423
+ polar-angle : parent;
424
+ polar-distance : polar;
425
+ }
426
+ }
427
+ </ style >
428
+ < style >
419
429
.ruby {
420
430
ruby-position : ruby-base-container;
421
431
ruby-merge : ruby-text-container;
You can’t perform that action at this time.
0 commit comments