We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
hamburger
1 parent bc5314a commit 928d2a2Copy full SHA for 928d2a2
public/css/timeline.less
@@ -80,13 +80,14 @@
80
.rotation-name {
81
font-size: 1.25em;
82
font-weight: bold;
83
- cursor: grab;
84
85
[data-drag-initiator] {
86
color: @gray-light;
87
- }
88
- &:hover [data-drag-initiator] {
89
- color: @text-color;
+
+ &:hover {
+ cursor: grab;
+ color: @list-item-title-hover-color;
90
+ }
91
}
92
93
// :not(:empty) is only necessary to increase specificity
public/js/schedule.js
@@ -41,7 +41,8 @@
41
Sortable.create(sideBar, {
42
scroll: true,
43
direction: 'vertical',
44
- draggable: '.rotation-name'
+ draggable: '.rotation-name',
45
+ handle: '.rotation-name > i[data-drag-initiator]'
46
});
47
48
0 commit comments