Scribe.js/static/lib/autocomplete.css

53 lines
814 B
CSS
Raw Normal View History

2014-11-11 21:20:33 +01:00
/* AUTOCOMPLETE */
.autocomplete{
width: 100%;
position: relative;
}
.autocomplete input{
font-size: 10px;
2014-11-11 21:20:33 +01:00
width: 100%;
padding: 8px;
background: #222;
border: 1px solid #2C2C2C;
color: #FFF;
font-family: "Open Sans";
2014-11-11 21:20:33 +01:00
}
.autocomplete ul{
position: absolute;
left: 0;
width: 100%;
border-left: 1px solid #888;
border-right: 1px solid #888;
border-bottom: 1px solid #888;
z-index: 1;
}
.autocomplete li{
text-align: left;
list-style:none;
width: 100%;
padding: 7px;
background: #333;
font-family: "Open Sans";
font-size: 10px;
color: #FFF;
2014-12-21 14:44:16 -06:00
cursor: pointer;
2014-11-11 21:20:33 +01:00
}
.autocomplete li.active{
width: 100%;
background-color: #4bf;
}
.autocomplete .highlight {
background-color: #E2E2E2;
}
.autocomplete li.active .highlight {
background: #666;
color: #fff;
}