Skip to content

Instantly share code, notes, and snippets.

@envoytravis
Last active August 29, 2015 14:13
Show Gist options
  • Save envoytravis/0e30c6249982753a0481 to your computer and use it in GitHub Desktop.
Save envoytravis/0e30c6249982753a0481 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.1.0-beta)
// ----
.parent {
&:hover {
@extend %child_hover;
}
}
.second-parent {
&:hover {
@extend %child_hover;
}
}
.child {
display: none;
}
%child_hover {
.child {
display: block;
}
}
.child {
display: none; }
.parent:hover .child, .second-parent:hover .child {
display: block; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment