grafana/public/sass/mixins/_animations.scss

37 lines
641 B
SCSS
Raw Normal View History

@mixin keyframes($animation-name) {
2017-12-19 09:22:41 -06:00
@-webkit-keyframes #{$animation-name} {
@content;
}
@-moz-keyframes #{$animation-name} {
@content;
}
@-ms-keyframes #{$animation-name} {
@content;
}
@-o-keyframes #{$animation-name} {
@content;
}
@keyframes #{$animation-name} {
@content;
}
}
@mixin animation($str) {
-webkit-animation: #{$str};
-moz-animation: #{$str};
-ms-animation: #{$str};
-o-animation: #{$str};
2016-02-20 17:08:35 -06:00
animation: #{$str};
}
2017-08-31 09:38:49 -05:00
.animate-height {
max-height: 0;
overflow: hidden;
&--open {
max-height: 1000px;
overflow: auto;
transition: max-height 250ms ease-in-out;
}
}