From bceb0055a531aff2343dd7722219c1314d681c9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Raimund=20Schl=C3=BC=C3=9Fler?= Date: Mon, 6 Feb 2023 15:48:36 +0100 Subject: [PATCH] Fix `NcButton` cursor style MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Raimund Schlüßler --- src/components/NcButton/NcButton.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/NcButton/NcButton.vue b/src/components/NcButton/NcButton.vue index 5fc402124e..544f33a1d3 100644 --- a/src/components/NcButton/NcButton.vue +++ b/src/components/NcButton/NcButton.vue @@ -418,7 +418,8 @@ export default { // Cursor pointer on element and all children cursor: pointer; - & * { + & *, + :deep(span) { cursor: pointer; } border-radius: math.div($clickable-area, 2);