Commit f706acb1 authored by Mark Otto's avatar Mark Otto
Browse files

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

parent c00f29e4
Showing with 4 additions and 4 deletions
+4 -4
......@@ -6053,11 +6053,11 @@ a.badge:hover {
}
.hide {
display: none;
display: none !important;
}
.show {
display: block;
display: block !important;
}
.invisible {
......
......@@ -13,10 +13,10 @@
// Toggling content
.hide {
display: none;
display: none !important;
}
.show {
display: block;
display: block !important;
}
// Visibility
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment