-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hide class has an !important rule now #6024
Comments
|
This has broken most of my JQuery animations. (slideDown, show etc...) I had used class="hide" instead of style="display: none". |
|
Visibility classes need important because they are too easy to override. |
|
Is there any plausible reason for that? |
|
Totally agree with wolfgang-demeter !!! |
|
I'm filtering all the curse words at the moment... give me my old |
|
@rafibomb Is there any update on that matter? |
|
an important in a framework stylesheet is realy ugly... can't understand this |
In foundation 5.4.7 version you changed .hide css class to have
.hide {
display: none !important;
visibility: hidden;
}
instead of the previous
.hide {
display: none; }
That makes our life much harder now, we had to go back to our project and overwrite all of them. When you use !important is not easy to do it.
The text was updated successfully, but these errors were encountered: