/*------------------------------------*\
$Flyout - flyout.less
\*------------------------------------*/
//**
// * Flyouts are pieces of content that fly out of a parent when said parent is
// * hovered. They typically appear bottom-left of the parent.
// * E.g.:
//
// *
// * Extend these objects in your theme stylesheet.
// */
.es-flyout {
position: relative;
.es-flyout-content {
position: absolute;
.opacity(0);
}
&:hover {
.es-flyout-content {
.opacity(100);
}
}
&.show-all {
.es-flyout-content {
.opacity(100)
}
}
.es-flyout-button {
> i {
font-size: 8px;
margin-right: 4px;
}
&:hover {
text-decoration: underline;
// Icons
> i {
text-decoration: none;
}
}
}
}//es-flyout