Compare commits

..

5 Commits

Author SHA1 Message Date
Kyo Nagashima
84924b8934 2.8.0 2025-07-09 06:58:49 +09:00
Kyo Nagashima
24934b32da Update pseudo-4.vim
https://www.w3.org/TR/2025/WD-css-pseudo-4-20250627/
2025-06-30 16:16:44 +09:00
Kyo Nagashima
661a91f249 Fix indentations 2025-06-23 18:00:11 +09:00
Kyo Nagashima
50adac88c4 Update shapes-1.vim
https://www.w3.org/TR/2025/CRD-css-shapes-1-20250612/
2025-06-13 08:29:59 +09:00
Kyo Nagashima
1fc1ff5799 Add mixins-1.vim
https://www.w3.org/TR/2025/WD-css-mixins-1-20250515/
2025-05-27 07:22:14 +09:00
4 changed files with 40 additions and 31 deletions

View File

@@ -0,0 +1,2 @@
syn keyword cssFontProp contained result
syn match cssFontDescriptor "@function\>" nextgroup=cssFontDescriptorBlock skipwhite skipnl

View File

@@ -1 +1 @@
syn keyword cssPseudoClassId contained prefix postfix target-text spelling-error grammer-error file-selectors-button syn keyword cssPseudoClassId contained prefix suffix target-text spelling-error grammer-error file-selectors-button search-text details-content

View File

@@ -1,3 +1,3 @@
syn keyword cssFontProp contained shape-outside shape-image-threshold shape-margin syn keyword cssFontProp contained shape-outside shape-image-threshold shape-margin
syn keyword cssFontAttr contained margin-box syn keyword cssFontAttr contained margin-box
syn region cssFunction contained matchgroup=cssFunctionName start="\<\(inset\|circle\|ellipse\|polygon\)\s*(" end=")" oneline keepend syn region cssFunction contained matchgroup=cssFunctionName start="\<\(inset\|circle\|ellipse\|polygon\|shape\)\s*(" end=")" oneline keepend

View File

@@ -763,6 +763,10 @@ mask {
mask-type: auto; mask-type: auto;
} }
@function mixins-1() {
result: auto;
}
.motion-1 { .motion-1 {
offset-path: auto; offset-path: auto;
offset-distance: auto; offset-distance: auto;
@@ -882,11 +886,13 @@ mask {
} }
.pseudo-4::first-letter::prefix, .pseudo-4::first-letter::prefix,
.pseudo-4::first-letter::postfix, .pseudo-4::first-letter::suffix,
.pseudo-4::target-text, .pseudo-4::target-text,
.pseudo-4::spelling-error, .pseudo-4::spelling-error,
.pseudo-4::grammer-error, .pseudo-4::grammer-error,
.pseudo-4::file-selectors-button { .pseudo-4::file-selectors-button,
.pseudo-4::search-text,
.pseudo-4::details-content {
display: auto; display: auto;
} }
@@ -1095,6 +1101,7 @@ mask {
display: circle(100px 50px 100px); display: circle(100px 50px 100px);
display: ellipse(0 0 250px 100px); display: ellipse(0 0 250px 100px);
display: polygon(0 0, 100% 100%, 0 100%); display: polygon(0 0, 100% 100%, 0 100%);
display: shape(from 0% 0%, hline to 100%, line to 0% 100%, vline to 0%);
} }
.sizing-3 { .sizing-3 {