File: component-animations.less

package info (click to toggle)
twitter-bootstrap 2.0.2%2Bdfsg-4
  • links: PTS
  • area: main
  • in suites: jessie
  • size: 2,728 kB
  • ctags: 594
  • sloc: makefile: 106
file content (20 lines) | stat: -rw-r--r-- 269 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// COMPONENT ANIMATIONS
// --------------------

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

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