From d0cbbb5d15f9ae48c0bfb8197db96159247bc87b Mon Sep 17 00:00:00 2001 From: Polo Date: Sat, 1 Aug 2015 15:29:56 +0200 Subject: [PATCH] Make cmd-line in ex-mode look like in vim-mode 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 --- styles/ex-mode.less | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/styles/ex-mode.less b/styles/ex-mode.less index fea8230..ee0e557 100644 --- a/styles/ex-mode.less +++ b/styles/ex-mode.less @@ -10,3 +10,15 @@ 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; +}