56 lines
1.5 KiB
CSS
56 lines
1.5 KiB
CSS
.custom-multiselect.multiselect {
|
|
@apply !text-inherit !min-h-max;
|
|
}
|
|
|
|
.custom-multiselect.multiselect,
|
|
.custom-multiselect .multiselect__input,
|
|
.custom-multiselect .multiselect__single {
|
|
@apply !text-sm;
|
|
}
|
|
|
|
.custom-multiselect.multiselect .multiselect__tags {
|
|
@apply ltr:pl-4.5 rtl:pr-4.5 !py-2 !min-h-max;
|
|
}
|
|
|
|
.custom-multiselect.multiselect .multiselect__tags,
|
|
.custom-multiselect .multiselect__content-wrapper,
|
|
.custom-multiselect .multiselect--above .multiselect__content-wrapper {
|
|
@apply bg-white dark:bg-[#1b2e4b] border-[rgb(224,230,237)] dark:border-[#253b5c];
|
|
}
|
|
|
|
.custom-multiselect .multiselect__single,
|
|
.custom-multiselect .multiselect__placeholder,
|
|
.custom-multiselect .multiselect__input {
|
|
@apply !mb-0 !pl-0 dark:bg-[#1b2e4b];
|
|
}
|
|
|
|
.custom-multiselect .multiselect__option--highlight,
|
|
.custom-multiselect .multiselect__option--selected.multiselect__option--highlight,
|
|
.custom-multiselect .multiselect__option.multiselect__option--selected {
|
|
@apply !bg-[#f6f6f6] dark:!bg-[#132136] !text-inherit;
|
|
}
|
|
|
|
.custom-multiselect .multiselect__option.multiselect__option--disabled {
|
|
@apply !bg-transparent !text-[#999];
|
|
}
|
|
|
|
.custom-multiselect.multiselect--active .multiselect__placeholder {
|
|
@apply !inline-block;
|
|
}
|
|
|
|
.custom-multiselect .multiselect__placeholder {
|
|
@apply !pt-0 text-black dark:text-white-dark;
|
|
}
|
|
|
|
.custom-multiselect .multiselect__tag {
|
|
@apply !mb-0 !py-[3px] !bg-success;
|
|
}
|
|
|
|
.custom-multiselect .multiselect__tags-wrap {
|
|
@apply !flex;
|
|
}
|
|
|
|
.custom-multiselect .multiselect__tag-icon {
|
|
@apply !top-auto;
|
|
}
|