Files
atom/static/autocomplete.css
2012-04-17 17:37:19 -07:00

21 lines
357 B
CSS

#autocomplete {
position: absolute;
width: 200px;
height: 300px;
overflow: scroll;
overflow-x: hidden;
background-color: #444;
border: 2px solid #222;
color: #eee;
-webkit-box-shadow: 0 0 5px 5px #222;
margin: 5px;
}
#autocomplete ol {
overflow: hidden;
}
#autocomplete ol li.selected {
background-color: #a3fd97;
color: black;
}