mirror of
https://github.com/atom/atom.git
synced 2026-01-23 05:48:10 -05:00
42 lines
675 B
CSS
42 lines
675 B
CSS
.command-panel {
|
|
position: absolute;
|
|
bottom: 0;
|
|
width: 100%;
|
|
background: #515151;
|
|
padding: 3px;
|
|
}
|
|
|
|
.command-panel .preview-list {
|
|
max-height: 300px;
|
|
overflow: auto;
|
|
padding-bottom: 3px;
|
|
}
|
|
|
|
.command-panel .preview-list .path{
|
|
padding-left: 3px;
|
|
color: #00ffff;
|
|
}
|
|
|
|
.command-panel .preview-list .preview {
|
|
padding-left: 1em;
|
|
color: #f6f3e8;
|
|
}
|
|
|
|
.command-panel .preview-list .preview .match{
|
|
background-color: #8E8A8A;
|
|
padding: 1px;
|
|
}
|
|
|
|
.command-panel .prompt-and-editor {
|
|
display: -webkit-box;
|
|
}
|
|
|
|
.command-panel .prompt {
|
|
color: white;
|
|
font-weight: bold;
|
|
padding: .2em;
|
|
}
|
|
|
|
.command-panel .preview-list li.selected {
|
|
background-color: green;
|
|
} |