-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain.css
35 lines (30 loc) · 782 Bytes
/
main.css
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
/* These rules pertain to the vim dialog that pops up to enter commands. */
.CodeMirror-dialog-bottom {
position:relative;
top:-30px;
padding-left:50px;
z-index:4;
background-color:black;
}
.CodeMirror-dialog-bottom > span:first-child {
font-size:1.5em;
}
.CodeMirror-dialog-bottom > input {
display:inline-block;
width:70%;
background-color:black !important;
color:white;
}
.CodeMirror-dialog-bottom > input:focus {
border:none;
box-shadow:none;
}
/* CodeMirror gutters have a z-index of 3. */
.bottom-panel {
z-index:4;
}
/* Fixes https://github.com/megalord/brackets-vim/issues/2 */
.CodeMirror.cm-keymap-fat-cursor div.CodeMirror-cursor {
z-index: 100 !important;
background: rgba(67, 216, 145, 0.5) !important;
}