theme: move IE specific stuff to fallback CSS #402

This commit is contained in:
Sören Weber 2022-11-23 17:50:12 +01:00
parent 8569a64c2b
commit ed29c7c8ae
No known key found for this signature in database
GPG key ID: BEC6D55545451B6D
3 changed files with 18 additions and 11 deletions

View file

@ -510,4 +510,17 @@
.showFooter { .showFooter {
display: block; display: block;
} }
.select-style select::-ms-expand {
/* hide the triangle */
display: none;
}
.searchbox input:-ms-input-placeholder {
color: rgba( 255, 255, 255, .4 );
}
.searchform input:-ms-input-placeholder{
color: rgba( 255, 255, 255, .4 );
}
} }

View file

@ -134,7 +134,6 @@ th {
font-weight: 300; font-weight: 300;
} }
.searchbox input:-ms-input-placeholder,
.searchbox input::placeholder { .searchbox input::placeholder {
color: rgba( 255, 255, 255, .4 ); color: rgba( 255, 255, 255, .4 );
} }
@ -1406,10 +1405,6 @@ rapi-doc::part(section-endpoint-head-method) {
outline: none; outline: none;
} }
.select-style select::-ms-expand {
display: none;
}
.select-style :hover { .select-style :hover {
cursor: pointer; cursor: pointer;
} }
@ -1591,12 +1586,6 @@ input[type="search"]::-webkit-search-results-decoration { display: none; }
margin-inline-end: .5rem; margin-inline-end: .5rem;
} }
.searchform input:-ms-input-placeholder,
.searchform input::placeholder {
color: var(--INTERNAL-MAIN-color);
filter: grayscale(1) contrast(10000) opacity(.4);
}
.searchform .btn { .searchform .btn {
display: inline-flex; display: inline-flex;
} }

View file

@ -416,3 +416,8 @@ 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);
}