mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-10 17:48:50 +08:00
16 lines
280 B
Text
16 lines
280 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 {
|
|
-webkit-user-select: auto;
|
|
user-select: auto;
|
|
}
|