mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-11-11 16:09:57 +03:00
28 lines
484 B
CSS
28 lines
484 B
CSS
.select-list {
|
|
background-color: #484848;
|
|
border: 1px solid #444;
|
|
color: #d2d2d2;
|
|
box-shadow: 0 0 10px #000;
|
|
border-bottom-left-radius: 3px;
|
|
border-bottom-right-radius: 3px;
|
|
padding: 5px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.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 {
|
|
padding-top: 5px;
|
|
font-weight: bold;
|
|
}
|