Skip to content
Snippets Groups Projects
Forked from Stud.IP / Stud.IP
1613 commits behind the upstream repository.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
select.scss 993 B
.studip-v-select, .studip-v-select-detachted-ul {
    max-width: 48em;
    margin-top: 0.5ex;

    .vs__option-with-icon{
        padding-left: 8px;
    }

    .vs__option-color {
        border: solid thin var(--content-color-40);
        padding-left: 20px;
        height: 16px;
        margin-right: 4px;
    }

    .vs__dropdown-toggle {
        max-height: 32px;
        padding: 0 0 5px;
    }

    .vs__dropdown-menu, &.vs__dropdown-menu {
        border-radius: 0;
    }

    .vs__actions {
        align-items: end;
    }

    &.studip-v-select-drop-up {
        border-bottom: solid thin var(--content-color-40);
        border-top: none;
    }

    &.studip-v-select-ul-drop-up {
        border-bottom: none;
        border-top: solid thin var(--content-color-40);
        box-shadow: 0px -3px 6px 0 rgba(0, 0, 0, 0.15);
    }

    &.studip-v-select-ul-dialog {
        z-index: 3002;
    }
}

form.default .studip-v-select .vs__selected {
    padding: 0;
    margin: 2px 2px 0;
}