GH-1244 add setting -webkit-user-select and others for MenuWrapper (#1292)

* add setting -webkit-user-select and others for MenuWrapper

* fix lint, disable check
This commit is contained in:
Scott Bishel 2021-09-21 10:25:56 -06:00 committed by GitHub
parent d6be51de76
commit 660fa5e434
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,7 +6,13 @@
cursor: default;
}
*:first-child {
*:first-child {
/* stylelint-disable property-no-vendor-prefix*/
-webkit-user-select: text; /* Chrome all / Safari all */
-moz-user-select: text; /* Firefox all */
-ms-user-select: text; /* IE 10+ */
user-select: text;
/* stylelint-enable property-no-vendor-prefix*/
}
}