From 085ab4a95457169fad16444f28856672c80ccd60 Mon Sep 17 00:00:00 2001 From: Daniel Jettka Date: Thu, 27 Jun 2024 09:23:28 +0200 Subject: [PATCH] changed CSS - cursor: *-resize to use different for each border/corner --- src/css/winbox.css | 8 ++++---- src/css/winbox.less | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/css/winbox.css b/src/css/winbox.css index 235bcde..0e57f6e 100644 --- a/src/css/winbox.css +++ b/src/css/winbox.css @@ -85,7 +85,7 @@ body > .wb-body { right: -5px; bottom: 0; width: 10px; - cursor: w-resize; + cursor: e-resize; z-index: 2; } .wb-s { @@ -94,7 +94,7 @@ body > .wb-body { left: 0; right: 0; height: 10px; - cursor: n-resize; + cursor: s-resize; z-index: 2; } .wb-w { @@ -130,7 +130,7 @@ body > .wb-body { left: -5px; width: 15px; height: 15px; - cursor: ne-resize; + cursor: sw-resize; z-index: 2; } .wb-se { @@ -139,7 +139,7 @@ body > .wb-body { right: -5px; width: 15px; height: 15px; - cursor: nw-resize; + cursor: se-resize; z-index: 2; } .wb-control { diff --git a/src/css/winbox.less b/src/css/winbox.less index ad8b67b..95c20e3 100644 --- a/src/css/winbox.less +++ b/src/css/winbox.less @@ -100,7 +100,7 @@ body > .wb-body{ right: -5px; bottom: 0; width: 10px; - cursor: w-resize; + cursor: e-resize; z-index: 2; } @@ -110,7 +110,7 @@ body > .wb-body{ left: 0; right: 0; height: 10px; - cursor: n-resize; + cursor: s-resize; z-index: 2; } @@ -150,7 +150,7 @@ body > .wb-body{ left: -5px; width: 15px; height: 15px; - cursor: ne-resize; + cursor: sw-resize; z-index: 2; } @@ -160,7 +160,7 @@ body > .wb-body{ right: -5px; width: 15px; height: 15px; - cursor: nw-resize; + cursor: se-resize; z-index: 2; }