Files
archived-web-shared/styles/user-autocomplete.css
Hannes Magnusson ab9da123c7 Add a shared autocomplete-shadow images
I wonder why this isn't done in CSS instead?
2013-12-31 12:56:10 -08:00

33 lines
683 B
CSS

/* Used for username/fullname search autocomplete/suggest */
/* {{{ Stolen from http://www.devbridge.com/projects/autocomplete/jquery/ */
.autocomplete-w1 {
background: url(../images/autocomplete-shadow.png) no-repeat bottom right;
position: absolute;
top: 0px;
left: 0px;
margin: 6px 0 0 6px;
z-index: 1;
}
.autocomplete {
border: 1px solid #999;
background: #FFF;
cursor: default;
text-align: left;
max-height: 270px;
overflow: auto;
margin: -6px 6px 6px -6px;
}
.autocomplete .selected {
background:#F0F0F0;
}
.autocomplete div {
padding: 2px 5px;
white-space: nowrap;
}
.autocomplete strong {
font-weight: normal;
color: #3399FF;
}
/* }}} */