Skip to content

Commit

Permalink
Fix #942
Browse files Browse the repository at this point in the history
  • Loading branch information
tbar0970 committed Aug 28, 2023
1 parent 1d69db5 commit 55b5fe6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions resources/js/jethro.js
Expand Up @@ -970,6 +970,7 @@ JethroServicePlanner._getTRDragHelper = function(event, tr) {
helper.children().each(function(index) {
$(this).width(originals.eq(index).width())
});
helper.addClass('service-item-in-transit')
return helper;
}

Expand Down
6 changes: 5 additions & 1 deletion resources/less/jethro.less.php
Expand Up @@ -2188,9 +2188,13 @@
-ms-user-select: none;
user-select: none;
}
#service-plan tbody td, #service-plan tfoot td {
#service-plan tbody td, #service-plan tfoot td, .service-item-in-transit * {
background: @jethroLightest;
}
.service-item-in-transit {
border-bottom-style: solid;
border-bottom-width: 1px;
}
#body #service-plan-placeholder {
margin: 25px 15px;
}
Expand Down

0 comments on commit 55b5fe6

Please sign in to comment.