From 7b545d12c72c015e45b1c787e01aa417cb13be0f Mon Sep 17 00:00:00 2001 From: walster001 Date: Mon, 2 Jun 2025 22:03:16 +0930 Subject: [PATCH] Allow selection of card text via webkit/user-select attributes Fixes open issue around webkit/user-select attributes. Modifies values to allow "text" values to be selected in cards and on the board. --- client/components/main/layouts.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/components/main/layouts.css b/client/components/main/layouts.css index 898019c94..33bfc6dc2 100644 --- a/client/components/main/layouts.css +++ b/client/components/main/layouts.css @@ -59,8 +59,8 @@ button { html { font-size: 100%; max-height: 100%; - -webkit-user-select: none; - user-select: none; + -webkit-user-select: text; + user-select: text; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; @@ -192,7 +192,7 @@ strong { font-weight: bold; } p { - -webkit-user-select: none; + -webkit-user-select: text; user-select: text;