azure-devops-ui
Version:
React components for building web UI in Azure DevOps
83 lines (79 loc) • 2.38 kB
CSS
.bolt-label-autocomplete {
position: relative;
min-width: 128px;
min-height: 20px;
flex-shrink: 0;
}
.bolt-label-autocomplete input {
width: 100%;
height: 100%;
position: absolute;
background-color: transparent;
z-index: 2;
}
.bolt-label-autocomplete input::-ms-clear {
display: none;
}
.bolt-label-autocomplete input.suggestion {
color: rgba(0, 0, 0, .55);
color: var(--text-secondary-color,rgba(0, 0, 0, .55));
z-index: 1;
}
.bolt-label-suggestions-callout {
border-radius: 4px;
}
.bolt-label-suggestions-callout .bolt-callout-content {
width: 248px;
border-radius: 4px;
}
.bolt-label-suggestions-container {
padding: 8px 0px;
}
.bolt-label-suggestions-container .bolt-colorpip .bolt-colorpip-content {
background-color: rgba( 239, 239, 239 , 1 );
background-color: rgba( var(--palette-neutral-6,239, 239, 239) , 1 );
}
.bolt-label-suggestions-container .bolt-label-suggestions-row {
height: 32px;
}
.bolt-label-suggestions-container .bolt-label-suggestions-row.selected {
background-color: rgba( 222, 236, 249 , 1 );
background-color: rgba( var(--palette-primary-tint-30,222, 236, 249) , 1 );
}
.bolt-label-suggestions-container .bolt-label-suggestions-row.clickable {
cursor: pointer;
}
.bolt-label-suggestions-container .bolt-label-suggestions-row .bolt-label-suggestions-row--content {
display: flex;
flex: 1;
min-width: 0px;
height: 32px;
align-items: center;
font-size: 0.875rem;
}
.bolt-label-suggestions-container .bolt-label-suggestions-row .bolt-label-suggestions-row--content span {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.bolt-label-suggestions-container .bolt-label-suggestions-row .bolt-label-suggestions-icon {
margin: 0px 8px;
font-size: 1rem;
display: flex;
align-items: center;
}
.bolt-label-suggestions-container .bolt-suggestions-separator {
height: 1px;
margin: 7px 12px 8px;
background-color: rgba( 218, 218, 218 , 1 );
background-color: rgba( var(--palette-neutral-10,218, 218, 218) , 1 );
}
.bolt-label-suggestions-container .bolt-colorswatchpicker.selected {
background-color: rgba( 222, 236, 249 , 1 );
background-color: rgba( var(--palette-primary-tint-30,222, 236, 249) , 1 );
}
.bolt-label-suggestions-container .bolt-label-suggestions-list {
max-height: 208px;
overflow-y: auto;
}
/*# sourceMappingURL=Autocomplete.css.map */