whoogle-search/app/static/css/themes/solarized-search.css
Alexandar Mechev 95f12be5e6
Apply suggestions from code review
Co-authored-by: Ben Busby <benbusby@pm.me>
2020-10-23 18:10:15 +02:00

52 lines
1.0 KiB
CSS

.autocomplete {
position: relative;
display: inline-block;
width: 100%;
}
.autocomplete-items {
position: absolute;
border: 1px solid #685e79;
border-bottom: none;
border-top: none;
z-index: 99;
/*position the autocomplete items to be the same width as the container:*/
top: 100%;
left: 0;
right: 0;
}
.autocomplete-items div {
padding: 10px;
cursor: pointer;
color: #002b36;
background-color: #eee8d5;
border-bottom: 1px solid #242424;
}
body.dark * div#search-bar-autocomplete-list div{
padding: 10px;
cursor: pointer;
color: #eee8d5 !important;
background-color: #002b36 !important;
border-bottom: 1px solid #fff;
}
body.dark * div#search-bar-autocomplete-list div:hover {
background-color: #586e75 !important;
color: #eee8d5 !important;
}
.autocomplete-items div:hover {
background-color: #4C566A !important;
color: #ECEFF4 !important;
}
.autocomplete-active {
background-color: #685e79 !important;
color: #f9fafb !important;
}