#937 Fix textarea in task detail view not having a background when focused
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
kolaente 2020-01-10 22:43:17 +01:00
parent a06e709da6
commit 74f5d43097
Signed by: konrad
GPG Key ID: F40E70337AB24C9B

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 {
@ -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;
} }
} }