mirror of
https://github.com/schlagmichdoch/PairDrop.git
synced 2025-04-25 17:26:18 -04:00
Fix display name not being editable on some older iOS devices (#163)
This commit is contained in:
parent
38a80d2d34
commit
cd669b13d9
4 changed files with 16 additions and 4 deletions
|
@ -1619,3 +1619,10 @@ x-dialog x-paper {
|
|||
color: black;
|
||||
background: var(--primary-color);
|
||||
}
|
||||
|
||||
/* make elements with attribute contenteditable editable on older iOS devices.
|
||||
See note here: https://developer.mozilla.org/en-US/docs/Web/CSS/user-select */
|
||||
[contenteditable] {
|
||||
-webkit-user-select: text;
|
||||
user-select: text;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue