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

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
1 changed files with 7 additions and 19 deletions

View File

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