Files
2024-10-25 23:02:37 +02:00

34 lines
573 B
CSS

.autocomplete-suggestions {
border: 1px solid #ced4da;
background: #FFF;
overflow: auto;
}
.autocomplete-suggestion {
padding: 5px 10px;
white-space: nowrap;
overflow: hidden;
}
.autocomplete-selected {
background: #F0F0F0;
}
.autocomplete-suggestions strong {
font-weight: 600;
color: #77cdd1;
}
.autocomplete-group {
padding: 10px 10px 5px 10px;
text-transform: uppercase;
font-weight: 600;
color: #000;
margin-top: 10px;
border-top: 1px solid #e6e6e6;
}
.autocomplete-group strong {
display: block;
border-bottom: 1px solid #000;
}