diff --git a/platform/commonUI/general/res/sass/_mixins.scss b/platform/commonUI/general/res/sass/_mixins.scss index adf4540c94c..2f54a6ff96b 100644 --- a/platform/commonUI/general/res/sass/_mixins.scss +++ b/platform/commonUI/general/res/sass/_mixins.scss @@ -363,14 +363,13 @@ } } -@mixin webkitProp($name, $val) { - #{$name}: #{$val}; - -webkit-#{$name}: #{$val}; -} - -@mixin webkitVal($name, $val) { - #{$name}: #{$val}; - #{$name}: -webkit-#{$val}; +@mixin cursorGrab() { + cursor: grab; + cursor: -webkit-grab; + &:active { + cursor: grabbing; + cursor: -webkit-grabbing; + } } @mixin verticalCenter { diff --git a/platform/features/conductor-v2/conductor/res/sass/_time-conductor-base.scss b/platform/features/conductor-v2/conductor/res/sass/_time-conductor-base.scss index 93664e5a5f0..629c17f7262 100644 --- a/platform/features/conductor-v2/conductor/res/sass/_time-conductor-base.scss +++ b/platform/features/conductor-v2/conductor/res/sass/_time-conductor-base.scss @@ -345,6 +345,9 @@ .mode-selector .s-menu-button:before { content: $i; } + .l-axis-holder { + @include cursorGrab(); + } } // Realtime mode diff --git a/platform/features/conductor-v2/conductor/res/templates/time-conductor.html b/platform/features/conductor-v2/conductor/res/templates/time-conductor.html index b5fff58dcec..6fb06dffcd3 100644 --- a/platform/features/conductor-v2/conductor/res/templates/time-conductor.html +++ b/platform/features/conductor-v2/conductor/res/templates/time-conductor.html @@ -1,15 +1,4 @@ -