mirror of
https://github.com/Codiad/Codiad.git
synced 2026-03-15 05:26:48 +01:00
25 lines
450 B
CSS
Executable File
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;
|
|
}
|