summaryrefslogtreecommitdiff
path: root/lib/jquery.autocomplete.css
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2013-02-03 18:48:30 -0500
committerBharat Mediratta <bharat@menalto.com>2013-02-03 18:55:23 -0500
commit0494244e8068198707bf602199413cd216b0d515 (patch)
tree59d31d59047c85c13a8061165a453f86aa501510 /lib/jquery.autocomplete.css
parentdece6dc5a5880c6267431ba3299c5758b38662ee (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 'lib/jquery.autocomplete.css')
-rw-r--r--lib/jquery.autocomplete.css49
1 files changed, 0 insertions, 49 deletions
diff --git a/lib/jquery.autocomplete.css b/lib/jquery.autocomplete.css
deleted file mode 100644
index ca425822..00000000
--- a/lib/jquery.autocomplete.css
+++ /dev/null
@@ -1,49 +0,0 @@
-.ac_results {
- padding: 0px;
- border: 1px solid black;
- background-color: white;
- overflow: hidden;
- z-index: 99999;
- text-align: left;
-}
-
-.ac_results ul {
- width: 100%;
- list-style-position: outside;
- list-style: none;
- padding: 0;
- margin: 0;
-}
-
-.ac_results li {
- margin: 0px;
- padding: 2px 5px;
- cursor: default;
- display: block;
- /*
- if width will be 100% horizontal scrollbar will apear
- when scroll mode will be used
- */
- /*width: 100%;*/
- font: menu;
- font-size: 12px;
- /*
- it is very important, if line-height not setted or setted
- in relative units scroll will be broken in firefox
- */
- line-height: 16px;
- overflow: hidden;
-}
-
-.ac_loading {
- background: white url('images/loading-small.gif') right center no-repeat;
-}
-
-.ac_odd {
- background-color: #eee;
-}
-
-.ac_over {
- background-color: #0A246A;
- color: white;
-}