mirror of
https://github.com/wekan/wekan.git
synced 2025-09-22 01:50:48 +02:00
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:
parent
01ed20b400
commit
7b545d12c7
1 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue