mirror of
https://github.com/microsoft/vscode.git
synced 2026-03-02 14:58:43 +00:00
19 lines
589 B
JSON
19 lines
589 B
JSON
{
|
|
"transition property": {
|
|
"prefix": "transition",
|
|
"body": [
|
|
"transition: ${property} ${duration} ${timing-function} ${delay};",
|
|
"-webkit-transition: ${property} ${duration} ${timing-function} ${delay};",
|
|
"-o-transition: ${property} ${duration} ${timing-function} ${delay};",
|
|
"-moz-transition: ${property} ${duration} ${timing-function} ${delay};"
|
|
],
|
|
"description": "The transition property across browsers"
|
|
},
|
|
"border": {
|
|
"prefix": "border",
|
|
"body": [
|
|
"border: ${width} ${border-style} ${color};$0"
|
|
],
|
|
"description": "[width] [border-style] [color]"
|
|
}
|
|
} |