This commit is contained in:
Reto 2024-04-21 15:13:33 +02:00 committed by GitHub
commit 84de37a479
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 27 additions and 8 deletions

View file

@ -36,15 +36,9 @@ form.message-search input {
height: auto !important;
margin: 7px 0;
border: 0;
color: inherit;
background-color: #fafafa;
appearance: none;
}
form.message-search input::placeholder {
color: rgba(0, 0, 0, 0.35);
}
@media (min-width: 480px) {
form.message-search input {
min-width: 140px;
@ -63,7 +57,6 @@ form.message-search .input-wrapper {
z-index: 1;
height: 0;
overflow: hidden;
background: var(--window-bg-color);
}
form.message-search .input-wrapper input {
@ -76,7 +69,6 @@ form.message-search.opened .input-wrapper {
#chat form.message-search button {
display: flex;
color: #607992;
}
</style>

View file

@ -33,3 +33,21 @@
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;
}

View file

@ -122,6 +122,15 @@ body {
/* Search Form */
form.message-search input {
background-color: #28333d;
color: inherit;
}
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 {