Created
September 22, 2016 13:19
-
-
Save johnrhampton/d4725030ef5a5ce656004c8d5c27b763 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* loading component styles | |
*/ | |
.dissolve-animation.hide-remove { | |
display: inline !important; | |
} | |
.dissolve-animation.hide-remove, | |
.dissolve-animation.hide-add { | |
-webkit-transition: 0.8s linear all; | |
-moz-transition: 0.8s linear all; | |
-o-transition: 0.8s linear all; | |
transition: 0.8s linear all; | |
} | |
.dissolve-animation.hide-remove.hide-remove-active, | |
.dissolve-animation.hide-add { | |
opacity: 1; | |
} | |
.dissolve-animation.hide-add.hide-add-active, | |
.dissolve-animation.hide-remove { | |
opacity: 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment