azure-devops-ui
Version:
React components for building web UI in Azure DevOps
44 lines (39 loc) • 1.43 kB
CSS
.bolt-editable-dropdown-with-selection .bolt-textfield-input::placeholder {
color: rgba(0, 0, 0, .9);
color: var(--text-primary-color,rgba(0, 0, 0, .9));
}
.bolt-editable-dropdown-with-selection .bolt-textfield-input::-webkit-input-placeholder {
color: rgba(0, 0, 0, .9);
color: var(--text-primary-color,rgba(0, 0, 0, .9));
}
.bolt-editable-dropdown-with-selection .bolt-textfield-input::-moz-placeholder {
color: rgba(0, 0, 0, .9);
color: var(--text-primary-color,rgba(0, 0, 0, .9));
opacity: 1;
}
.bolt-editable-dropdown-with-selection .bolt-textfield-input::-ms-input-placeholder {
color: rgba(0, 0, 0, .9);
color: var(--text-primary-color,rgba(0, 0, 0, .9));
}
.bolt-editable-dropdown-focused-item {
background: rgba(0, 0, 0, 0.04);
background: var(--palette-black-alpha-4,rgba(0, 0, 0, 0.04));
}
@media (forced-colors: active) {
.bolt-editable-dropdown-focused-item {
border-color: Highlight;
}
}
.bolt-list-row.selected .bolt-editable-dropdown-focused-item {
background: rgba( 199, 224, 244 , 1 );
background: rgba( var(--palette-primary-tint-20,199, 224, 244) , 1 );
}
@media (forced-colors: active) {
.bolt-list-row.selected .bolt-editable-dropdown-focused-item {
background: Highlight;
}
}
.bolt-dropdown-expandable-text-field.bolt-editable-dropdown:not(.disabled) .bolt-dropdown-expandable-textfield-input {
cursor: text;
}
/*# sourceMappingURL=EditableDropdown.css.map */