additional_plugins/serendipity_event_freetag/jquery.autocomplete.css

47 lines
838 B
CSS
Raw Permalink 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
*/
.ac_results,
2014-03-14 15:18:56 +01:00
.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;
}
.ac_results ul,
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;
}
.ac_results li,
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;
}
.ac_loading,
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
}
.ac_odd {
background-color: #eee;
}
2011-12-13 12:29:05 +01:00
.ac_over,
2014-03-14 15:18:56 +01:00
.acSelect {
background-color: Highlight;
color: HighlightText;
2011-12-13 12:29:05 +01:00
}