Changed the style of .command-mode-input so that it looks like .normal-mode-input from vim-mode. This makes ex-mode more consistent with vim-mode
24 lines
555 B
Text
24 lines
555 B
Text
// The ui-variables file is provided by base themes provided by Atom.
|
|
//
|
|
// See https://github.com/atom/atom-dark-ui/blob/master/styles/ui-variables.less
|
|
// for a full listing of what's available.
|
|
@import "ui-variables";
|
|
|
|
.ex-mode {
|
|
}
|
|
|
|
div[is=ex-command-mode-input] atom-text-editor[mini]::before {
|
|
content: ":";
|
|
}
|
|
|
|
.command-mode-input atom-text-editor[mini] {
|
|
background-color: inherit;
|
|
border: none;
|
|
width: 100%;
|
|
font-weight: normal;
|
|
color: @text-color;
|
|
line-height: 1.28;
|
|
cursor: default;
|
|
white-space: nowrap;
|
|
padding-left: 10px;
|
|
}
|