Skip to content

Commit 8f67cbd

Browse files
committed
[Frontend] Fixed cursor: grab on Time Conductor
Fixes #933 Fixes #1193 Moved cursor: grab into mixin; sass cleanups
1 parent 07a4e26 commit 8f67cbd

File tree

4 files changed

+11
-20
lines changed

4 files changed

+11
-20
lines changed

platform/commonUI/general/res/sass/_mixins.scss

+7-8
Original file line numberDiff line numberDiff line change
@@ -363,14 +363,13 @@
363363
}
364364
}
365365

366-
@mixin webkitProp($name, $val) {
367-
#{$name}: #{$val};
368-
-webkit-#{$name}: #{$val};
369-
}
370-
371-
@mixin webkitVal($name, $val) {
372-
#{$name}: #{$val};
373-
#{$name}: -webkit-#{$val};
366+
@mixin cursorGrab() {
367+
cursor: grab;
368+
cursor: -webkit-grab;
369+
&:active {
370+
cursor: grabbing;
371+
cursor: -webkit-grabbing;
372+
}
374373
}
375374

376375
@mixin verticalCenter {

platform/features/conductor-v2/conductor/res/sass/_time-conductor-base.scss

+3
Original file line numberDiff line numberDiff line change
@@ -345,6 +345,9 @@
345345
.mode-selector .s-menu-button:before {
346346
content: $i;
347347
}
348+
.l-axis-holder {
349+
@include cursorGrab();
350+
}
348351
}
349352

350353
// Realtime mode

platform/features/conductor-v2/conductor/res/templates/time-conductor.html

-11
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,4 @@
11
<!-- Parent holder for time conductor. follow-mode | fixed-mode -->
2-
<style>
3-
.fixed-mode .l-axis-holder {
4-
cursor: grab;
5-
cursor: -webkit-grab;
6-
}
7-
8-
.fixed-mode .l-axis-holder:active {
9-
cursor: grabbing;
10-
cursor: -webkit-grabbing;
11-
}
12-
</style>
132
<div ng-controller="TimeConductorController as tcController"
143
class="holder grows flex-elem l-flex-row l-time-conductor {{modeModel.selectedKey}}-mode {{timeSystemModel.selected.metadata.key}}-time-system"
154
ng-class="{'status-panning': panning}">

platform/features/conductor/res/sass/time-conductor.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ $ueTimeConductorH: (33px, 18px, 20px);
164164
margin-left: 0;
165165
}
166166
.l-time-range-tick-label {
167-
@include webkitProp(transform, translateX(-50%));
167+
@include transform(translateX(-50%));
168168
color: $colorPlotLabelFg;
169169
display: inline-block;
170170
font-size: 0.7rem;

0 commit comments

Comments
 (0)