summaryrefslogtreecommitdiffstats
path: root/skins/standard/global.css
diff options
context:
space:
mode:
Diffstat (limited to 'skins/standard/global.css')
-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;
+}