pulsar/static/select-list.css
2013-02-04 14:25:24 -08:00

45 lines
663 B
CSS

.select-list ol {
border: 1px solid #212121;
position: relative;
overflow-y: auto;
max-height: 312px;
margin: 0;
background: red;
padding: 0;
line-height: 100%;
}
.select-list ol:empty {
border: none;
}
.select-list ol li {
padding: 10px;
box-sizing: border-box;
display: block;
}
.select-list li .label {
display: inline-block;
}
.select-list li .right {
float: right;
}
.select-list .key-binding {
border-radius: 2px;
margin-left: 5px;
padding: 3px;
font-size: 11px;
}
.select-list ol li:last-child {
border-bottom: none;
}
.select-list .error {
font-weight: bold;
color: white;
text-shadow: 0 1px 0 #4E0000;
}