-
Notifications
You must be signed in to change notification settings - Fork 235
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add SearchBar for layers selection (#400)
* Add SearchBar for layers selection * Remove commented code * Add new line to the end of css file * Fix searchbar error with only one letter pattern * Prettifying * Fix bug with no search results
- Loading branch information
Showing
8 changed files
with
104 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
.insert-layer-title { | ||
position: relative; | ||
margin-top: 10px !important; | ||
margin-bottom: 21px !important; | ||
} | ||
|
||
#layer-search-icon { | ||
position: absolute; | ||
left: -5px; | ||
top: 31px; | ||
} | ||
|
||
#layer-search-icon:hover { | ||
cursor: pointer; | ||
} | ||
|
||
#layer-search-input { | ||
position: absolute; | ||
top: 36px; | ||
left: 20px; | ||
font-size: 15px; | ||
background: none; | ||
border: none; | ||
color: rgb(69, 80, 97); | ||
outline: none; | ||
opacity: 1; | ||
transition: 0.3s; | ||
} | ||
|
||
.layer-search-input-selected { | ||
opacity: 1 !important; | ||
} | ||
|
||
.matched-search-char { | ||
color: rgb(69, 80, 97); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1206,4 +1206,4 @@ input[type="file"] { | |
background: white; | ||
transform: rotate(-45deg) | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,4 +35,4 @@ Tabs.propTypes = { | |
selectedPhase: React.PropTypes.number | ||
}; | ||
|
||
export default Tabs; | ||
export default Tabs; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters