You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixing #6339, the !important flag was added for .hide class.
.hide { display: none !important; }
This breaks the utility of .show() jQuery function that adds style="display: block" attribute to the selected elements, because !important is stronger than style attribute. I created a JSFIDDLE that demonstrates this.
Fixing #6339, the
!important
flag was added for.hide
class.This breaks the utility of
.show()
jQuery function that addsstyle="display: block"
attribute to the selected elements, because!important
is stronger thanstyle
attribute. I created a JSFIDDLE that demonstrates this.While the
!important
flag cannot be removed from CSS only it's better to remove it from Bootstrap CSS and if the programmer wants to add it just add a new row in a CSS file.The text was updated successfully, but these errors were encountered: