File: _transitions.scss

package info (click to toggle)
twitter-bootstrap4 4.3.1%2Bdfsg2-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 4,716 kB
  • sloc: sh: 35; makefile: 20; xml: 11
file content (20 lines) | stat: -rw-r--r-- 261 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
.fade {
  @include transition($transition-fade);

  &:not(.show) {
    opacity: 0;
  }
}

.collapse {
  &:not(.show) {
    display: none;
  }
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  @include transition($transition-collapse);
}