File: editor.css

package info (click to toggle)
fava 1.30.2%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 7,856 kB
  • sloc: javascript: 45,789; python: 11,087; makefile: 112; sh: 25
file content (43 lines) | stat: -rw-r--r-- 895 bytes parent folder | download
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
/* Editor */

.cm-editor .cm-gutters {
  background: var(--sidebar-background);
  border-right: 1px solid var(--sidebar-border);
}

.cm-editor .cm-scroller {
  font-family: var(--font-family-editor);
}

.cm-editor .cm-placeholder {
  color: var(--placeholder-color);
}

.cm-editor .cm-tooltip {
  background-color: var(--sidebar-border);
}

/* stylelint-disable selector-class-pattern */
.cm-editor .cm-activeLine {
  background-color: var(--editor-activeline);
}

.cm-editor .cm-selectionBackground {
  background-color: var(--editor-activeline);
}

.cm-editor.cm-focused
  > .cm-scroller
  > .cm-selectionLayer
  .cm-selectionBackground {
  background-color: var(--editor-activeline);
}

.cm-editor .cm-selectionMatch {
  background-color: var(--editor-selectionmatch);
}

.cm-editor .cm-cursor {
  border-left-color: var(--text-color-lighter);
}
/* stylelint-enable selector-class-pattern */