This commit is contained in:
McShelby 2022-11-23 17:46:52 +00:00
parent e9ddfe4274
commit c1afa41b9e
318 changed files with 7313 additions and 7293 deletions

View file

@ -324,7 +324,7 @@
}
#homelinks a {
color: #323232 /* var(--MENU-HOME-LINK-color) */
color: #404040 /* var(--MENU-HOME-LINK-color) */
}
#homelinks a:hover {
@ -510,4 +510,17 @@
.showFooter {
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

@ -178,6 +178,17 @@ body #sidebar ul.topics li.active > a {
0 0 8px var(--INTERNAL-MENU-SECTION-ACTIVE-CATEGORY-color);
}
body #sidebar .searchbox button:hover,
body .searchbox span:hover {
color: #fff;
text-shadow:
0 0 1px #fff,
0 0 2px #fff,
0 0 8px #808080,
0 0 4px var(--INTERNAL-MENU-SEARCH-color),
0 0 8px var(--INTERNAL-MENU-SEARCH-color);
}
body #sidebar select:hover,
body #sidebar .collapsible-menu .toggle:hover,
body #sidebar .select-container:hover,

View file

@ -87,7 +87,6 @@ th {
}
.searchbox > :first-child {
color: rgba( 255, 255, 255, .8 );
position: absolute;
left: 10px;
}
@ -107,13 +106,19 @@ th {
}
.searchbox span {
color: rgba( 255, 255, 255, .6 );
position: absolute;
right: 10px;
top: 4px;
cursor: pointer;
}
#sidebar .searchbox > :first-child,
#sidebar .searchbox button,
.searchbox span {
color: rgba( 255, 255, 255, .6 );
}
#sidebar .searchbox button:hover,
.searchbox span:hover {
color: rgba( 255, 255, 255, .9 );
}
@ -129,7 +134,6 @@ th {
font-weight: 300;
}
.searchbox input:-ms-input-placeholder,
.searchbox input::placeholder {
color: rgba( 255, 255, 255, .4 );
}
@ -1401,10 +1405,6 @@ rapi-doc::part(section-endpoint-head-method) {
outline: none;
}
.select-style select::-ms-expand {
display: none;
}
.select-style :hover {
cursor: pointer;
}
@ -1576,10 +1576,6 @@ input[type="search"]::-webkit-search-results-decoration { display: none; }
display: flex;
}
.searchform > :first-child {
color: rgba( 255, 255, 255, .8 );
}
.searchform input {
flex: 1 0 60%;
border-radius: 4px;
@ -1590,11 +1586,6 @@ input[type="search"]::-webkit-search-results-decoration { display: none; }
margin-inline-end: .5rem;
}
.searchform input:-ms-input-placeholder,
.searchform input::placeholder {
color: rgba( 255, 255, 255, .4 );
}
.searchform .btn {
display: inline-flex;
}

View file

@ -416,3 +416,8 @@ pre .copy-to-clipboard-button:hover {
background-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);
}