Files
Brandy Carney 5692abe3fd fix(showHideWhen): remove hidden attribute on directives and use classes
Each directive applies a different class so they won’t remove each
other if they’re on the same element. If either class is applied the
element won’t display.

closes #5836
2016-04-15 15:02:04 -04:00

15 lines
259 B
SCSS

@import "../../globals.core";
// Show / Hide When
// --------------------------------------------------
// Applied by the showWhen directive
.hidden-show-when {
display: none;
}
// Applied by the hideWhen directive
.hidden-hide-when {
display: none;
}