additional_plugins/serendipity_event_freetag/jquery.autocomplete.css

39 lines
733 B
CSS
Raw Normal View History

2014-03-14 15:18:56 +01:00
/**
* @fileOverview CSS for jquery-autocomplete, the jQuery Autocompleter
* @author <a href="mailto:dylan@dyve.net">Dylan Verheul</a>
* @license MIT | GPL | Apache 2.0, see LICENSE.txt
* @see https://github.com/dyve/jquery-autocomplete
*/
.acResults {
2011-12-13 12:29:05 +01:00
padding: 0px;
2014-03-14 15:18:56 +01:00
border: 1px solid WindowFrame;
background-color: Window;
2011-12-13 12:29:05 +01:00
overflow: hidden;
}
2014-03-14 15:18:56 +01:00
.acResults ul {
margin: 0px;
padding: 0px;
2011-12-13 12:29:05 +01:00
list-style-position: outside;
list-style: none;
}
2014-03-14 15:18:56 +01:00
.acResults ul li {
2011-12-13 12:29:05 +01:00
margin: 0px;
padding: 2px 5px;
2014-03-14 15:18:56 +01:00
cursor: pointer;
2011-12-13 12:29:05 +01:00
display: block;
font: menu;
font-size: 12px;
overflow: hidden;
}
2014-03-14 15:18:56 +01:00
.acLoading {
background : url('indicator.gif') right center no-repeat;
2011-12-13 12:29:05 +01:00
}
2014-03-14 15:18:56 +01:00
.acSelect {
background-color: Highlight;
color: HighlightText;
2011-12-13 12:29:05 +01:00
}