提交 0843571e 编写于 作者: M Martin Aeschlimann

Remove built-in CSS snippets. Fixes #38152

上级 244d7113
......@@ -44,12 +44,6 @@
"path": "./syntaxes/css.tmLanguage.json"
}
],
"snippets": [
{
"language": "css",
"path": "./snippets/css.json"
}
],
"configuration": [
{
"order": 22,
......
{
"transition property": {
"prefix": "transition",
"body": [
"-webkit-transition: ${1:property} ${2:duration} ${3:timing-function} ${4:delay};",
"-moz-transition: ${1:property} ${2:duration} ${3:timing-function} ${4:delay};",
"transition: ${1:property} ${2:duration} ${3:timing-function} ${4:delay};"
],
"description": "The transition property across browsers"
},
"border": {
"prefix": "border",
"body": [
"border: ${1:width} ${2:border-style} ${3:color};$0"
],
"description": "[width] [border-style] [color]"
},
"gradient": {
"prefix": "gradient",
"body": [
"background-image: -webkit-gradient(linear, left top, left bottom, from(${1:start-color}), to(${2:end-color}));",
"background-image: -webkit-linear-gradient(top, ${1:start-color}, ${2:end-color});",
"background-image: -moz-linear-gradient(top, ${1:start-color}, ${2:end-color});",
"background-image: linear-gradient(to bottom, ${1:start-color}, ${2:end-color});"
],
"description": "Set the 'background-image' property to a linear gradient"
}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册