@import '../../_widgetsCommon.scss';
.bolt-editable-dropdown-with-selection .bolt-textfield-input {
    &::placeholder {
        color: $textColor;
    }

    &::-webkit-input-placeholder {
        color: $textColor;
    }

    &::-moz-placeholder {
        color: $textColor;
        opacity: 1;
    }

    &::-ms-input-placeholder {
        color: $textColor;
    }
}

.bolt-editable-dropdown-focused-item {
    border: none !important;
    @include box-shadow-focus-rect(true, false);
    border-color: $communication-background !important;

    @include ms-high-contrast-override {
        background: Highlight;
    }
    @include theme-high-contrast {
        background: Highlight;
        color: HighlightText;
    }
}

.bolt-list-row.selected .bolt-editable-dropdown-focused-item {
    @include box-shadow-focus-rect(true, false);
    border-color: $communication-background !important;

    @include ms-high-contrast-override {
        background: Highlight;
    }
}

.bolt-dropdown-expandable-text-field.bolt-editable-dropdown:not(.disabled) .bolt-dropdown-expandable-textfield-input {
    cursor: text;
}