2010-01-12 21:59:54 +00:00
|
|
|
@charset "UTF-8";
|
|
|
|
|
|
2011-11-23 05:28:39 +00:00
|
|
|
[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak],
|
2013-07-30 00:32:55 +00:00
|
|
|
.ng-cloak, .x-ng-cloak,
|
|
|
|
|
.ng-hide {
|
2013-06-26 03:37:56 +00:00
|
|
|
display: none !important;
|
2011-08-20 07:24:24 +00:00
|
|
|
}
|
|
|
|
|
|
2011-10-29 05:01:21 +00:00
|
|
|
ng\:form {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
2013-10-31 21:09:49 +00:00
|
|
|
|
|
|
|
|
/* The styles below ensure that the CSS transition will ALWAYS
|
|
|
|
|
* animate and close. A nasty bug occurs with CSS transitions where
|
|
|
|
|
* when the active class isn't set, or if the active class doesn't
|
|
|
|
|
* contain any styles to transition to, then, if ngAnimate is used,
|
|
|
|
|
* it will appear as if the webpage is broken due to the forever hanging
|
|
|
|
|
* animations. The clip (!ie) and zoom (ie) CSS properties are used
|
|
|
|
|
* since they trigger a transition without making the browser
|
|
|
|
|
* animate anything and they're both highly underused CSS properties */
|
2013-11-06 06:57:34 +00:00
|
|
|
.ng-animate-start { clip:rect(0, auto, auto, 0); -ms-zoom:1.0001; }
|
|
|
|
|
.ng-animate-active { clip:rect(-1px, auto, auto, 0); -ms-zoom:1; }
|