summaryrefslogtreecommitdiffstats
path: root/skins
diff options
context:
space:
mode:
authorByron Jones <glob@mozilla.com>2015-04-17 06:56:18 +0200
committerByron Jones <glob@mozilla.com>2015-04-17 06:56:18 +0200
commit09de3de190a692dfbc2533ceee8f31648905b91a (patch)
treeb551eb1643bf54f614b3810b0c84bec90d0b411b /skins
parente9bfbbb9c07d902499bb0901a0cd67fe9279bf3b (diff)
downloadbugzilla-09de3de190a692dfbc2533ceee8f31648905b91a.tar.gz
bugzilla-09de3de190a692dfbc2533ceee8f31648905b91a.tar.xz
Bug 1154730: rewrite product/component searching to use jquery-ui instead of yui
Diffstat (limited to 'skins')
-rw-r--r--skins/standard/global.css22
1 files changed, 22 insertions, 0 deletions
diff --git a/skins/standard/global.css b/skins/standard/global.css
index 3eb106faf..0cfec436f 100644
--- a/skins/standard/global.css
+++ b/skins/standard/global.css
@@ -667,3 +667,25 @@ input.required, select.required, span.required_explanation {
border: 2px solid #B70000;
background-color: #FFEBEB;
}
+
+/* jquery-ui overrides */
+
+.ui-autocomplete {
+ /* set a max height for autocomplete lists */
+ overflow-y: auto;
+ overflow-x: hidden;
+ max-height: 500px;
+ /* hovering over the bottom item increases the height by 1px, resulting in a scrollbar */
+ padding-bottom: 1px !important;
+}
+
+/* always use our font and size */
+.ui-widget {
+ font-family: inherit !important;
+ font-size: small !important;
+}
+
+/* menu items shouldn't be bold */
+.ui-menu .ui-menu-item {
+ font-weight: normal !important;
+}