Compare commits

..

16 Commits

Author SHA1 Message Date
Kyo Nagashima
158c39b3ee 1.10.1 2022-05-11 10:46:02 +09:00
Kyo Nagashima
5c104fcfee Update text-decor-4.vim
https://www.w3.org/TR/2022/WD-css-text-decor-4-20220504/
2022-05-11 10:44:46 +09:00
Kyo Nagashima
bbf675f5fd Update will-change-1.vim
https://www.w3.org/TR/2022/CRD-css-will-change-1-20220505/
2022-05-11 10:41:56 +09:00
Kyo Nagashima
87283273b0 Update selectors-4.vim
https://www.w3.org/TR/2022/WD-selectors-4-20220507/
2022-05-09 06:35:42 +09:00
Kyo Nagashima
329a8f8bdf Update text-4.vim
https://www.w3.org/TR/2022/WD-css-text-4-20220505/
2022-05-05 19:26:38 +09:00
Kyo Nagashima
529d0f5c5a Update text-decor-3.vim
https://www.w3.org/TR/2022/CRD-css-text-decor-3-20220505/
2022-05-05 19:21:12 +09:00
Kyo Nagashima
77022dc970 Update text-3.vim
https://www.w3.org/TR/2022/CRD-css-text-3-20220505/
2022-05-05 19:19:51 +09:00
Kyo Nagashima
0318de664c Update colors-5.vim
https://www.w3.org/TR/2022/WD-css-color-5-20220428/
2022-04-30 06:53:52 +09:00
Kyo Nagashima
090a873101 Update colors-4.vim
https://www.w3.org/TR/2022/WD-css-color-4-20220428/
2022-04-30 06:53:37 +09:00
Kyo Nagashima
9a24ae3c6f Update text-4.vim
https://www.w3.org/TR/2022/WD-css-text-4-20220318/
2022-03-22 08:01:24 +09:00
Kyo Nagashima
cb69880032 Update color-3.vim
https://www.w3.org/TR/2022/REC-css-color-3-20220118/
2022-03-03 15:47:03 +09:00
Kyo Nagashima
0e04cfbb09 Update conditional-4.vim
https://www.w3.org/TR/2022/CR-css-conditional-4-20220217/
2022-02-19 07:47:51 +09:00
Kyo Nagashima
3c4f1d2057 Update color-adjust-1.vim
https://www.w3.org/TR/2022/CR-css-color-adjust-1-20220210/
2022-02-12 07:55:42 +09:00
Kyo Nagashima
a60106e39b Update conditional-3.vim
https://www.w3.org/TR/2022/CR-css-conditional-3-20220113/
2022-01-14 08:09:32 +09:00
Kyo Nagashima
ba1986d07d Update cascade-5.vim
https://www.w3.org/TR/2022/CR-css-cascade-5-20220113/
2022-01-14 08:09:16 +09:00
Kyo Nagashima
671f8ea579 Update cascade-4.vim
https://www.w3.org/TR/2022/CR-css-cascade-4-20220113/
2022-01-14 08:09:08 +09:00
3 changed files with 21 additions and 3 deletions

View File

@@ -1,10 +1,12 @@
syn match cssSelectorOp "[|]"
syn keyword cssPseudoClassId contained scope current past future default valid required optional blank playing paused
syn keyword cssPseudoClassId contained scope current past future default valid required optional blank playing paused defined modal fullscreen seeking buffering stalled muted autofill
syn match cssPseudoClassId contained "\<\(any\|local\)-link\>"
syn match cssPseudoClassId contained "\<read-\(only\|write\)\>"
syn match cssPseudoClassId contained "\<placeholder-shown\>"
syn match cssPseudoClassId contained "\<\(in\|out-of\)-range\>"
syn match cssPseudoClassId contained "\<user-invalid\>"
syn match cssPseudoClassId contained "\<user-\(invalid\|valid\)\>"
syn match cssPseudoClassId contained "\<target-within\>"
syn match cssPseudoClassId contained "\<focus-\(within\|visible\)\>"
syn match cssPseudoClassId contained "\<picture-in-picture\>"
syn match cssPseudoClassId contained "\<volume-locked\>"
syn region cssPseudoClassLang matchgroup=cssPseudoClassId start=":\(is\|dir\|local-link\|current\|nth\(-last\)\=-col\|has\|where\)(" end=")" oneline

View File

@@ -3,6 +3,7 @@ syn match cssTextProp contained "\<text-\(wrap\|spacing\|group-align\)\>"
syn match cssTextProp contained "\<wrap-\(before\|after\|inside\)\>"
syn match cssTextProp contained "\<hyphenate-\(character\|limit-\(zone\|chars\|lines\|last\)\)\>"
syn match cssTextProp contained "\<line-padding\>"
syn match cssTextProp contained "\<word-boundary-\(detection\|expansion\)\>"
syn keyword cssTextAttr contained spread punctuation
syn match cssTextAttr contained "\<preserve-\(breaks\|spaces\)\>"
syn match cssTextAttr contained "\<trim-inner\>"
@@ -14,3 +15,4 @@ syn match cssTextAttr contained "\<\(trim\|space\)-\(start\|end\|adjacent\)\>"
syn match cssTextAttr contained "\<space-first\>"
syn match cssTextAttr contained "\<no-compress\>"
syn match cssTextAttr contained "\<ideograph-\(alpha\|numeric\)\>"
syn match cssTextAttr contained "\<ideographic-space\>"

View File

@@ -869,7 +869,18 @@ mask {
.selectors-4:playing,
.selectors-4:paused,
.selectors-4:has(> img),
.selectors-4:where(:not(:hover)) {
.selectors-4:where(:not(:hover)),
.selectors-4:defined,
.selectors-4:modal,
.selectors-4:fullscreen,
.selectors-4:picture-in-picture,
.selectors-4:seeking,
.selectors-4:buffering,
.selectors-4:stalled,
.selectors-4:muted,
.selectors-4:volume-locked,
.selectors-4:autofill,
.selectors-4:user-valid {
display: auto;
}
@@ -1074,6 +1085,8 @@ view {
text-group-align: auto;
line-padding: auto;
text-spacing: auto;
word-boundary-detection: auto;
word-boundary-expansion: auto;
display: preserve-breaks;
display: preserve-spaces;
display: trim-inner;
@@ -1095,6 +1108,7 @@ view {
display: ideograph-alpha;
display: ideograph-numeric;
display: punctuation;
display: ideographic-space;
}
.text-decor-3 {