Advertisement
Guest User

Untitled

a guest
Jul 5th, 2014
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.45 KB | None | 0 0
  1. .alert.ng-hide-add, .alert.ng-hide-remove{
  2.     -webkit-transition:all ease 1.0s;
  3.     -moz-transition:all ease 1.0s;
  4.     -o-transition:all ease 1.0s;
  5.     transition:all ease 1.0s;
  6. }
  7.  
  8. .alert.ng-hide-add{
  9.     max-height: 200px;
  10.     opacity: 1;
  11. }
  12.  
  13. .alert.ng-hide-add.ng-hide-add-active{
  14.     opacity: .8;
  15.     max-height: 0px;
  16. }
  17.  
  18. .alert.ng-hide-remove{
  19.     opacity: .8;
  20.     max-height: 0px;
  21. }
  22.  
  23. .alert.ng-hide-remove.ng-hide-remove-active{
  24.     max-height: 200px;
  25.     opacity: 1;
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement