ThunderAI/popup/mzta-popup.css
2024-09-26 21:48:55 +02:00

93 lines
No EOL
1.6 KiB
CSS

body {
background-color: #FAFAFA;
font-size: 14px;
padding: 1px;
margin:3px;
}
#mzta_search_banner{
background-color: #FAFAFA;
color:black;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
position: relative;
height: fit-content;
width: 15em;
max-height: 23em;
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;
}
#_spacer_div{
width: 100%;
height: 2.2em;
}
#mzta_autocomplete-items {
border: none;
z-index: 1000;
background-color: #FAFAFA;
width: 100%;
overflow-y: auto;
padding: 0;
overflow-x: hidden;
}
.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;
}
}