autocomplete.less
.autocomplete {
position: relative;
.inputtext {
border: 1px solid grey;
font-size: 1.0em;
margin: 0;
width: 100%;
}
.choices {
background: white;
position: absolute;
width: 100%;
z-index: 1;
.choice {
border: 1px solid #ccc;
cursor: pointer;
padding: 5px;
width: 100%;
}
}
}