Fixes #6339: Use important flag on .hide and .show utility classes

This commit is contained in:
Mark Otto 2012-12-20 01:30:32 -08:00
parent c00f29e4d4
commit f706acb11c
2 changed files with 4 additions and 4 deletions

View File

@ -6053,11 +6053,11 @@ a.badge:hover {
} }
.hide { .hide {
display: none; display: none !important;
} }
.show { .show {
display: block; display: block !important;
} }
.invisible { .invisible {

View File

@ -13,10 +13,10 @@
// Toggling content // Toggling content
.hide { .hide {
display: none; display: none !important;
} }
.show { .show {
display: block; display: block !important;
} }
// Visibility // Visibility