fix(feedback): modify user-select none declaration for edge
This commit is contained in:
parent
95e00405b6
commit
1f0dc6fcd8
|
@ -3,11 +3,17 @@
|
||||||
* none is applied. Other browsers already support selecting within inputs while
|
* none is applied. Other browsers already support selecting within inputs while
|
||||||
* user-select is none. As such, disallow user-select except on inputs.
|
* user-select is none. As such, disallow user-select except on inputs.
|
||||||
*/
|
*/
|
||||||
*:not(input) {
|
* {
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
input,
|
||||||
|
textarea {
|
||||||
|
-webkit-user-select: text;
|
||||||
|
user-select: text;
|
||||||
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
Loading…
Reference in New Issue