Skip to content

Commit

Permalink
CSS: Add invisible and visible mixin
Browse files Browse the repository at this point in the history
refs #5543
  • Loading branch information
lippserd committed Sep 30, 2015
1 parent a1d6711 commit 89c5a40
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions public/css/icinga/mixins.less
Expand Up @@ -26,6 +26,11 @@
}
}

.invisible {
// Maintain layout but hide visually and from screen readers
visibility: hidden;
}

.transform(@transform) {
-webkit-transform: @transform;
-moz-transform: @transform;
Expand All @@ -43,3 +48,7 @@
-moz-background-clip: padding;
background-clip: padding-box;
}

.visible {
visibility: visible;
}

0 comments on commit 89c5a40

Please sign in to comment.