SimpleAutocomplete/hinter.css

47 lines
916 B
CSS
Raw Normal View History

.hintLayer {
border: 1px solid gray;
color: gray;
background-color: white;
font-size: 80%;
max-height: 300pt;
overflow-y: auto;
-ms-overflow-y: auto;
z-index: 1000;
}
.hintEmptyText {
padding: 3px;
}
.hintPrompt {
padding: 3px;
color: gray;
font-style: italic;
}
.hintItem {
color: black;
padding: 1px 3px;
vertical-align: middle;
white-space: nowrap;
}
.hintDisabledItem {
color: gray;
padding: 1px 3px;
white-space: nowrap;
}
.hintActiveItem {
color: white;
background-color: #008;
padding: 1px 3px;
white-space: nowrap;
}
2013-04-11 02:34:09 +04:00
.hintItem, .hintActiveItem, .hintItem label, .hintActiveItem label {
cursor: pointer;
}
2013-03-05 22:14:32 +04:00
.hintItem input, .hintActiveItem input, .hintDisabledItem input {
2011-11-09 21:21:10 +04:00
cursor: pointer;
vertical-align: middle;
margin-right: 3px;
}
.hintItem img, .hintActiveItem img {
vertical-align: middle;
}