diff options
author | Bharat Mediratta <bharat@menalto.com> | 2013-02-03 18:48:30 -0500 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2013-02-03 18:55:23 -0500 |
commit | 0494244e8068198707bf602199413cd216b0d515 (patch) | |
tree | 59d31d59047c85c13a8061165a453f86aa501510 /themes | |
parent | dece6dc5a5880c6267431ba3299c5758b38662ee (diff) |
Super first pass:
- jQuery 1.90
- jQuery UI 1.10
- Superfish 1.5.1 (minus all plugins)
- jQuery Form 3.26.0-2013.01.28
Deleted all other jQuery plugins for now.
- Reworked autocomplete to use the latest jQuery code.
- Deleted references to $.browser.msie, no longer supported
- Basic CSS support for autocomplete - lots more work needed there
Diffstat (limited to 'themes')
-rw-r--r-- | themes/wind/css/screen.css | 6 | ||||
-rw-r--r-- | themes/wind/js/ui.init.js | 3 |
2 files changed, 6 insertions, 3 deletions
diff --git a/themes/wind/css/screen.css b/themes/wind/css/screen.css index d3e0f83c..adddb93c 100644 --- a/themes/wind/css/screen.css +++ b/themes/wind/css/screen.css @@ -948,6 +948,12 @@ button { display: inline-block; } +/* Autocomplete */ + +.ui-autocomplete { + text-align: left; +} + /* Status and validation messages ~~~~ */ .g-message-block { diff --git a/themes/wind/js/ui.init.js b/themes/wind/js/ui.init.js index 3ee3e32e..5a83c015 100644 --- a/themes/wind/js/ui.init.js +++ b/themes/wind/js/ui.init.js @@ -82,9 +82,6 @@ $(document).ready(function() { } else { var sib_height = $(this).prev().height(); } - if ($.browser.msie && $.browser.version <= 8) { - sib_height = sib_height + 1; - } $(this).css("height", sib_height); $(this).css("position", "relative"); $(this).css("top", 0).css("left", 0); |