mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2024-11-23 07:47:54 +00:00
theme: move IE specific stuff to fallback CSS #402
This commit is contained in:
parent
8569a64c2b
commit
ed29c7c8ae
3 changed files with 18 additions and 11 deletions
|
@ -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 );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
@ -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);
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue