fix(ngShowHide): change the .ng-hide CSS class to use an !important flag

This commit is contained in:
Matias Niemelä
2013-07-29 20:32:55 -04:00
committed by Misko Hevery
parent 85f0d4af97
commit 246c1439b5
2 changed files with 139 additions and 21 deletions

View File

@@ -1,14 +1,11 @@
@charset "UTF-8";
[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak],
.ng-cloak, .x-ng-cloak {
.ng-cloak, .x-ng-cloak,
.ng-hide {
display: none !important;
}
ng\:form {
display: block;
}
.ng-hide {
display: none;
}