Commit 21aab921 by Brian Talbot Committed by cahrens

LMS: revising .is-hidden utility class to be used at a global level

parent 62db7a82
......@@ -300,6 +300,11 @@ mark {
@extend %ui-disabled;
}
// UI - is hidden
.is-hidden {
display: none;
}
// UI - semantically hide text
.sr {
@extend %text-sr;
......
......@@ -211,11 +211,6 @@ section.instructor-dashboard-content-2 {
display: block;
border-radius: 1px;
padding: ($baseline*0.75) $baseline;
// CASE: is hidden
&.is-hidden {
display: none;
}
}
.message-title {
......
......@@ -136,10 +136,6 @@
&:last-child {
margin-right: 0;
}
&.is-hidden {
display: none;
}
}
@mixin forum-user-label($color) {
......
......@@ -12,12 +12,7 @@
.actions-item {
@include box-sizing(border-box);
display: block;
margin: ($baseline/4) 0;
&.is-hidden {
display: none;
}
}
.more-wrapper {
......@@ -82,12 +77,7 @@
}
.actions-item {
display: block;
margin: 0;
&.is-hidden {
display: none;
}
}
}
......
......@@ -11,10 +11,6 @@
background: $notify-banner-bg-1;
padding: $baseline ($baseline*1.5);
&.is-hidden {
display: none;
}
// basic object
.msg {
@include clearfix();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment