forked from firefox-devtools/debugger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEditor.css
More file actions
173 lines (142 loc) · 3.76 KB
/
Editor.css
File metadata and controls
173 lines (142 loc) · 3.76 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at <http://mozilla.org/MPL/2.0/>. */
.editor-wrapper {
--debug-line-border: rgb(145, 188, 219);
--debug-expression-background: rgba(202, 227, 255, 0.5);
--debug-line-error-border: rgb(255, 0, 0);
--debug-expression-error-background: rgba(231, 116, 113, 0.3);
--highlight-line-duration: 1500ms;
}
.theme-dark .editor-wrapper {
--debug-expression-background: rgba(202, 227, 255, 0.3);
--debug-line-border: #7786a2;
}
.editor-wrapper .CodeMirror-linewidget {
margin-right: -7px;
overflow: hidden;
}
.editor-wrapper {
min-width: 0 !important;
}
.CodeMirror.cm-s-mozilla,
.CodeMirror-scroll,
.CodeMirror-sizer {
overflow-anchor: none;
}
/**
* There's a known codemirror flex issue with chrome that this addresses.
* BUG https://github.com/firefox-devtools/debugger/issues/63
*/
.editor-wrapper {
position: absolute;
width: calc(100% - 1px);
top: var(--editor-header-height);
bottom: var(--editor-footer-height);
left: 0px;
}
html[dir="rtl"] .editor-mount {
direction: ltr;
}
.theme-light .cm-s-mozilla .empty-line .CodeMirror-linenumber {
color: var(--grey-40);
}
.theme-dark .cm-s-mozilla .empty-line .CodeMirror-linenumber {
color: var(--grey-50);
}
.function-search {
max-height: 300px;
overflow: hidden;
}
.function-search .results {
height: auto;
}
.editor.hit-marker {
height: 15px;
}
.editor-wrapper .highlight-lines {
background: var(--theme-selection-background-hover);
}
.CodeMirror {
width: 100%;
height: 100%;
}
.editor-wrapper .editor-mount {
width: 100%;
background-color: var(--theme-body-background);
font-size: var(--theme-code-font-size);
line-height: var(--theme-code-line-height);
}
.folding-enabled .CodeMirror-linenumber {
text-align: left;
padding: 0 0 0 2px;
}
/* set the linenumber white when there is a breakpoint */
.editor-wrapper:not(.skip-pausing)
.new-breakpoint
.CodeMirror-gutter-wrapper
.CodeMirror-linenumber {
color: white;
}
/* move the breakpoint below the other gutter elements */
.new-breakpoint .CodeMirror-gutter-elt:nth-child(2) {
z-index: 0;
}
.theme-dark .editor-wrapper .CodeMirror-line .cm-comment {
color: var(--theme-comment);
}
.debug-expression {
background-color: var(--debug-expression-background);
}
.debug-expression-error {
background-color: var(--debug-expression-error-background);
}
:not(.conditional-breakpoint-panel) .new-debug-line .CodeMirror-line {
background-color: transparent !important;
outline: var(--debug-line-border) solid 1px;
}
/* Don't display the highlight color since the debug line
is already highlighted */
.new-debug-line .CodeMirror-activeline-background {
display: none;
}
:not(.conditional-breakpoint-panel) .new-debug-line-error .CodeMirror-line {
background-color: var(--debug-expression-error-background) !important;
outline: var(--debug-line-error-border) solid 1px;
}
/* Don't display the highlight color since the debug line
is already highlighted */
.new-debug-line-error .CodeMirror-activeline-background {
display: none;
}
.highlight-line .CodeMirror-line {
animation: fade-highlight-out var(--highlight-line-duration) normal forwards;
}
@keyframes fade-highlight-out {
0% {
background-color: var(--theme-highlight-gray);
}
100% {
background-color: transparent;
}
}
.theme-dark .highlight-line .CodeMirror-line {
animation: fade-highlight-out-dark 1s normal forwards;
}
@keyframes fade-highlight-out-dark {
0% {
background-color: var(--theme-comment);
}
100% {
background-color: transparent;
}
}
.CodeMirror-guttermarker-subtle {
visibility: hidden;
}
.visible {
visibility: visible;
}
.download-anchor {
display: none;
}