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

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

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

    .vs__dropdown-toggle {
        border: solid thin $content-color-40;
        border-radius: 0;
    }

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

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

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

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