-
Notifications
You must be signed in to change notification settings - Fork 138
Static header: adding a visible border to the search bar #2587
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
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be located under sites/search. Please update the documentation. I don't think there is a version history for this one, but at least update the version to 1.0.1
sites/search/index.json-ld
Outdated
@@ -1,6 +1,6 @@ | |||
{ | |||
"@context": { | |||
"@version": 1.1, | |||
"@version": 1.2, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do not change this, it's the version of the terms context. It's not related to the component itself. :)
sites/search/_base.scss
Outdated
@@ -40,6 +40,11 @@ | |||
box-shadow: none; | |||
color: #555; | |||
position: relative; | |||
|
|||
:active { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pretty sure this would not do anything. Have you tested it?
sites/search/_base.scss
Outdated
|
||
&:focus, | ||
&:active { | ||
border-color: #66afe9; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should use the "outline" style instead of the border. The outline wont interfere with the placement of the input field.
Static header: adding a visible border to the search bar
Related to WET-264