ThunderAI/popup/mzta-popup.css
2024-09-22 21:34:14 +02:00

85 lines
No EOL
1.5 KiB
CSS

body {
background-color: #FAFAFA;
font-size: 14px;
}
#mzta_search_banner{
background-color: #FAFAFA;
color:black;
width: fit-content;
height: fit-content;
display: flex;
justify-content: center;
align-items: center;
position: relative;
width: 10em;
max-height: 12em;
min-height: 1em;
padding: 0;
}
#mzta_search_input{
width: 12em;
position: fixed;
top:0;
left:0;
width: -moz-available;
z-index: 1001;
font-size: 13px;
}
#mzta_autocomplete-items {
margin-top: 1.5em;
border: none;
z-index: 1000;
background-color: #FAFAFA;
width: 10em;
overflow-y: auto;
}
.mzta_autocomplete-item {
padding: 4px;
cursor: pointer;
}
.mzta_autocomplete-item:hover {
background-color: #e9e9e9;
}
.mzta_autocomplete-item-active {
background-color: #e9e9e9;
}
@media (prefers-color-scheme: dark) {
body{
background-color: #2c2c2c;
}
#mzta_search_input {
background-color: #2c2c2c;
color: #ffffff;
}
#mzta_search_banner{
background-color: #2c2c2c;
color:#ffffff;
}
#mzta_autocomplete-items {
background-color: #2c2c2c;
}
.mzta_autocomplete-item {
color: #ffffff;
}
.mzta_autocomplete-item:hover {
background-color: #444444;
}
.mzta_autocomplete-item-active {
background-color: #444444;
}
}