Blame view
app/bower_components/bootstrap/less/component-animations.less
666 Bytes
f986e111b
|
1 2 3 4 5 6 7 |
// // Component animations // -------------------------------------------------- // Heads up! // // We don't use the `.opacity()` mixin here since it causes a bug with text |
87c93a029
|
8 |
// fields in IE7-8. Source: https://github.com/twbs/bootstrap/pull/3552. |
f986e111b
|
9 10 11 12 13 14 15 16 17 18 19 |
.fade { opacity: 0; .transition(opacity .15s linear); &.in { opacity: 1; } } .collapse { display: none; |
87c93a029
|
20 21 22 23 |
&.in { display: block; } tr&.in { display: table-row; } tbody&.in { display: table-row-group; } |
f986e111b
|
24 |
} |
87c93a029
|
25 |
|
f986e111b
|
26 27 28 29 |
.collapsing { position: relative; height: 0; overflow: hidden; |
87c93a029
|
30 31 32 |
.transition-property(~"height, visibility"); .transition-duration(.35s); .transition-timing-function(ease); |
f986e111b
|
33 |
} |