Skip to content

Commit

Permalink
fix(ui): update z-index of cells when hovered
Browse files Browse the repository at this point in the history
Co-authored-by: Alex Paxton <thealexpaxton@gmail.com>
  • Loading branch information
ischolten and alexpaxton committed Mar 5, 2019
1 parent 6591191 commit ceffc0e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ui/src/shared/components/cells/react-grid-layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@
z-index: $z--cell-default;
transition: all 200ms ease;
transition-property: left, top;

&:hover {
z-index: $z--cell-context-hover;
}
}
.react-grid-item.cssTransforms {
transition-property: transform;
Expand Down Expand Up @@ -58,7 +62,7 @@
bottom: 0;
right: 0;
opacity: 0;

&:before,
&:after {
content: '';
Expand Down

0 comments on commit ceffc0e

Please sign in to comment.