search: reset placeholder and use generic colors #405

This commit is contained in:
Sören Weber 2022-11-29 20:27:27 +01:00
parent 9c1233d9e3
commit 2ebee964ca
No known key found for this signature in database
GPG key ID: BEC6D55545451B6D
3 changed files with 17 additions and 6 deletions

View file

@ -516,7 +516,13 @@
display: none; display: none;
} }
.searchform input:-ms-input-placeholder{ .searchbox input:-ms-input-placeholder {
color: rgba( 255, 255, 255, .4 ); color: rgba( 255, 255, 255, .4 );
opacity: 1;
}
.searchform input:-ms-input-placeholder {
color: rgba( 134, 134, 134, .666 );
opacity: 1;
} }
} }

View file

@ -134,6 +134,11 @@ th {
font-weight: 300; font-weight: 300;
} }
.searchbox input::placeholder {
color: rgba( 255, 255, 255, .4 );
opacity: unset;
}
#content-wrapper { #content-wrapper {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
@ -1582,6 +1587,11 @@ input[type="search"]::-webkit-search-results-decoration { display: none; }
margin-inline-end: .5rem; margin-inline-end: .5rem;
} }
.searchform input::placeholder {
color: rgba( 134, 134, 134, .666 );
opacity: unset;
}
.searchform .btn { .searchform .btn {
display: inline-flex; display: inline-flex;
} }

View file

@ -416,8 +416,3 @@ pre .copy-to-clipboard-button:hover {
background-color: var(--INTERNAL-MAIN-BG-color) !important; background-color: var(--INTERNAL-MAIN-BG-color) !important;
border-bottom-color: var(--INTERNAL-MAIN-BG-color) !important; border-bottom-color: var(--INTERNAL-MAIN-BG-color) !important;
} }
.searchform input::placeholder {
color: var(--INTERNAL-MAIN-color);
filter: grayscale(1) contrast(10000) opacity(.4);
}