summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/bootstrap/_component-animations.scss
blob: d985b6a82d13d44c6425dfe1b26a2d173eb04c26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// COMPONENT ANIMATIONS
// --------------------

.fade {
  @include transition(opacity .15s linear);
  opacity: 0;
  &.in {
    opacity: 1;
  }
}

.collapse {
  @include transition(height .35s ease);
  position:relative;
  overflow:hidden;
  height: 0;
  &.in { height: auto; }
}