Merge pull request #5935 from opf/fix/26261-cursor-icon-changes-jumps-on-split-screen-resizing-2

[26261] Cursor icon changes / jumps on ssplit screen resizing (2)
pull/5936/head
Henriette Dinger 7 years ago committed by GitHub
commit 3be2113f0d
  1. 2
      frontend/app/components/wp-resizer/wp-resizer.directive.ts

@ -64,7 +64,7 @@ export class WorkPackageResizerController {
// Change cursor icon
// This is handled via JS to ensure
// that the cursor stays the same even when the mouse leaves the actual resizer.
document.getElementsByTagName("body")[0].style.cursor = 'col-resize';
document.getElementsByTagName("body")[0].style = 'cursor: col-resize !important';
// Enable mouse move
window.addEventListener('mousemove', this.mouseMoveHandler);

Loading…
Cancel
Save