Files
atom/static/autocomplete.css
2012-04-20 14:55:54 -06:00

27 lines
416 B
CSS

.autocomplete {
display: table;
position: absolute;
min-width: 150px;
background-color: #444;
border: 2px solid #222;
color: #eee;
-webkit-box-shadow: 0 0 5px 5px #222;
margin: 5px;
}
.autocomplete ol {
position: relative;
overflow-y: scroll;
max-height: 200px;
}
.autocomplete ol li {
padding: 0.1em 0.2em;
}
.autocomplete ol li.selected {
background-color: #a3fd97;
color: black;
}