summaryrefslogtreecommitdiffstats
path: root/devtools/client/shared/sourceeditor/codemirror/mozilla.css
blob: 419f29cf685a30430d7931bcada8515b0510528c (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
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
/* 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/. */


:root {
  --breakpoint-active-color: rgba(44,187,15,.2);
  --breakpoint-active-color-hover: rgba(44,187,15,.5);
}

.theme-dark:root {
  --breakpoint-active-color: rgba(0,255,175,.4);
  --breakpoint-active-color-hover: rgba(0,255,175,.7);
}

/* We don't want the focus style to be displayed on the CodeMirror scrollbars.
 * See Bug 1590707.
 */
.CodeMirror-vscrollbar, .CodeMirror-hscrollbar {
  outline: none !important;
}

.CodeMirror .errors {
  width: 16px;
}

.CodeMirror .error {
  display: inline-block;
  margin-left: 5px;
  width: 12px;
  height: 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.75;
}

.CodeMirror .hit-counts {
  width: 6px;
}

.CodeMirror .hit-count {
  display: inline-block;
  height: 12px;
  border: solid rgba(0,0,0,0.2);
  border-width: 1px 1px 1px 0;
  border-radius: 0 3px 3px 0;
  padding: 0 3px;
  font-size: 10px;
  pointer-events: none;
}

.CodeMirror-linenumber:before {
  content: " ";
  display: block;
  width: calc(100% - 3px);
  position: absolute;
  top: 1px;
  left: 0;
  height: 12px;
  z-index: -1;
  background-size: calc(100% - 2px) 12px;
  background-repeat: no-repeat;
  background-position: right center;
  padding-inline-end: 9px;
}

.breakpoint .CodeMirror-linenumber {
  color: var(--theme-body-background);
}

.debug-line .CodeMirror-linenumber {
  background-color: var(--breakpoint-active-color);
}

.theme-dark .debug-line .CodeMirror-linenumber {
  color: #c0c0c0;
}

.debug-line .CodeMirror-line {
  background-color: var(--breakpoint-active-color) !important;
}

/* Don't display the highlight color since the debug line
   is already highlighted */
.debug-line .CodeMirror-activeline-background {
  display: none;
}

.CodeMirror {
  cursor: text;
  height: 100%;
}

.CodeMirror-gutters {
  cursor: default;
}

.cm-trailingspace {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAACCAYAAAB/qH1jAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3QUXCToH00Y1UgAAACFJREFUCNdjPMDBUc/AwNDAAAFMTAwMDA0OP34wQgX/AQBYgwYEx4f9lQAAAABJRU5ErkJggg==");
  opacity: 0.75;
  background-position: left bottom;
  background-repeat: repeat-x;
}

/* Search highlight style
 * cm-searching is used in Style Editor, and cm-highlight in Debugger */
.cm-searching,
.cm-highlight {
  border-bottom: 1px solid var(--theme-contrast-border);
  /* Use the translucent yellow background, because we want the text selection
     background (CodeMirror-selected) to show through this. */
  background-color: var(--theme-contrast-background-alpha);
}

/* CodeMirror dialogs styling */

.CodeMirror-dialog {
  padding: 4px 3px;
}

.CodeMirror-dialog,
.CodeMirror-dialog input {
  font: message-box;
}

/* Fold addon */

.CodeMirror-foldmarker {
  display: inline-block;
  font-family: sans-serif;
  line-height: 10px;
  margin: 0 1px;
  padding: 0 2px;
  border-radius: 3px;
  border: solid 1px var(--theme-splitter-color);
  color: var(--theme-body-color);
  background-color: var(--theme-sidebar-background);
  cursor: pointer;
}

.CodeMirror-foldgutter {
  width: 16px; /* Same as breakpoints gutter above */
}

.CodeMirror-foldgutter-open,
.CodeMirror-foldgutter-folded {
  height: 14px;
  margin-top: 1px;
  background-image: url("chrome://devtools/skin/images/arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  -moz-context-properties: fill;
  fill: var(--theme-icon-dimmed-color);
  /* make the icons smaller than regular twistys (10->8px) */
  background-size: 8px;
  cursor: pointer;
}

.CodeMirror-foldgutter-folded {
  transform: rotate(-90deg);
}

.CodeMirror-hints {
  position: absolute;
  z-index: 10;
  overflow: hidden;
  list-style: none;
  margin: 0;
  padding: 2px;
  border-radius: 3px;
  font-size: 90%;
  max-height: 20em;
  overflow-y: auto;
}

.CodeMirror-hint {
  margin: 0;
  padding: 0 4px;
  border-radius: 2px;
  max-width: 19em;
  overflow: hidden;
  white-space: pre;
  cursor: pointer;
}

.CodeMirror-Tern-completion {
  padding-inline-start: 22px;
  position: relative;
  line-height: 18px;
}

.CodeMirror-Tern-completion:before {
  position: absolute;
  left: 2px;
  bottom: 2px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;
  height: 15px;
  width: 15px;
  line-height: 16px;
  text-align: center;
  color: #ffffff;
  box-sizing: border-box;
}

.CodeMirror-Tern-completion-unknown:before {
  content: "?";
}

.CodeMirror-Tern-completion-object:before {
  content: "O";
}

.CodeMirror-Tern-completion-fn:before {
  content: "F";
}

.CodeMirror-Tern-completion-array:before {
  content: "A";
}

.CodeMirror-Tern-completion-number:before {
  content: "N";
}

.CodeMirror-Tern-completion-string:before {
  content: "S";
}

.CodeMirror-Tern-completion-bool:before {
  content: "B";
}

.CodeMirror-Tern-completion-guess {
  color: #999;
}

.CodeMirror-Tern-tooltip {
  border-radius: 3px;
  padding: 2px 5px;
  white-space: pre-wrap;
  max-width: 40em;
  position: absolute;
  z-index: 10;
}

.CodeMirror-Tern-hint-doc {
  max-width: 25em;
}

.CodeMirror-Tern-farg-current {
  text-decoration: underline;
}

.CodeMirror-Tern-fhint-guess {
  opacity: .7;
}

/* Override the background-color: white applied to filler elements in codemirror.css */
.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  appearance: auto;
  -moz-default-appearance: scrollcorner;
}

/* Markup view and Event tooltip styles */

.CodeMirror.cm-s-markup-view pre {
  font-size: var(--theme-code-font-size);
  line-height: var(--theme-code-line-height);
  min-height: 15px;
}

/* Make our own cursor-blink animation */
@keyframes cursor-blink {
  0% {}
  50% { opacity: 0; }
  100% {}
}

.CodeMirror-focused .CodeMirror-cursor {
  /*
   * We're using the --caret-blink-time custom property for the animation duration.
   * It is set in editor.js when we setup the CodeMirror instance, and will map either
   * to the value of the ui.caretBlinkTime preference, or to CodeMirror's default for
   * cursorBlinkRate. (See Bug 1609567 for more information on why this is needed).
   */
  /*
   * The animation should only be set when the editor is focused, otherwise the
   * animation will continue even when devtools is in a background tab.
   * This happens because the cursor is hidden using visiblity: hidden rather than
   * display: none in codemirror.css. See bug 1661054 for details.
   */
  animation: cursor-blink calc(var(--caret-blink-time, 0.53s) * 2) steps(1) infinite;
}


/*
 * Always align CodeMirror lines to the left.
 * See Bug 1651443 for more information.
 */
.CodeMirror-lines {
  text-align: left;
}

/* CodeMirror matchhighlight styling */
.cm-matchhighlight {
  outline: 1px solid var(--theme-contrast-border);
  border-radius: 2px;
}

.cm-non-printable-char {
  color: var(--theme-comment);
  font-size: 0.9em;
  border-radius: 2px;
  outline: 1px solid currentColor;
  margin-inline: 2px;
  padding-inline: 2px;
}

/****************************************/
/***** CodeMirror 6 specific styles *****/
/****************************************/

.cm-editor {
  max-height: 100%;
  height: 100%;
}
.cm-editor .cm-selectionBackground {
  background: var(--theme-selection-background) !important;
}

.cm6-dt-foldgutter__toggle-button {
  height: 14px;
  width: 14px;
  margin-inline: 3px;
  /* By default, the icon is a bit too low */
  translate: 0px -4px;
  background-image: url("chrome://devtools/skin/images/arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  border: none;
  -moz-context-properties: fill;
  fill: var(--theme-icon-dimmed-color);
  /* make the icons smaller than regular twistys (10->8px) */
  background-size: 8px;
  cursor: pointer;

  &[aria-expanded=false] {
    transform: rotate(-90deg);
  }
}

.cm-editor .cm-foldPlaceholder {
  font-family: sans-serif;
  padding: 0 2px;
  border-radius: 3px;
  border: solid 1px var(--theme-splitter-color);
  color: var(--theme-body-color);
  background-color: var(--theme-sidebar-background);
  vertical-align: middle;
}