Files
atom/themes/atom-dark-ui/select-list.css
2013-02-02 14:01:52 -08:00

36 lines
563 B
CSS

.select-list ol {
border: 1px solid #212121;
}
.select-list ol:empty {
margin-bottom: 0;
border: none;
}
.select-list ol li {
background-color: #292929;
border-bottom: 1px solid #1e1e1e;
padding: 5px;
}
.select-list ol li:last-child {
border-bottom: none;
}
.select-list .editor {
margin-bottom: 5px;
}
.select-list li:hover {
background-color: #555;
}
.select-list ol .selected {
background-image: -webkit-linear-gradient(#7e7e7e, #737373);
}
.select-list .error {
font-weight: bold;
color: white;
text-shadow: 0 1px 0 #4E0000;
}