mirror of
https://github.com/atom/atom.git
synced 2026-01-23 05:48:10 -05:00
94 lines
1.7 KiB
CSS
94 lines
1.7 KiB
CSS
.command-panel {
|
|
position: relative;
|
|
padding: 0;
|
|
}
|
|
|
|
.command-panel .is-loading {
|
|
display: block;
|
|
margin: 0 auto 10px auto;
|
|
width: 100px;
|
|
background-color: #111;
|
|
background-size: auto;
|
|
background-position: 5px 5px;
|
|
padding: 5px 5px 10px 30px;
|
|
border-radius: 3px;
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
border-top: 1px solid rgba(0, 0, 0, 1);
|
|
border-left: 1px solid rgba(0, 0, 0, 1);
|
|
}
|
|
|
|
.command-panel .preview-list {
|
|
max-height: 300px;
|
|
overflow: auto;
|
|
margin: 0 0 10px 0;
|
|
position: relative;
|
|
cursor: default;
|
|
}
|
|
|
|
.command-panel .preview-count {
|
|
font-size: 11px;
|
|
text-align: right;
|
|
position: absolute;
|
|
right: 15px;
|
|
top: 24px;
|
|
z-index: 9999;
|
|
}
|
|
|
|
.command-panel .preview-list .path {
|
|
padding-left: 5px;
|
|
}
|
|
|
|
.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 .path.readme:before {
|
|
content: "\f007";
|
|
}
|
|
|
|
.command-panel .preview-list .operation {
|
|
padding-top: 2px;
|
|
padding-bottom: 2px;
|
|
}
|
|
|
|
.command-panel .preview-list .line-number {
|
|
padding-left: 3px;
|
|
margin-right: 1ex;
|
|
text-align: right;
|
|
display: inline-block;
|
|
}
|
|
|
|
.command-panel .preview-list .path-match-number {
|
|
padding-left: 8px;
|
|
}
|
|
|
|
.command-panel .preview-list .preview {
|
|
word-break: break-all;
|
|
}
|
|
|
|
.command-panel .preview-list .preview .match {
|
|
-webkit-border-radius: 2px;
|
|
padding: 1px;
|
|
}
|
|
|
|
.command-panel .prompt-and-editor .editor {
|
|
position: relative;
|
|
}
|
|
|
|
.command-panel .prompt-and-editor {
|
|
display: -webkit-box;
|
|
}
|
|
|
|
.error-messages {
|
|
padding: 5px 1em;
|
|
color: white;
|
|
}
|