Add conditional-5.vim

https://www.w3.org/TR/2021/WD-css-conditional-5-20211221/
This commit is contained in:
Kyo Nagashima
2021-12-23 07:54:01 +09:00
parent 479dc522a7
commit 9d7741a59f
2 changed files with 14 additions and 1 deletions

View File

@@ -0,0 +1 @@
syn match cssFontDescriptor "@\(when\|else\)\>" nextgroup=cssFontDescriptorBlock skipwhite skipnl

View File

@@ -141,7 +141,19 @@
}
@supports (selector(.conditional-4)) {
display: auto;
.conditional-4 {
display: auto;
}
}
@when media(screen) {
.conditional-5 {
display: auto;
}
} @else {
.conditional-5 {
display: auto;
}
}
.contain-1 {