taitems / Aristo-jQuery-UI-Theme

The "Aristo" theme for Cappuccino ported to a jQuery UI Theme

Home Page:http://taitems.github.com/Aristo-jQuery-UI-Theme/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

trick autocomplete in ui dialog

gtraxx opened this issue · comments

Hello, working with aristo,
I quickly realized that using the autocomplete in a dialog box has display problem.
But I find a good method.

.ui-autocomplete {
background:white;
max-height: 250px;
overflow-y: auto;
/* prevent horizontal scrollbar /
overflow-x: hidden;
/
add padding to account for vertical scrollbar /
padding-right: 20px;
z-index:1003 !important;
z-index:1003;
}
/
Option */
.ui-autocomplete-loading { background: white url(images/loader.gif) right center no-repeat; }

Best regards :)