Skip to content
This repository was archived by the owner on Sep 6, 2021. It is now read-only.

Commit 94f4f6e

Browse files
committed
Merge pull request #11786 from myakura/fix-cubic-bezier-suggestion
remove predefined values from cubic-bezier()
2 parents 3cec328 + 247f0e2 commit 94f4f6e

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/extensions/default/CSSCodeHints/CSSProperties.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"animation-iteration-count": {"values": ["infinite"]},
1111
"animation-name": {"values": ["none"]},
1212
"animation-play-state": {"values": ["paused", "running"]},
13-
"animation-timing-function": {"values": ["cubic-bezier(.42, 0, .58, 1)", "ease", "ease-in", "ease-in-out", "ease-out", "linear", "step-end", "step-start", "steps()"]},
13+
"animation-timing-function": {"values": ["cubic-bezier()", "ease", "ease-in", "ease-in-out", "ease-out", "linear", "step-end", "step-start", "steps()"]},
1414
"backface-visibility": {"values": ["hidden", "visible"]},
1515
"background": {"values": []},
1616
"background-attachment": {"values": ["fixed", "local", "scroll", "inherit"]},
@@ -38,7 +38,7 @@
3838
"border-image-slice": {"values": []},
3939
"border-image-source": {"values": []},
4040
"border-image-repeat": {"values": ["repeat", "round", "space", "stretch"]},
41-
"border-image-width": {"values": ["auto"]},
41+
"border-image-width": {"values": ["auto"]},
4242
"border-left": {"values": []},
4343
"border-left-color": {"values": ["inherit"], "type": "color"},
4444
"border-left-style": {"values": ["dashed", "dotted", "double", "groove", "hidden", "inset", "none", "outset", "ridge", "solid", "inherit"]},
@@ -196,7 +196,7 @@
196196
"transition-delay": {"values": []},
197197
"transition-duration": {"values": []},
198198
"transition-property": {"values": ["all", "none"]},
199-
"transition-timing-function": {"values": ["cubic-bezier(.42, 0, .58, 1)", "ease", "ease-in", "ease-in-out", "ease-out", "linear", "step-end", "step-start", "steps()"]},
199+
"transition-timing-function": {"values": ["cubic-bezier()", "ease", "ease-in", "ease-in-out", "ease-out", "linear", "step-end", "step-start", "steps()"]},
200200
"unicode-bidi": {"values": ["bidi-override", "embed", "normal", "inherit"]},
201201
"unicode-range": {"values": []},
202202
"vertical-align": {"values": ["baseline", "bottom", "middle", "sub", "super", "text-bottom", "text-top", "top", "inherit"]},
@@ -209,4 +209,3 @@
209209
"word-wrap": {"values": ["break-word", "normal"]},
210210
"z-index": {"values": ["auto", "inherit"]}
211211
}
212-

0 commit comments

Comments
 (0)