Added user-select rules

This commit is contained in:
ポール ウェッブ 2018-12-04 20:56:23 -06:00
parent eb93ebf139
commit 96859d3935
3 changed files with 10 additions and 2 deletions
sass/init

View file

@ -66,11 +66,13 @@ h4,
h5,
h6 {
font-weight: normal;
user-select: auto;
}
ol,
ul {
list-style-position: inside;
user-select: auto;
> li {
list-style-position: inside;
@ -90,6 +92,7 @@ label {
table {
border-collapse: collapse;
border-spacing: 0;
user-select: auto;
}
dd {
@ -170,6 +173,7 @@ textarea {
padding: var(--spacing-xs);
// border-color should be added in apps for blur/focus
border: 1px solid;
user-select: auto;
&:not([disabled]) {
resize: vertical;
@ -180,6 +184,10 @@ textarea {
}
}
p {
user-select: auto;
}
@media print {