pulsar/static/select-list.css
2013-02-25 15:13:48 -08:00

62 lines
973 B
CSS

.select-list ol {
border: 1px solid #212121;
position: relative;
overflow-y: auto;
max-height: 312px;
margin: 0;
padding: 0;
line-height: 100%;
-webkit-user-select: none;
cursor: default;
}
.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;
}
.select-list li.active-item:before {
font-family: 'Octicons Regular';
font-size: 14px;
width: 14px;
height: 14px;
margin-right: 5px;
-webkit-font-smoothing: antialiased;
color: #9d9d9d;
content: '\f03a';
}
.select-list li.inactive-item {
padding-left: 29px;
}