Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.1.17 #94

Merged
merged 15 commits into from
Aug 25, 2019
Prev Previous commit
Next Next commit
fix active style for header-search icon
  • Loading branch information
aristath committed Aug 25, 2019
commit fa10a2cc74d6ecc44adbbe789a4db9ab1dd2a98c
4 changes: 3 additions & 1 deletion grid-parts/styles/header/styles-header-search.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion grid-parts/styles/header/styles-header-search.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 13 additions & 4 deletions grid-parts/styles/header/styles-header-search.scss
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
.gridd-header-search {
background-color: var(--gridd-header-search-bg, #ffffff);
}

.gridd-header-search form.search-form {
font-size: calc(var(--gridd-header-search-font-size, 1) * 1em);
color: var(--gridd-header-search-color, #000000);
form.search-form {
font-size: calc(var(--gridd-header-search-font-size, 1) * 1em);
color: var(--gridd-header-search-color, #000000);
}

.search-submit {

&:focus,
&:hover,
&:active {
box-shadow: none;
}
}
}