blob: a4589375f2a03a2dfd8ac04a87659ff4f340145c (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
@import "syntax-variables";
@import "ui-variables";
.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;
}
.block-cursor(@visibility: visible) {
border: 0;
background-color: @syntax-cursor-color;
visibility: @visibility;
opacity: 0.5;
}
atom-text-editor.vim-mode.command-mode,
atom-text-editor.vim-mode.operator-pending-mode,
atom-text-editor.vim-mode.visual-mode,
{
&::shadow, // shadow-DOM enabled
& // shadow-DOM disabled
{
.cursor, .cursor.blink-off {
.block-cursor(hidden);
}
}
}
atom-text-editor.vim-mode.command-mode.is-focused,
atom-text-editor.vim-mode.operator-pending-mode.is-focused,
atom-text-editor.vim-mode.visual-mode.is-focused
{
&::shadow, // shadow-DOM enabled
& // shadow-DOM disabled
{
.cursor, .cursor.blink-off {
.block-cursor;
}
}
}
atom-text-editor.vim-mode.visual-mode
{
&::shadow, // shadow-DOM enabled
& // shadow-DOM disabled
{
.cursor.hidden-cursor {
display: block;
}
}
}
|