diff options
author | mkanat%bugzilla.org <> | 2009-06-21 21:33:40 +0200 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2009-06-21 21:33:40 +0200 |
commit | 6a23b8335dd9e0786cf2c6ea90c8574ac0c6f28f (patch) | |
tree | 09210e7401d57785effcc9b8bd86c2642f8a1d8d /skins | |
parent | 4c3c583a411a59ae42df2652c8122fcfd5364c52 (diff) | |
download | bugzilla-6a23b8335dd9e0786cf2c6ea90c8574ac0c6f28f.tar.gz bugzilla-6a23b8335dd9e0786cf2c6ea90c8574ac0c6f28f.tar.xz |
Bug 463598: Improve the performance of the JavaScript that adjusts field values based on the value of another field
Patch by Max Kanat-Alexander <mkanat@bugzilla.org> r=wicked, a=mkanat
Diffstat (limited to 'skins')
-rw-r--r-- | skins/standard/global.css | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/skins/standard/global.css b/skins/standard/global.css index d36f88f4a..3e5765434 100644 --- a/skins/standard/global.css +++ b/skins/standard/global.css @@ -319,7 +319,7 @@ div#docslinks { /** End Comments **/ -.bz_default_hidden, .bz_tui_hidden { +.bz_default_hidden, .bz_tui_hidden, .bz_hidden_field, .bz_hidden_option { /* 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). */ @@ -456,13 +456,6 @@ div.user_match { vertical-align: top; } -.bz_hidden_field, .bz_hidden_option { - display: none; -} -.bz_hidden_option { - visibility: hidden; -} - .calendar_button { background: transparent url("global/calendar.png") no-repeat; width: 20px; |