resolving display issues by re-implementing discussions-scoped is-hidden classes

This commit is contained in:
Brian Talbot
2014-09-30 14:51:30 -04:00
committed by cahrens
parent 21aab92183
commit b58f7ad7b4
2 changed files with 14 additions and 0 deletions

View File

@@ -136,6 +136,10 @@
&:last-child {
margin-right: 0;
}
&.is-hidden {
display: none;
}
}
@mixin forum-user-label($color) {

View File

@@ -12,7 +12,12 @@
.actions-item {
@include box-sizing(border-box);
display: block;
margin: ($baseline/4) 0;
&.is-hidden {
display: none;
}
}
.more-wrapper {
@@ -77,7 +82,12 @@
}
.actions-item {
display: block;
margin: 0;
&.is-hidden {
display: none;
}
}
}