-
Notifications
You must be signed in to change notification settings - Fork 656
/
Copy pathcodemirror.css
47 lines (47 loc) · 1.45 KB
/
codemirror.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
36
37
38
39
40
41
42
43
44
45
46
47
@-moz-document regexp("^https?://((education|gist|graphql|guides|raw|resources|status|support|vscode-auth)\\.)?github\\.com((?!(/(sponsors|readme)$)).)*$"), domain("githubusercontent.com"), domain("www.githubstatus.com") {
.CodeMirror {
background-color: var(--ghd-code-background) !important;
color: var(--ghd-code-color) !important;
}
.CodeMirror-selected {
background: rgba(255, 255, 255, .12) !important;
}
.CodeMirror ::selection {
background: rgba(255, 255, 255, .12) !important;
}
.CodeMirror ::-moz-selection {
background: rgba(255, 255, 255, .12) !important;
}
.CodeMirror-lines {
background: none !important;
}
/* remove margin above codemirror */
.file-header.mb-2 {
margin-bottom: 0 !important;
}
.CodeMirror-linebackground.conflict-background,
.conflict-background + .CodeMirror-gutter-wrapper .CodeMirror-linenumber {
background-color: #380000 !important;
border-color: #600 !important;
}
.CodeMirror-scrollbar-filler {
background: #1d1d1d !important;
}
/* Styles auto-complete popups in the actions workflow editor */
.CodeMirror-hints {
background: #181818;
border-color: #404040;
box-shadow: 0 1px 5px #000;
}
.CodeMirror-hint {
color: #d2d2d2;
}
.CodeMirror-hint-active {
color: #f0f0f0;
background-color: /*[[base-color]]*/;
}
.CodeMirror-hint-active .CodeMirror-hint-description {
color: #f0f0f0 !important;
}
/*[[syntax-codemirror]]*/
}