mirror of
https://github.com/atom/atom.git
synced 2026-02-05 12:15:07 -05:00
99 lines
1.8 KiB
CSS
99 lines
1.8 KiB
CSS
.command-panel {
|
|
background-color: #f4f4f4;
|
|
border-top: 1px solid #979797;
|
|
color: #ededed;
|
|
padding: 10px;
|
|
}
|
|
|
|
.command-panel .preview-list {
|
|
max-height: 300px;
|
|
overflow: auto;
|
|
margin-bottom: 10px;
|
|
position: relative;
|
|
background-color: #e7e7e7;
|
|
color: #222;
|
|
cursor: default;
|
|
border: 1px solid #989898;
|
|
}
|
|
|
|
.command-panel .preview-count {
|
|
font-size: 11px;
|
|
color: #333;
|
|
text-align: right;
|
|
padding-bottom: 1px;
|
|
}
|
|
|
|
.command-panel .preview-list li.selected, .command-panel .preview-list li.operation:hover {
|
|
background-color: rgba(255, 255, 255, .6);
|
|
}
|
|
|
|
.command-panel .preview-list .path {
|
|
padding-left: 5px;
|
|
color: #3D5075;
|
|
}
|
|
|
|
.command-panel .preview-list .path:before {
|
|
font-family: 'Octicons Regular';
|
|
font-size: 16px;
|
|
width: 16px;
|
|
height: 16px;
|
|
margin-right: 5px;
|
|
-webkit-font-smoothing: antialiased;
|
|
content: "\f011";
|
|
position: relative;
|
|
top: 1px;
|
|
}
|
|
|
|
.command-panel .preview-list .operation {
|
|
padding-top: 2px;
|
|
padding-bottom: 2px;
|
|
}
|
|
|
|
.command-panel .preview-list .line-number {
|
|
padding-left: 3px;
|
|
color: #3D5075;
|
|
margin-right: 1ex;
|
|
text-align: right;
|
|
display: inline-block;
|
|
}
|
|
|
|
.command-panel .preview-list .path-match-number {
|
|
padding-left: 8px;
|
|
color: #3D5075;
|
|
}
|
|
|
|
.command-panel .preview-list .preview {
|
|
word-break: break-all;
|
|
}
|
|
|
|
.command-panel .preview-list .preview .match {
|
|
background-color: #c8d4d7;
|
|
-webkit-border-radius: 2px;
|
|
padding: 1px;
|
|
}
|
|
|
|
.command-panel .prompt-and-editor {
|
|
display: -webkit-box;
|
|
}
|
|
|
|
.command-panel .prompt-and-editor .prompt:before {
|
|
color: #969696;
|
|
content: '\f078';
|
|
font-family: 'Octicons Regular';
|
|
position: relative;
|
|
top: -4px;
|
|
left: -5px;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
|
|
.command-panel .prompt-and-editor .editor {
|
|
position: relative;
|
|
left: -4px;
|
|
margin-right: -4px;
|
|
}
|
|
|
|
.error-messages {
|
|
padding: 5px 1em;
|
|
color: white;
|
|
}
|