diff --git a/packages/node_modules/@node-red/editor-client/src/sass/notifications.scss b/packages/node_modules/@node-red/editor-client/src/sass/notifications.scss index 4903cff3d..e992485c5 100644 --- a/packages/node_modules/@node-red/editor-client/src/sass/notifications.scss +++ b/packages/node_modules/@node-red/editor-client/src/sass/notifications.scss @@ -80,20 +80,17 @@ @keyframes red-ui-notification-shake-horizontal { 0%, 100% { - -webkit-transform: translateX(0); transform: translateX(0); } 10%, 30%, 50%, 70% { - -webkit-transform: translateX(-1px); transform: translateX(-1px); } 20%, 40%, 60% { - -webkit-transform: translateX(1px); transform: translateX(1px); } } diff --git a/packages/node_modules/@node-red/editor-client/src/sass/palette.scss b/packages/node_modules/@node-red/editor-client/src/sass/palette.scss index 864f6225e..cd04de41b 100644 --- a/packages/node_modules/@node-red/editor-client/src/sass/palette.scss +++ b/packages/node_modules/@node-red/editor-client/src/sass/palette.scss @@ -106,17 +106,11 @@ position: absolute; left: 6px; top: 6px; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - -webkit-transform: rotate(-90deg); - -moz-transform: rotate(-90deg); - -o-transform: rotate(-90deg); + transition: all 0.2s ease-in-out; + transform: rotate(-90deg); } .red-ui-palette-header i.expanded { - -webkit-transform: rotate(0deg); - -moz-transform: rotate(0deg); - -o-transform: rotate(0deg); + transform: rotate(0deg); } .red-ui-palette-header span { clear: both; @@ -164,7 +158,6 @@ top:8px; left: -5px; box-sizing: border-box; - -moz-box-sizing: border-box; background: var(--red-ui-node-port-background); border-radius: 3px; width: 10px; diff --git a/packages/node_modules/@node-red/editor-client/src/sass/tourGuide.scss b/packages/node_modules/@node-red/editor-client/src/sass/tourGuide.scss index a22c07f7f..7bc2edb60 100644 --- a/packages/node_modules/@node-red/editor-client/src/sass/tourGuide.scss +++ b/packages/node_modules/@node-red/editor-client/src/sass/tourGuide.scss @@ -110,15 +110,12 @@ // 0%, // 10%, // 100% { -// -webkit-transform: translateY(0); // transform: translateY(0); // } // 2%,8% { -// -webkit-transform: translateY(-5px); // transform: translateY(-5px); // } // 5% { -// -webkit-transform: translateY(5px); // transform: translateY(5px); // } // } diff --git a/packages/node_modules/@node-red/editor-client/src/sass/ui/common/searchBox.scss b/packages/node_modules/@node-red/editor-client/src/sass/ui/common/searchBox.scss index 8788ed6a7..da4da3464 100644 --- a/packages/node_modules/@node-red/editor-client/src/sass/ui/common/searchBox.scss +++ b/packages/node_modules/@node-red/editor-client/src/sass/ui/common/searchBox.scss @@ -49,7 +49,6 @@ border: none; width: 100%; box-shadow: none; - -webkit-box-shadow: none; padding: 3px 17px 3px 22px; margin: 0px; height: 30px; @@ -58,7 +57,6 @@ &:focus { border: none; box-shadow: none; - -webkit-box-shadow: none; } } a { @@ -114,4 +112,4 @@ top: 3px; padding: 0 6px; } -} \ No newline at end of file +}