diff options
Diffstat (limited to 'skins')
-rw-r--r-- | skins/standard/global.css | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/skins/standard/global.css b/skins/standard/global.css index aa3b9d758..75dc437d3 100644 --- a/skins/standard/global.css +++ b/skins/standard/global.css @@ -320,7 +320,10 @@ div#docslinks { /** End Comments **/ .bz_default_hidden, .bz_tui_hidden { - display: none; + /* We have !important because we want elements with these classes to always + * be hidden, even if there is some CSS that overrides it (we use these + * classes inside JavaScript to hide things). */ + display: none !important; } span.quote { |