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.
This commit is contained in:
walster001 2025-06-02 22:03:16 +09:30 committed by GitHub
parent 01ed20b400
commit 7b545d12c7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;