Files
Codiad/components/autocomplete/screen.css
2012-12-17 16:26:04 +01:00

25 lines
450 B
CSS
Executable File

/* Autocomplete */
#autocomplete {
display: none;
position: absolute;
/*width: 150px;*/
max-height: 200px;
background-color: #2E2E2E;
border: 3px solid #666666;
padding: 3px;
z-index: 1;
overflow-x: hidden;
overflow-y: auto;
}
.matched {
/* Hey this is just for testing ;-) */
color: green;
}
.active-suggestion {
/* Hey this is just for testing ;-) */
color: red;
}