Added user-select rules
This commit is contained in:
parent
eb93ebf139
commit
96859d3935
3 changed files with 10 additions and 2 deletions
sass/init
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue