#937 Fix textarea in task detail view not having a background when focused

This commit is contained in:
kolaente 2020-01-10 22:43:17 +01:00
parent a06e709da6
commit 74f5d43097
No known key found for this signature in database
GPG Key ID: F40E70337AB24C9B
1 changed files with 7 additions and 19 deletions

View File

@ -44,16 +44,6 @@
margin: 0 .3em; margin: 0 .3em;
height: 1.5em; height: 1.5em;
padding: 0 .3em; padding: 0 .3em;
&:hover,&:active {
background: $input-background-color;
border-color: $input-border-color;
}
&:focus {
background: $input-background-color;
border-color: $input-focus-border-color;
}
} }
.is-done { .is-done {
@ -99,7 +89,7 @@
break-after: always; // New syntax break-after: always; // New syntax
} }
&.labels-list, .assignees{ &.labels-list, .assignees {
.multiselect__tags { .multiselect__tags {
padding: 3px 0 0 3px; padding: 3px 0 0 3px;
border: none; border: none;
@ -127,7 +117,9 @@
border: none; border: none;
} }
} }
}
.details,.heading {
.input:not(.has-defaults), .input:not(.has-defaults),
.textarea, .textarea,
.select:not(.has-defaults) select { .select:not(.has-defaults) select {
@ -142,19 +134,15 @@
font-style: italic; font-style: italic;
} }
&:hover { &:hover,&:active {
border-color: $input-border-color;
background: $input-background-color; background: $input-background-color;
} border-color: $input-border-color;
}
.textarea {
&:hover {
cursor: text; cursor: text;
} }
&:focus { &:focus {
border-color: $input-focus-border-color background: $input-background-color;
border-color: $input-focus-border-color;
} }
} }