Skip to content

Commit

Permalink
CSS: Add transition mixin
Browse files Browse the repository at this point in the history
refs #5543
  • Loading branch information
lippserd committed Oct 28, 2015
1 parent ba724cc commit 41eee7f
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions public/css/icinga/mixins.less
Expand Up @@ -63,6 +63,13 @@
background-clip: padding-box;
}

.transition (@transition) {
-webkit-transition: @transition;
-moz-transition: @transition;
-o-transition: @transition;
transition: @transition;
}

.visible {
visibility: visible;
}

0 comments on commit 41eee7f

Please sign in to comment.