Browse Source

Fix breaking change: css animation defaults of directive animation classes changed. See 1bebe36aa9 (diff-fc9e96da9f5a9dfda43ef79e695d27ccR155).

pull/287/head
Evan Theurer 10 years ago committed by Simon Eisenmann
parent
commit
a47d220807
  1. 6
      src/styles/global/_animations.scss

6
src/styles/global/_animations.scss

@ -28,20 +28,22 @@ @@ -28,20 +28,22 @@
&.ng-hide-add {
display: block !important;
opacity: 1;
transition: all linear .5s;
transition: all linear 0s;
&.ng-hide-add-active {
opacity: 0;
transition: all linear .5s;
}
}
&.ng-hide-remove {
display: block !important;
opacity: 0;
transition: all linear .5s;
transition: all linear 0s;
&.ng-hide-remove-active {
opacity: 1;
transition: all linear .5s;
}
}
}

Loading…
Cancel
Save