Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Nicholas J Anderson
whats-open-web
Commits
81623eb5
Commit
81623eb5
authored
Jan 14, 2018
by
Mattias J Duffy
Browse files
fix to ios search bar issue
parent
85192cc4
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/containers/SearchBar.js
View file @
81623eb5
...
...
@@ -93,7 +93,7 @@ class SearchBar extends React.Component {
<
Input
placeholder
=
"
Name, Location, etc.
"
disableUnderline
className
=
{
'
search-bar-input
'
}
className
=
{
classNames
(
'
search-bar-input
-open
'
&&
!
this
.
state
.
isMobileOpen
,
'
hide-search-input
'
&&
this
.
state
.
isMobileOpen
)
}
onChange
=
{
this
.
handleChange
}
onFocus
=
{
this
.
handleFocus
}
onBlur
=
{
this
.
handleBlur
}
...
...
src/styles/containers/searchBar.scss
View file @
81623eb5
...
...
@@ -18,7 +18,9 @@
.search-bar-back-btn
{
display
:
none
!
important
;
}
.hide-search-input
{
display
:
none
!
important
;
}
.search-bar-search-icon
,
.search-bar-arrow-icon
{
display
:
block
;
color
:
rgba
(
0
,
0
,
0
,
0
.54
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment