fixed placeholder text font color

pull/2/head
David Tookey 5 years ago
parent 3f516dab3b
commit 054ed96eea

@ -89,7 +89,7 @@
<div class="album py-5">
<div class="container">
<input type="text" class="form-control w-100 bg-info border border-boxborder text-searchfont"
<input type="text" class="form-control w-100 bg-info border border-boxborder text-searchfont input"
placeholder="Search (What kind of resource are you looking for?)"
aria-label="Search">
</div>

@ -129,18 +129,6 @@ body {
text-align: left;
}
.input::-webkit-input-placeholder {
color: searchfont !important;
} /* WebKit, Blink, Edge */
.input:-moz-placeholder {
color: searchfont !important;
} /* Mozilla Firefox 4 to 18 */
.input::-moz-placeholder {
color: searchfont !important;
} /* Mozilla Firefox 19+ */
.category-header p {
margin: 0 0 .15em 0;
padding-left: 1rem;

@ -1,4 +1,5 @@
@use "sass:map";
$enable-rounded: true !default;
@ -11,27 +12,27 @@ $enable-rounded: true !default;
cursor: pointer;
}
.web-card-background{
.web-card-background {
background-color: map-get($theme-colors, inactivecard);
}
.web-card-background:hover{
.web-card-background:hover {
background-color: map-get($theme-colors, activecard);
}
.web-card-background:hover .text-header{
.web-card-background:hover .text-header {
color: map-get($theme-colors, headertextcolorhover);
}
.web-card-background:hover .text-paragraph{
.web-card-background:hover .text-paragraph {
color: map-get($theme-colors, paragraphtextcolorhover);
}
.web-card-background:hover .web-card-image-background{
.web-card-background:hover .web-card-image-background {
background-color: map-get($theme-colors, webcardimagebackgroundhover);
}
.web-card-image-background{
.web-card-image-background {
background-color: map-get($theme-colors, webcardimagebackground);
border-radius: 50%;
}
@ -40,7 +41,7 @@ $enable-rounded: true !default;
color: map-get($theme-colors, headertextcolor);
}
.text-paragraph{
.text-paragraph {
color: map-get($theme-colors, paragraphtextcolor);
}
@ -48,11 +49,11 @@ $enable-rounded: true !default;
overflow: hidden;
}
html{
html {
height: 100%
}
body{
body {
height: 100%;
}
@ -73,4 +74,8 @@ body{
border-color: map-get($theme-colors, activeborderaccordion);
}
.form-control::-webkit-input-placeholder {
color: map-get($theme-colors, searchfont) !important;
}

@ -11,7 +11,7 @@ $theme-colors: (
"activecard": #707070,
"boxborder": #272727,
"activecardfont":#e1e4e8,
"searchfont": #808080,
"searchfont": grey,
"sidebarfill": #202023,
"sidebartext": #808080,
"webcardimagebackground": #707070,

Loading…
Cancel
Save