mirror of
https://github.com/wekan/wekan.git
synced 2025-12-19 08:50:13 +01: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 {
|
html {
|
||||||
font-size: 100%;
|
font-size: 100%;
|
||||||
max-height: 100%;
|
max-height: 100%;
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: text;
|
||||||
user-select: none;
|
user-select: text;
|
||||||
|
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
text-size-adjust: 100%;
|
text-size-adjust: 100%;
|
||||||
|
|
@ -192,7 +192,7 @@ strong {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
p {
|
p {
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: text;
|
||||||
user-select: text;
|
user-select: text;
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue