mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-11-10 18:24:09 +03:00
26 lines
414 B
CSS
26 lines
414 B
CSS
.autocomplete {
|
|
display: table;
|
|
position: absolute;
|
|
min-width: 150px;
|
|
background-color: #444;
|
|
border: 2px solid #222;
|
|
color: #eee;
|
|
-webkit-box-shadow: 0 0 3px 3px rgba(0, 0, 0, .5);
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|