mirror of
https://github.com/atom/atom.git
synced 2026-04-06 03:02:13 -04:00
36 lines
563 B
CSS
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;
|
|
} |