add autocomplete support to jqueryui css (#15493)

This commit is contained in:
Frédéric Péters 2017-03-17 17:12:22 +01:00
parent b235596042
commit 34bbb37ab4
1 changed files with 47 additions and 0 deletions

View File

@ -2,6 +2,21 @@ body .ui-front {
z-index: 1000;
}
.ui-helper-hidden {
display: none;
}
.ui-helper-hidden-accessible {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
}
.ui-widget-content {
border: 1px solid #aaa;
background: white;
@ -192,3 +207,35 @@ div.ui-dialog {
width: auto;
}
}
.ui-tooltip {
display: inline-block;
box-shadow: #666 0px 0px 4px 0px;
z-index: 100000;
div.ui-tooltip-content {
background: white;
padding: 1ex;
}
}
ul.ui-autocomplete {
position: absolute;
top: 0;
left: 0;
cursor: default;
list-style: none;
margin: 0;
padding: 0;
max-height: 15em;
overflow-y: scroll;
overflow-x: hidden;
li {
margin: 0;
padding: 0 1ex;
position: relative;
min-height: 0;
&:hover {
background: #eee;
}
}
}