fix(feedback): modify user-select none declaration for edge

This commit is contained in:
Leonard Kim 2018-04-04 10:08:11 -07:00 committed by Дамян Минков
parent 95e00405b6
commit 1f0dc6fcd8
1 changed files with 7 additions and 1 deletions

View File

@ -3,11 +3,17 @@
* none is applied. Other browsers already support selecting within inputs while
* user-select is none. As such, disallow user-select except on inputs.
*/
*:not(input) {
* {
-webkit-user-select: none;
user-select: none;
}
input,
textarea {
-webkit-user-select: text;
user-select: text;
}
body {
margin: 0px;
width: 100%;