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 { ...@@ -300,6 +300,11 @@ mark {
@extend %ui-disabled; @extend %ui-disabled;
} }
// UI - is hidden
.is-hidden {
display: none;
}
// UI - semantically hide text // UI - semantically hide text
.sr { .sr {
@extend %text-sr; @extend %text-sr;
......
...@@ -211,11 +211,6 @@ section.instructor-dashboard-content-2 { ...@@ -211,11 +211,6 @@ section.instructor-dashboard-content-2 {
display: block; display: block;
border-radius: 1px; border-radius: 1px;
padding: ($baseline*0.75) $baseline; padding: ($baseline*0.75) $baseline;
// CASE: is hidden
&.is-hidden {
display: none;
}
} }
.message-title { .message-title {
......
...@@ -136,10 +136,6 @@ ...@@ -136,10 +136,6 @@
&:last-child { &:last-child {
margin-right: 0; margin-right: 0;
} }
&.is-hidden {
display: none;
}
} }
@mixin forum-user-label($color) { @mixin forum-user-label($color) {
......
...@@ -12,12 +12,7 @@ ...@@ -12,12 +12,7 @@
.actions-item { .actions-item {
@include box-sizing(border-box); @include box-sizing(border-box);
display: block;
margin: ($baseline/4) 0; margin: ($baseline/4) 0;
&.is-hidden {
display: none;
}
} }
.more-wrapper { .more-wrapper {
...@@ -82,12 +77,7 @@ ...@@ -82,12 +77,7 @@
} }
.actions-item { .actions-item {
display: block;
margin: 0; margin: 0;
&.is-hidden {
display: none;
}
} }
} }
......
...@@ -11,10 +11,6 @@ ...@@ -11,10 +11,6 @@
background: $notify-banner-bg-1; background: $notify-banner-bg-1;
padding: $baseline ($baseline*1.5); padding: $baseline ($baseline*1.5);
&.is-hidden {
display: none;
}
// basic object // basic object
.msg { .msg {
@include clearfix(); @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