mirror of
https://github.com/hail2u/vim-css3-syntax.git
synced 2025-12-06 10:44:23 +08:00
Compare commits
6 Commits
089f388a9e
...
cc35f339d8
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
cc35f339d8 | ||
|
|
4f8d08e82b | ||
|
|
8d496ec664 | ||
|
|
349772545f | ||
|
|
000f04273c | ||
|
|
b7778bc209 |
3
after/syntax/css/color-hdr-1.vim
Normal file
3
after/syntax/css/color-hdr-1.vim
Normal file
@@ -0,0 +1,3 @@
|
||||
syn keyword cssFontProp contained dynamic-range-limit
|
||||
syn keyword cssFontAttr contained standard constrained-high
|
||||
syn region cssFunction contained matchgroup=cssFunctionName start="\<dynamic-range-limit-mix\s*(" end=")" oneline keepend
|
||||
2
after/syntax/css/display-4.vim
Normal file
2
after/syntax/css/display-4.vim
Normal file
@@ -0,0 +1,2 @@
|
||||
syn keyword cssFontProp contained reading-flow
|
||||
syn keyword cssFontAttr contained flex-visual flex-flow grid-rows grid-columns
|
||||
1
after/syntax/css/multicol-2.vim
Normal file
1
after/syntax/css/multicol-2.vim
Normal file
@@ -0,0 +1 @@
|
||||
syn keyword cssPseudoClassId contained column
|
||||
2
after/syntax/css/overflow-5.vim
Normal file
2
after/syntax/css/overflow-5.vim
Normal file
@@ -0,0 +1,2 @@
|
||||
syn keyword cssFontProp contained scroll-marker-group
|
||||
syn keyword cssPseudoClassId contained scroll-marker-group scroll-marker target-current
|
||||
@@ -1,3 +1,3 @@
|
||||
syn keyword cssFontProp contained interpolate-size
|
||||
syn keyword cssFontAttr contained numeric-only allow-keyword
|
||||
syn region cssFunction contained matchgroup=cssFunctionName start="\<\(\(\(media\|container\)-\)\=progress\|\(\(calc\|transform\)-\)\=mix\|cross-fade\|first-valid\|toggle\|random\(-item\)\=\|sibling-\(count\|index\)\|calc-size\)\s*(" end=")" oneline keepend
|
||||
syn region cssFunction contained matchgroup=cssFunctionName start="\<\(\(\(media\|container\)-\)\=progress\|\(\(calc\|transform\)-\)\=mix\|cross-fade\|first-valid\|toggle\|if\|inherit\|random\(-item\)\=\|sibling-\(count\|index\)\|calc-size\)\s*(" end=")" oneline keepend
|
||||
|
||||
@@ -176,6 +176,13 @@
|
||||
display: exact;
|
||||
}
|
||||
|
||||
.color-hdr-1 {
|
||||
dynamic-range-limit: auto;
|
||||
display: standard;
|
||||
display: constrained-high;
|
||||
display: dynamic-range-limit-mix(standard 10%, constrained-high 40%, high 50%);
|
||||
}
|
||||
|
||||
.compositing-1 {
|
||||
mix-blend-mode: auto;
|
||||
isolation: auto;
|
||||
@@ -332,6 +339,14 @@
|
||||
display: run-in;
|
||||
}
|
||||
|
||||
.display-4 {
|
||||
reading-flow: auto;
|
||||
display: flex-visual;
|
||||
display: flex-flow;
|
||||
display: grid-rows;
|
||||
display: grid-columns;
|
||||
}
|
||||
|
||||
.easing-1 {
|
||||
display: auto;
|
||||
}
|
||||
@@ -705,6 +720,10 @@ mask {
|
||||
display: balance-all;
|
||||
}
|
||||
|
||||
.multicol-2::column {
|
||||
display: auto:
|
||||
}
|
||||
|
||||
.namespace-3 {
|
||||
display: auto;
|
||||
}
|
||||
@@ -745,6 +764,12 @@ mask {
|
||||
display: fragments;
|
||||
}
|
||||
|
||||
.overflow-5::scroll-marker-group,
|
||||
.overflow-5::scroll-marker,
|
||||
.overflow-5:target-current {
|
||||
sroll-marker-group: auto;
|
||||
}
|
||||
|
||||
.overscroll-1 {
|
||||
overscroll-behavior: auto;
|
||||
overscroll-behavior-block: auto;
|
||||
@@ -1383,6 +1408,8 @@ view {
|
||||
display: cross-fade(15%, url(foo.png), white);
|
||||
display: toggle(italic, normal);
|
||||
display: first-valid(center, none, 1px);
|
||||
display: if(media(screen): red; else: auto);
|
||||
display: inherit(--foo, auto);
|
||||
display: random(1, 10, by 1);
|
||||
display: random-item(--x, red, yellow, green);
|
||||
display: sibling-count();
|
||||
|
||||
Reference in New Issue
Block a user