mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-11 18:32:20 +08:00
19 lines
314 B
Text
19 lines
314 B
Text
* {
|
|
-webkit-user-select: inherit;
|
|
user-select: inherit;
|
|
}
|
|
body {
|
|
-webkit-user-select: none;
|
|
user-select: none;
|
|
}
|
|
input, textarea, div[contenteditable], {
|
|
-webkit-user-select: auto;
|
|
user-select: auto;
|
|
}
|
|
.selectable {
|
|
&:hover {
|
|
cursor: text;
|
|
}
|
|
-webkit-user-select: auto;
|
|
user-select: auto;
|
|
}
|