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

47 lines
791 B
CSS
Raw Normal View History

.autocomplete-list {
2017-07-08 15:43:05 +08:00
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: 5px 0;
2017-07-08 15:43:05 +08:00
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}
2017-07-08 15:43:05 +08:00
.autocomplete-item {
cursor: pointer;
padding-top: 2px;
padding-bottom: 2px;
font-size: 17px;
}
.autocomplete-item a {
color: #333;
padding: 0 20px;
line-height: 1.42857143;
font-weight: 400;
2017-07-26 03:16:57 +08:00
display: block;
}
.autocomplete-item:hover {
2018-05-14 04:59:57 +08:00
background-color: #007bff;
2017-07-08 15:43:05 +08:00
}
.autocomplete-item:hover a {
color: #FFF;
text-decoration: none;
}
#srch-term {
2017-07-08 15:43:05 +08:00
border-bottom-left-radius: 0;
border-bottom-width: 0;
2017-07-08 04:54:18 +08:00
}
form {
2018-05-14 04:59:57 +08:00
padding-right: 1em;
2017-07-08 04:54:18 +08:00
}