diff options
author | mkanat%bugzilla.org <> | 2009-02-24 05:13:25 +0100 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2009-02-24 05:13:25 +0100 |
commit | 51c13dbeddd73ef4dd056a2e297696abe7d9e774 (patch) | |
tree | 24b44592a10e4e91be9b272b7849c065b48d6759 /skins | |
parent | 7cd25dd61e33ad7d5bf1c041937e1793c55e61fd (diff) | |
download | bugzilla-51c13dbeddd73ef4dd056a2e297696abe7d9e774.tar.gz bugzilla-51c13dbeddd73ef4dd056a2e297696abe7d9e774.tar.xz |
Bug 479197: The mini_login Bugzilla_password box does not convert to text type or clear itself in IE
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=glob, a=mkanat
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 { |