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

Commit

Permalink
Merge pull request #11786 from myakura/fix-cubic-bezier-suggestion
Browse files Browse the repository at this point in the history
remove predefined values from cubic-bezier()
  • Loading branch information
abose committed Nov 19, 2015
2 parents 3cec328 + 247f0e2 commit 94f4f6e
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/extensions/default/CSSCodeHints/CSSProperties.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"animation-iteration-count": {"values": ["infinite"]},
"animation-name": {"values": ["none"]},
"animation-play-state": {"values": ["paused", "running"]},
"animation-timing-function": {"values": ["cubic-bezier(.42, 0, .58, 1)", "ease", "ease-in", "ease-in-out", "ease-out", "linear", "step-end", "step-start", "steps()"]},
"animation-timing-function": {"values": ["cubic-bezier()", "ease", "ease-in", "ease-in-out", "ease-out", "linear", "step-end", "step-start", "steps()"]},
"backface-visibility": {"values": ["hidden", "visible"]},
"background": {"values": []},
"background-attachment": {"values": ["fixed", "local", "scroll", "inherit"]},
Expand Down Expand Up @@ -38,7 +38,7 @@
"border-image-slice": {"values": []},
"border-image-source": {"values": []},
"border-image-repeat": {"values": ["repeat", "round", "space", "stretch"]},
"border-image-width": {"values": ["auto"]},
"border-image-width": {"values": ["auto"]},
"border-left": {"values": []},
"border-left-color": {"values": ["inherit"], "type": "color"},
"border-left-style": {"values": ["dashed", "dotted", "double", "groove", "hidden", "inset", "none", "outset", "ridge", "solid", "inherit"]},
Expand Down Expand Up @@ -196,7 +196,7 @@
"transition-delay": {"values": []},
"transition-duration": {"values": []},
"transition-property": {"values": ["all", "none"]},
"transition-timing-function": {"values": ["cubic-bezier(.42, 0, .58, 1)", "ease", "ease-in", "ease-in-out", "ease-out", "linear", "step-end", "step-start", "steps()"]},
"transition-timing-function": {"values": ["cubic-bezier()", "ease", "ease-in", "ease-in-out", "ease-out", "linear", "step-end", "step-start", "steps()"]},
"unicode-bidi": {"values": ["bidi-override", "embed", "normal", "inherit"]},
"unicode-range": {"values": []},
"vertical-align": {"values": ["baseline", "bottom", "middle", "sub", "super", "text-bottom", "text-top", "top", "inherit"]},
Expand All @@ -209,4 +209,3 @@
"word-wrap": {"values": ["break-word", "normal"]},
"z-index": {"values": ["auto", "inherit"]}
}

0 comments on commit 94f4f6e

Please sign in to comment.