mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-03 22:53:51 +08:00
21 lines
313 B
Text
21 lines
313 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;
|
|
}
|