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

This commit is contained in:
Brian Talbot
2014-09-29 12:53:18 -04:00
committed by cahrens
parent 62db7a82a1
commit 21aab92183
5 changed files with 5 additions and 23 deletions

View File

@@ -300,6 +300,11 @@ mark {
@extend %ui-disabled;
}
// UI - is hidden
.is-hidden {
display: none;
}
// UI - semantically hide text
.sr {
@extend %text-sr;

View File

@@ -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 {

View File

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

View File

@@ -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;
}
}
}

View File

@@ -11,10 +11,6 @@
background: $notify-banner-bg-1;
padding: $baseline ($baseline*1.5);
&.is-hidden {
display: none;
}
// basic object
.msg {
@include clearfix();