38 lines
671 B
CSS
38 lines
671 B
CSS
div.searchable-input input
|
|
{
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
div.searchable-input div.items
|
|
{
|
|
padding-top: 0.5em;
|
|
padding-bottom: 0.5em;
|
|
border: 1px solid #aaa;
|
|
/*border-top: 0;*/
|
|
max-width: 100%;
|
|
max-height: 10em;
|
|
overflow-x: scroll;
|
|
overflow-y: scroll;
|
|
position: absolute;
|
|
background: #fff;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
div.searchable-input div.item
|
|
{
|
|
white-space: normal;
|
|
padding-left: 0.5em;
|
|
padding-right: 0.5em;
|
|
user-select: none;
|
|
}
|
|
|
|
div.searchable-input div.item:hover
|
|
{
|
|
/*background: #0af;
|
|
color: #fff;*/
|
|
background: highlight;
|
|
color: highlighttext;
|
|
cursor: pointer;
|
|
}
|