blob: 2a714b00c778b11ecfc4508a143b9f62b15160c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
// 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: ":";
opacity: 0.5;
}
div[is=vim-normal-mode-input] atom-text-editor[mini]::before {
content: "/";
opacity: 0.5;
}
.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;
}
|