fix: label multiselect styling on focus
continuous-integration/drone/push Build is passing Details

This commit is contained in:
kolaente 2022-10-28 11:23:55 +02:00
parent da478a49d1
commit da2a7a224e
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
2 changed files with 4 additions and 6 deletions

View File

@ -414,8 +414,8 @@ function focus() {
.input-wrapper {
padding: 0;
background: var(--white) !important;
border-color: var(--grey-200) !important;
background: var(--white);
border-color: var(--grey-200);
flex-wrap: wrap;
height: auto;

View File

@ -908,8 +908,8 @@ $flash-background-duration: 750ms;
:deep(.multiselect) {
.input-wrapper {
&:not(:focus-within):not(:hover) {
background: transparent !important;
border-color: transparent !important;
background: transparent;
border-color: transparent;
}
}
}
@ -921,8 +921,6 @@ $flash-background-duration: 750ms;
.input:not(.has-defaults),
.textarea,
.select:not(.has-defaults) select {
border-color: transparent;
background: transparent;
cursor: pointer;
transition: all $transition-duration;