]> wagnertech.de Git - mfinanz.git/blob - css/design40/less/jquery.autocomplete.less
date error in mapping
[mfinanz.git] / css / design40 / less / jquery.autocomplete.less
1 /* ------------------------------------------------------------- */
2 /* Jquery-Autocomplete (jquery.autocomplete.less)                */
3 /* ------------------------------------------------------------- */
4
5
6 .ac_results {
7   padding: 0px;
8   border: 1px solid black;
9   background-color: white;
10   overflow: hidden;
11   z-index: 99999;
12 }
13
14 .ac_results ul {
15   width: 100%;
16   list-style-position: outside;
17   list-style: none;
18   padding: 0;
19   margin: 0;
20 }
21
22 .ac_results li {
23   margin: 0px;
24   padding: 2px 5px;
25   cursor: default;
26   display: block;
27   //  if width will be 100% horizontal scrollbar will apear when scroll mode will be used
28   // width: 100%;
29   font: menu;
30   font-size: @font-size-base; /*hps: vorher 12px */
31   //   it is very important, if line-height not setted or setted in relative units scroll will be broken in firefox
32   line-height: 16px;
33   overflow: hidden;
34 }
35
36 .ac_loading {
37   // PENDENT: Datei nicht gefunden, auch nicht auf jquery-ui.com
38   //background: white url('indicator.gif') right center no-repeat;
39 }
40
41 .ac_odd {
42   background-color: #eee;
43 }
44
45 .ac_over {
46   background-color: #0A246A;
47   color: white;
48 }
49
50
51