thelounge/client/themes/default.css
Reto Brunner b4f3a470c4 search: move color to themes
Themes that differ from our built ins should not be forced
to use very specific styles just to undo what the base style sets.

If they decide that all input fields should have a certain color,
they should be able to just select on the input field.
Our base style should just do layout.
The themes can then override the colors where needed.
2023-07-31 11:58:44 +02:00

54 lines
677 B
CSS

#loading .window {
margin: 5px;
}
#viewport {
padding: 5px;
}
#viewport.menu-open {
padding-left: 0;
}
.window {
border-radius: 5px;
box-shadow: 0 0 25px rgb(0 0 0 / 50%);
}
@media (max-width: 768px) {
#loading .window {
margin: 0;
}
#viewport,
#viewport.menu-open {
padding: 0;
}
#footer .icon {
border-radius: 0;
}
.window {
border-radius: 0;
}
}
/* Search Form */
form.message-search input {
color: inherit;
background-color: #fafafa;
}
form.message-search input::placeholder {
color: rgba(0, 0, 0, 0.35);
}
form.message-search .input-wrapper {
background: var(--window-bg-color);
}
#chat form.message-search button {
color: #607992;
}