Skip to content

Commit

Permalink
hover parent / child should only go down one level
Browse files Browse the repository at this point in the history
  • Loading branch information
kdoh committed Jun 6, 2018
1 parent 2d3c6d1 commit 3bcaf79
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/src/metabase/css/core/hover.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
visibility
hide and show a child element using visibility
*/
.hover-parent.hover--visibility .hover-child,
.hover-parent:hover.hover--visibility .hover-child--hidden {
.hover-parent.hover--visibility > .hover-child,
.hover-parent:hover.hover--visibility > .hover-child--hidden {
visibility: hidden;
}

.hover-parent:hover.hover--visibility .hover-child {
.hover-parent:hover.hover--visibility > .hover-child {
visibility: visible;
}

0 comments on commit 3bcaf79

Please sign in to comment.