From ab6397f0be947dfb5eee7eb47991021704542f9e Mon Sep 17 00:00:00 2001 From: Henriette Dinger Date: Mon, 18 Sep 2017 13:50:45 +0200 Subject: [PATCH] Force cursor change --- frontend/app/components/wp-resizer/wp-resizer.directive.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/app/components/wp-resizer/wp-resizer.directive.ts b/frontend/app/components/wp-resizer/wp-resizer.directive.ts index 4e4b3be315..224434663a 100644 --- a/frontend/app/components/wp-resizer/wp-resizer.directive.ts +++ b/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);