permit selection of text in specific cases

permit text selection in textarea, code, input elements
This commit is contained in:
Aljaz S
2021-11-24 09:26:41 +01:00
parent 3709b50f9f
commit 6c4df06050

View File

@@ -20,6 +20,15 @@ html {
user-select: none;
}
textarea,
input,
code {
-webkit-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
user-select: text;
}
::-moz-selection,
::selection {
background: rgba(var(--c-accent-val), .5);