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

Commit 855d339

Browse files
committed
Initial commit.
1 parent 8c3bc01 commit 855d339

1 file changed

Lines changed: 7 additions & 11 deletions

File tree

src/LiveDevelopment/Agents/RemoteFunctions.js

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -254,27 +254,23 @@ function RemoteFunctions(experimental) {
254254
"border-bottom-right-radius": styles.borderBottomRightRadius,
255255
"border-style": "solid",
256256
"border-width": "1px",
257-
"border-color": "rgb(94,167,255)",
257+
"border-color": "#00a2ff",
258258
"box-sizing": "border-box"
259259
};
260260

261261
var animateStartValues = {
262-
"opacity": 0,
263-
"background": "rgba(94,167,255, 0.5)",
264-
"box-shadow": "0 0 6px 1px rgba(94,167,255, 0.6), inset 0 0 4px 1px rgba(255,255,255,1)"
262+
"opacity": 0
265263
};
266264

267265
var animateEndValues = {
268-
"opacity": 1,
269-
"background": "rgba(94,167,255, 0.1)",
270-
"box-shadow": "0 0 1px 0 rgba(94,167,255, 0), inset 0 0 4px 1px rgba(255,255,255,0.8)"
266+
"opacity": 1
271267
};
272268

273269
var transitionValues = {
274-
"-webkit-transition-property": "opacity, box-shadow, background",
275-
"-webkit-transition-duration": "0.3s, 0.4s, 0.4s",
276-
"transition-property": "opacity, box-shadow, background",
277-
"transition-duration": "0.3s, 0.4s, 0.4s"
270+
"-webkit-transition-property": "opacity",
271+
"-webkit-transition-duration": "0.3s",
272+
"transition-property": "opacity",
273+
"transition-duration": "0.3s"
278274
};
279275

280276
function _setStyleValues(styleValues, obj) {

0 commit comments

Comments
 (0)