mirror of
https://github.com/atom/atom.git
synced 2026-02-18 18:34:21 -05:00
39 lines
635 B
CSS
39 lines
635 B
CSS
.command-palette {
|
|
width: 50%;
|
|
margin-left: -25%;
|
|
}
|
|
|
|
.command-palette ol {
|
|
max-height: 300px;
|
|
}
|
|
|
|
.command-palette ol .event-description {
|
|
float: left;
|
|
display: inline-block;
|
|
margin-right: .5em;
|
|
margin: 4px 0;
|
|
}
|
|
|
|
.command-palette li .right {
|
|
float: right;
|
|
}
|
|
|
|
.command-palette ol .event-name, .command-palette ol .key-binding {
|
|
display: inline-block;
|
|
margin: 4px 0;
|
|
margin-right: .5em;
|
|
font-size: 90%;
|
|
color: #969696;
|
|
-webkit-border-radius: 3px;
|
|
padding: 0 4px;
|
|
}
|
|
|
|
.command-palette ol .event-name {
|
|
background: rgba(0, 0, 0, .3);
|
|
color: #fff;
|
|
}
|
|
|
|
.command-palette ol .key-binding {
|
|
background: #fff;
|
|
}
|