From f4101f903142d004b6e34abb11e1b44e21c74ecc Mon Sep 17 00:00:00 2001 From: Lucas Oliveira <62335616+lucaseduoli@users.noreply.github.com> Date: Thu, 3 Jul 2025 15:01:57 -0300 Subject: [PATCH] fix: not allow selecting texts that shouldn't be selectable (#8864) Added CSS to apply select none to cursor pointer, default, not-allowed, label and buton --- src/frontend/src/style/applies.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/frontend/src/style/applies.css b/src/frontend/src/style/applies.css index 9c9508164..d423c7ae1 100644 --- a/src/frontend/src/style/applies.css +++ b/src/frontend/src/style/applies.css @@ -1247,6 +1247,14 @@ @apply absolute right-3 w-14 -translate-y-3.5 cursor-text rounded-sm px-2 py-[1px] text-center hover:ring-[1px] hover:ring-slider-input-border; } + .cursor-pointer, + .cursor-default, + .cursor-not-allowed, + label, + button { + @apply select-none; + } + .btn-add-input-list { @apply flex h-6 w-full items-center justify-center rounded-md p-2 text-sm hover:bg-muted; }