mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-24 21:12:38 -04:00
2d9b089e16
Fix inconsistent use of tabs and spaces in less files GitOrigin-RevId: c69667f0dc6bc70ea3623890e2b2b741e358d454
29 lines
511 B
Text
Executable file
29 lines
511 B
Text
Executable file
//
|
|
// Component animations
|
|
// --------------------------------------------------
|
|
|
|
// Heads up!
|
|
//
|
|
// We don't use the `.opacity()` mixin here since it causes a bug with text
|
|
// fields in IE7-8. Source: https://github.com/twitter/bootstrap/pull/3552.
|
|
|
|
.fade {
|
|
opacity: 0;
|
|
.transition(opacity 0.15s linear);
|
|
&.in {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.collapse {
|
|
display: none;
|
|
&.in {
|
|
display: block;
|
|
}
|
|
}
|
|
.collapsing {
|
|
position: relative;
|
|
height: 0;
|
|
overflow: hidden;
|
|
.transition(height 0.35s ease);
|
|
}
|