0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-11-29 11:24:18 +01:00
Bootstrap/scss/_animation.scss

43 lines
529 B
SCSS
Raw Normal View History

.fade {
2012-05-21 02:56:57 +02:00
opacity: 0;
@if $enable-transitions {
transition: opacity .15s linear;
}
2014-12-02 23:02:35 +01:00
2016-10-27 01:24:46 +02:00
&.active {
2012-05-21 02:56:57 +02:00
opacity: 1;
}
}
.collapse {
display: none;
2016-10-27 01:24:46 +02:00
&.active {
2014-12-02 23:02:35 +01:00
display: block;
}
2016-10-03 06:23:04 +02:00
}
tr {
2016-10-27 01:24:46 +02:00
&.collapse.active {
2016-10-03 06:23:04 +02:00
display: table-row;
}
}
tbody {
2016-10-27 01:24:46 +02:00
&.collapse.active {
2016-10-03 06:23:04 +02:00
display: table-row-group;
}
}
.collapsing {
position: relative;
height: 0;
overflow: hidden;
@if $enable-transitions {
transition-timing-function: ease;
transition-duration: .35s;
transition-property: height;
}
2012-05-21 02:56:57 +02:00
}