mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 08:22:35 +01:00
663160c06a
renamed NzbDrone.Backbone to UI
23 lines
306 B
Plaintext
23 lines
306 B
Plaintext
//
|
|
// Component animations
|
|
// --------------------------------------------------
|
|
|
|
|
|
.fade {
|
|
opacity: 0;
|
|
.transition(opacity .15s linear);
|
|
&.in {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.collapse {
|
|
position: relative;
|
|
height: 0;
|
|
overflow: hidden;
|
|
.transition(height .35s ease);
|
|
&.in {
|
|
height: auto;
|
|
}
|
|
}
|