diff --git a/resources/views/tasks/kanban.blade.php b/resources/views/tasks/kanban.blade.php index 202d1bd45935..b40708be6215 100644 --- a/resources/views/tasks/kanban.blade.php +++ b/resources/views/tasks/kanban.blade.php @@ -73,6 +73,10 @@ word-break: break-all; } + .kanban-column-row .panel.hovered { + xborder-color: #6394e8 !important; + } + .kanban-column-row .running div { border: 2px groove #36c157; border-radius: 4px; @@ -413,6 +417,7 @@ self.client = ko.observable(); self.task_status_id = ko.observable(); self.task_status_sort_order = ko.observable(); + self.is_panel_hovered = ko.observable(false); self.projectColor = ko.computed(function() { if (! self.project()) { @@ -429,6 +434,14 @@ $('.kanban-column-row.editing textarea').focus(); } + self.onPanelMouseOver = function() { + self.is_panel_hovered(true); + } + + self.onPanelMouseOut = function() { + self.is_panel_hovered(false); + } + self.toData = function() { return 'description=' + encodeURIComponent(self.description()) + '&task_status_id=' + self.task_status_id() + @@ -608,7 +621,7 @@
-
+
@@ -620,15 +633,9 @@
-
+
-
- +