diff options
| author | Matias Niemelä | 2013-07-29 20:32:55 -0400 | 
|---|---|---|
| committer | Misko Hevery | 2013-08-02 23:55:53 -0700 | 
| commit | 246c1439b502b06823650505cbe4a3848b6fa5a3 (patch) | |
| tree | 71798a17a081a35bb2ea59164723f5da09b6a236 /css | |
| parent | 85f0d4af97b48f069290ce57888639e5744bdad2 (diff) | |
| download | angular.js-246c1439b502b06823650505cbe4a3848b6fa5a3.tar.bz2 | |
fix(ngShowHide): change the .ng-hide CSS class to use an !important flag
Diffstat (limited to 'css')
| -rw-r--r-- | css/angular.css | 7 | 
1 files changed, 2 insertions, 5 deletions
| diff --git a/css/angular.css b/css/angular.css index 6833234f..b88e61e4 100644 --- a/css/angular.css +++ b/css/angular.css @@ -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; -} | 
