Files
homebrewery/client/components/combobox.less
T

47 lines
994 B
Plaintext

.dropdown-container {
position : relative;
input { width : 100%; }
.item i {
position : absolute;
right : 10px;
color : inherit;
}
.dropdown-options {
position : absolute;
z-index : 100;
width : 100%;
height : max-content;
max-height : 200px;
overflow-y : auto;
background-color : white;
border : 1px solid gray;
&::-webkit-scrollbar { width : 14px; }
&::-webkit-scrollbar-track { background : #FFFFFF; }
&::-webkit-scrollbar-thumb {
background-color : #949494;
border : 3px solid #FFFFFF;
border-radius : 10px;
}
.item {
position : relative;
padding : 5px;
margin : 0 3px;
font-family : 'Open Sans';
font-size : 11px;
cursor : default;
&:hover {
background-color : #ddd;
}
.detail {
width : 100%;
font-size : 9px;
font-style : italic;
color : #7c7c7c;
text-align : left;
}
}
}
}