Commit 455bb06f authored by Zack Cuddy's avatar Zack Cuddy

Global Search - Fix Input Border

This change fices a regression
from the Header Search refactor.

This fixes the off color
border added by GlInput.
parent 6a301eed
......@@ -1832,6 +1832,7 @@ body.gl-dark .header-search svg {
body.gl-dark .header-search input {
background-color: transparent;
color: rgba(250, 250, 250, 0.8);
box-shadow: inset 0 0 0 1px rgba(250, 250, 250, 0.4);
}
body.gl-dark .header-search input::placeholder {
color: rgba(250, 250, 250, 0.8);
......
......@@ -154,6 +154,7 @@
input {
background-color: transparent;
color: rgba($search-and-nav-links, 0.8);
box-shadow: inset 0 0 0 1px rgba($search-and-nav-links, 0.4);
&::placeholder {
color: rgba($search-and-nav-links, 0.8);
......
......@@ -1832,6 +1832,7 @@ body.gl-dark .header-search svg {
body.gl-dark .header-search input {
background-color: transparent;
color: rgba(250, 250, 250, 0.8);
box-shadow: inset 0 0 0 1px rgba(250, 250, 250, 0.4);
}
body.gl-dark .header-search input::placeholder {
color: rgba(250, 250, 250, 0.8);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment