16 lines
337 B
CSS
16 lines
337 B
CSS
div.suggestions {
|
|
-moz-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
border: 1px solid #cccccc;
|
|
text-align: left;
|
|
background-color: #ffffff;
|
|
position: absolute;
|
|
}
|
|
div.suggestions div {
|
|
cursor: default;
|
|
padding: 0px 3px;
|
|
}
|
|
div.suggestions div.current {
|
|
background-color: #3366cc;
|
|
color: white;
|
|
}
|