upate: Style for sib-form-autocompletion > select added

This commit is contained in:
gaelle morin 2020-05-25 16:23:25 +02:00
parent ff12a9d68c
commit e72b5693b4
No known key found for this signature in database
GPG Key ID: 028426702B95CF9C
1 changed files with 21 additions and 22 deletions

View File

@ -65,6 +65,7 @@
color: var(--color-input-text); color: var(--color-input-text);
/*flex: 1 1 0; Problem on Firefox for input type date*/ /*flex: 1 1 0; Problem on Firefox for input type date*/
line-height: 1; line-height: 1;
margin-top: 0.8rem;
min-width: 0; min-width: 0;
padding: 1rem; padding: 1rem;
@ -116,32 +117,30 @@ sib-form-auto-completion {
.ss-main { .ss-main {
font-weight: normal; font-weight: normal;
text-transform: none; text-transform: none;
}
.ss-single-selected { .ss-single-selected {
align-items: center; background-color: var(--color-input-background);
background-color: var(--color-input-background); border: none;
border: none; border-radius: 0px;
border-radius: 0px; color: var(--color-input-text);
color: var(--color-input-text); font-weight: normal;
display: flex; margin-top: 0.8rem;
font-weight: normal; min-height: 4.6rem;
justify-content: flex-end; padding-left: 1.2rem;
min-height: 4.6rem;
padding-left: 1.2rem;
text-transform: none;
.ss-disabled { .ss-disabled {
color: var(--color-grey-5); color: var(--color-grey-5);
} }
.ss-arrow { .ss-arrow {
font-size: 1.8rem; font-size: 1.8rem;
margin: 0 18px 0 0; margin: 0 18px 0 0;
span { span {
border: solid var(--color-input-icon); border: solid var(--color-input-icon);
border-width: 0 2px 2px 0; border-width: 0 2px 2px 0;
}
} }
} }
} }