mirror of
https://github.com/atom/atom.git
synced 2026-01-24 14:28:14 -05:00
22 lines
343 B
CSS
22 lines
343 B
CSS
#autocomplete {
|
|
position: absolute;
|
|
width: 150px;
|
|
overflow: hidden;
|
|
background-color: #444;
|
|
border: 2px solid #222;
|
|
color: #eee;
|
|
-webkit-box-shadow: 0 0 5px 5px #222;
|
|
margin: 5px;
|
|
}
|
|
|
|
#autocomplete ol {
|
|
overflow-y: scroll;
|
|
max-height: 200px;
|
|
}
|
|
|
|
#autocomplete ol li.selected {
|
|
background-color: #a3fd97;
|
|
color: black;
|
|
}
|
|
|