update components
This commit is contained in:
parent
5e3ab690af
commit
90eb88f883
1155 changed files with 62261 additions and 84 deletions
47
dashboard-ui/bower_components/prism/tests/languages/css/atrule_feature.test
vendored
Normal file
47
dashboard-ui/bower_components/prism/tests/languages/css/atrule_feature.test
vendored
Normal file
|
@ -0,0 +1,47 @@
|
|||
@import url(foo.css);
|
||||
@media print {}
|
||||
@media (min-width: 640px) and (min-height: 1000px) {}
|
||||
@main-color: red;
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
[
|
||||
["atrule", [
|
||||
["rule", "@import"],
|
||||
["url", "url(foo.css)"],
|
||||
["punctuation", ";"]
|
||||
]],
|
||||
["atrule", [
|
||||
["rule", "@media"],
|
||||
" print"
|
||||
]],
|
||||
["punctuation", "{"],
|
||||
["punctuation", "}"],
|
||||
["atrule", [
|
||||
["rule", "@media"],
|
||||
["punctuation", "("],
|
||||
["property", "min-width"],
|
||||
["punctuation", ":"],
|
||||
" 640px",
|
||||
["punctuation", ")"],
|
||||
" and ",
|
||||
["punctuation", "("],
|
||||
["property", "min-height"],
|
||||
["punctuation", ":"],
|
||||
" 1000px",
|
||||
["punctuation", ")"]
|
||||
]],
|
||||
["punctuation", "{"],
|
||||
["punctuation", "}"],
|
||||
["atrule", [
|
||||
["rule", "@main-color"],
|
||||
["punctuation", ":"],
|
||||
" red",
|
||||
["punctuation", ";"]
|
||||
]]
|
||||
]
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
Checks for at-rules.
|
||||
Also checks for LESS variables.
|
Loading…
Add table
Add a link
Reference in a new issue