gui: Allow automatic device ID selection on WebKit browsers (ref #8544) (#8597)

Some WebKit browsers select more than needed when using double click to
select device IDs, e.g. new lines and white space. This commit adds a
prefixed version of user-select in CSS in order to add support for those
browsers and allow them to select just device IDs automatically.

Signed-off-by: Tomasz Wilczyński <twilczynski@naver.com>
This commit is contained in:
tomasz1986 2022-10-10 23:01:37 +02:00 committed by GitHub
parent fb6a35c98c
commit 34d91b228d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -550,5 +550,6 @@ html[lang|="ko"] i {
}
.select-on-click {
-webkit-user-select: all;
user-select: all;
}