Visibility .hidden added.

This commit is contained in:
Dennis Eichhorn 2016-02-11 21:12:24 +01:00
parent 4b480593e2
commit 1a0a8280e7
3 changed files with 7 additions and 3 deletions

View File

@ -207,6 +207,9 @@ pre {
.floatRight {
float: right; }
.hidden {
display: none; }
.ok {
color: #5cff56; }
@ -2432,5 +2435,3 @@ table.list td {
-moz-box-shadow: inset 1px 1px 0px 0px #beddf1;
-webkit-box-shadow: inset 1px 1px 0px 0px #beddf1;
box-shadow: inset 1px 1px 0px 0px #beddf1; }
/*# sourceMappingURL=styles.css.map */

View File

@ -1,3 +1,3 @@
@import "clean", "mixin", "default", "color", "size", "transformation", "alignment";
@import "clean", "mixin", "default", "color", "size", "transformation", "alignment", "visibility";
@import "layout", "text", "tooltip", "spinner", "canvas", "form", "icon", "image", "input", "accordion", "alert", "badge", "blockquote", "breadcrumb", "button", "link", "list", "nav", "note", "pagination", "popup", "progress", "section", "tab", "table", "tag";
@import "media";

3
visibility.scss Normal file
View File

@ -0,0 +1,3 @@
.hidden {
display: none;
}