Skip to content

Commit

Permalink
Merge pull request #701 from prymitive/shadows
Browse files Browse the repository at this point in the history
feat(ui): add shadows to dropdown menus
  • Loading branch information
prymitive authored May 9, 2019
2 parents 17fefff + 884bbe8 commit 3b46d02
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const MenuContent = onClickOutside(
return (
<FetchPauser>
<div
className="dropdown-menu d-block"
className="dropdown-menu d-block shadow"
ref={popperRef}
style={popperStyle}
data-placement={popperPlacement}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const MenuContent = onClickOutside(
return (
<FetchPauser>
<div
className="dropdown-menu d-block"
className="dropdown-menu d-block shadow"
ref={popperRef}
style={popperStyle}
data-placement={popperPlacement}
Expand Down
2 changes: 1 addition & 1 deletion ui/src/Components/NavBar/FilterInput/Constants.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const AutosuggestTheme = {
container: "autosuggest d-inline-block",
suggestionsContainer: "dropdown",
suggestionsList: "dropdown-menu show",
suggestionsList: "dropdown-menu show shadow",
suggestion: "dropdown-item cursor-pointer",
suggestionFocused: "active",
suggestionHighlighted: "active"
Expand Down
2 changes: 1 addition & 1 deletion ui/src/Components/NavBar/FilterInput/History.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ const HistoryMenu = onClickOutside(
}) => {
return (
<div
className="dropdown-menu d-block components-navbar-historymenu"
className="dropdown-menu d-block shadow components-navbar-historymenu"
ref={popperRef}
style={popperStyle}
data-placement={popperPlacement}
Expand Down

0 comments on commit 3b46d02

Please sign in to comment.