Merge pull request #1504 from MrTimscampi/highlight

Prevent text selection
This commit is contained in:
dkanada 2020-07-02 12:54:29 +09:00 committed by GitHub
commit 381c374905
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,6 +3,7 @@ html {
margin: 0;
padding: 0;
height: 100%;
user-select: none;
}
.clipForScreenReader {
@ -18,7 +19,7 @@ html {
.material-icons {
/* Fix font ligatures on older WebOS versions */
-webkit-font-feature-settings: "liga";
font-feature-settings: "liga";
}
.backgroundContainer {
@ -37,10 +38,6 @@ html {
.layout-mobile,
.layout-tv {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}