1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/frontend/app/gallery/search/search.gallery.component.css
2017-07-07 22:54:18 +02:00

35 lines
602 B
CSS

.autocomplete-list {
position: absolute;
left: 0;
top: 34px;
background-color:white;
width: 100%;
border: 1px solid #ccc;
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
padding-left: 3px;
padding-right: 3px;
padding-top: 5px;
padding-bottom: 5px;
}
.autocomplete-item{
cursor: pointer;
padding-left: 3px;
padding-right: 3px;
border-radius: 2px;
}
.autocomplete-item:hover {
background-color: #eaeaea;
}
#srch-term {
border-bottom-left-radius: 0;
border-bottom-width: 0;
}
form {
padding-right: 50px;
}