Merge pull request #7492 from sjpadgett/weno_updates
[openemr.git] / interface / themes / jquery.autocomplete.css
bloba92223f7ab8479652e807a60ada416261253087b
1 .ac_results {
2 background-color: var(--white);
3 border: 1px solid var(--black);
4 overflow: hidden;
5 padding: 0;
6 z-index: 99999;
9 .ac_results ul {
10 list-style: none;
11 list-style-position: outside;
12 margin: 0;
13 padding: 0;
14 width: 100%;
17 .ac_results li {
18 cursor: default;
19 display: block;
21 if width will be 100% horizontal scrollbar will apear
22 when scroll mode will be used
24 /*width: 100%;*/
25 font: menu;
26 font-size: 12px;
28 it is very important, if line-height not setted or setted
29 in relative units scroll will be broken in firefox
31 line-height: 16px;
32 margin: 0;
33 overflow: hidden;
34 padding: 2px 5px;
37 .ac_loading {
38 background: var(--white) url('indicator.gif') right center no-repeat;
41 .ac_odd {
42 background-color: #eee;
45 .ac_over {
46 background-color: #0a246a;
47 color: var(--white);