@import '../../style/variables.less';
@import '../StuffSelectionModal/style/StuffSelectionModal.less';
@import '../StuffTag/style/StuffTag.less';

.@{prefix}-list-picker-container {
    cursor: pointer;
    border-radius: 3px;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    line-height: 26px;
    padding: 3px 5px 1px;
    background-color: @page-background;
    overflow: hidden;
    margin-top: 5px;
    max-width: 100%;

    &.disabled {
        cursor: not-allowed;
    }

    &:hover {
        background-color: @selected-background;
    }

    .empty {
        color: @form-input-placeholder;
        font-size: 12px;
        margin-right: 8px;
        margin-bottom: 2px;
    }

    .more-stuff {
        color: #bbb;
        font-size: 12px;
    }

    .number {
        color: @maycur-color;
        margin: 0 2px;
    }
}