I have a system where the front was done with AngularJS
. In this system I have the page index.html
where I declare all the libraries, in that same page I have
o seguinte trecho de código:
<div id="wrapper">
<hamburger-toggle state="stateModel" id="menu-toggle" href="#menu"></hamburger-toggle>
<div ng-view></div>
</div>
I have a div
that has the CSS class wrapper
, and within that div
I have another where I load all my pages.
The problem is that my login page loads into this div
with class wrapper
, and this class unconfigures the entire page. I would like to ignore this class only on my login page.
I tried to do this:
#wrapper input:not(.ignoreCss) {...}
And at the beginning of the login page I did this:
<div class="ignoreCss">
...
But it did not work. How do I resolve this issue?