@lingk/sync 0.2.2 → 0.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,341 @@
1
+ /* BASICS */
2
+
3
+ .CodeMirror {
4
+ /* Set height, width, borders, and global font properties here */
5
+ font-family: monospace;
6
+ height: 300px;
7
+ color: black;
8
+ direction: ltr;
9
+ }
10
+
11
+ /* PADDING */
12
+
13
+ .CodeMirror-lines {
14
+ padding: 4px 0; /* Vertical padding around content */
15
+ }
16
+ .CodeMirror pre {
17
+ padding: 0 4px; /* Horizontal padding of content */
18
+ }
19
+
20
+ .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
21
+ background-color: white; /* The little square between H and V scrollbars */
22
+ }
23
+
24
+ /* GUTTER */
25
+
26
+ .CodeMirror-gutters {
27
+ border-right: 1px solid #ddd;
28
+ background-color: #f7f7f7;
29
+ white-space: nowrap;
30
+ }
31
+ .CodeMirror-linenumbers {}
32
+ .CodeMirror-linenumber {
33
+ padding: 0 3px 0 5px;
34
+ min-width: 20px;
35
+ text-align: right;
36
+ color: #999;
37
+ white-space: nowrap;
38
+ }
39
+
40
+ .CodeMirror-guttermarker { color: black; }
41
+ .CodeMirror-guttermarker-subtle { color: #999; }
42
+
43
+ /* CURSOR */
44
+
45
+ .CodeMirror-cursor {
46
+ border-left: 1px solid black;
47
+ border-right: none;
48
+ width: 0;
49
+ }
50
+ /* Shown when moving in bi-directional text */
51
+ .CodeMirror div.CodeMirror-secondarycursor {
52
+ border-left: 1px solid silver;
53
+ }
54
+ .cm-fat-cursor .CodeMirror-cursor {
55
+ width: auto;
56
+ border: 0 !important;
57
+ background: #7e7;
58
+ }
59
+ .cm-fat-cursor div.CodeMirror-cursors {
60
+ z-index: 1;
61
+ }
62
+ .cm-fat-cursor-mark {
63
+ background-color: rgba(20, 255, 20, 0.5);
64
+ -webkit-animation: blink 1.06s steps(1) infinite;
65
+ animation: blink 1.06s steps(1) infinite;
66
+ }
67
+ .cm-animate-fat-cursor {
68
+ width: auto;
69
+ border: 0;
70
+ -webkit-animation: blink 1.06s steps(1) infinite;
71
+ animation: blink 1.06s steps(1) infinite;
72
+ background-color: #7e7;
73
+ }
74
+ @-webkit-keyframes blink {
75
+ 0% {}
76
+ 50% { background-color: transparent; }
77
+ 100% {}
78
+ }
79
+ @keyframes blink {
80
+ 0% {}
81
+ 50% { background-color: transparent; }
82
+ 100% {}
83
+ }
84
+
85
+ /* Can style cursor different in overwrite (non-insert) mode */
86
+ .CodeMirror-overwrite .CodeMirror-cursor {}
87
+
88
+ .cm-tab { display: inline-block; text-decoration: inherit; }
89
+
90
+ .CodeMirror-rulers {
91
+ position: absolute;
92
+ left: 0; right: 0; top: -50px; bottom: -20px;
93
+ overflow: hidden;
94
+ }
95
+ .CodeMirror-ruler {
96
+ border-left: 1px solid #ccc;
97
+ top: 0; bottom: 0;
98
+ position: absolute;
99
+ }
100
+
101
+ /* DEFAULT THEME */
102
+
103
+ .cm-s-default .cm-header {color: blue;}
104
+ .cm-s-default .cm-quote {color: #090;}
105
+ .cm-negative {color: #d44;}
106
+ .cm-positive {color: #292;}
107
+ .cm-header, .cm-strong {font-weight: bold;}
108
+ .cm-em {font-style: italic;}
109
+ .cm-link {text-decoration: underline;}
110
+ .cm-strikethrough {text-decoration: line-through;}
111
+
112
+ .cm-s-default .cm-keyword {color: #708;}
113
+ .cm-s-default .cm-atom {color: #219;}
114
+ .cm-s-default .cm-number {color: #164;}
115
+ .cm-s-default .cm-def {color: #00f;}
116
+ .cm-s-default .cm-variable,
117
+ .cm-s-default .cm-punctuation,
118
+ .cm-s-default .cm-property,
119
+ .cm-s-default .cm-operator {}
120
+ .cm-s-default .cm-variable-2 {color: #05a;}
121
+ .cm-s-default .cm-variable-3, .cm-s-default .cm-type {color: #085;}
122
+ .cm-s-default .cm-comment {color: #a50;}
123
+ .cm-s-default .cm-string {color: #a11;}
124
+ .cm-s-default .cm-string-2 {color: #f50;}
125
+ .cm-s-default .cm-meta {color: #555;}
126
+ .cm-s-default .cm-qualifier {color: #555;}
127
+ .cm-s-default .cm-builtin {color: #30a;}
128
+ .cm-s-default .cm-bracket {color: #997;}
129
+ .cm-s-default .cm-tag {color: #170;}
130
+ .cm-s-default .cm-attribute {color: #00c;}
131
+ .cm-s-default .cm-hr {color: #999;}
132
+ .cm-s-default .cm-link {color: #00c;}
133
+
134
+ .cm-s-default .cm-error {color: #f00;}
135
+ .cm-invalidchar {color: #f00;}
136
+
137
+ .CodeMirror-composing { border-bottom: 2px solid; }
138
+
139
+ /* Default styles for common addons */
140
+
141
+ div.CodeMirror span.CodeMirror-matchingbracket {color: #0f0;}
142
+ div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #f22;}
143
+ .CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); }
144
+ .CodeMirror-activeline-background {background: #e8f2ff;}
145
+
146
+ /* STOP */
147
+
148
+ /* The rest of this file contains styles related to the mechanics of
149
+ the editor. You probably shouldn't touch them. */
150
+
151
+ .CodeMirror {
152
+ position: relative;
153
+ overflow: hidden;
154
+ background: white;
155
+ }
156
+
157
+ .CodeMirror-scroll {
158
+ overflow: scroll !important; /* Things will break if this is overridden */
159
+ /* 30px is the magic margin used to hide the element's real scrollbars */
160
+ /* See overflow: hidden in .CodeMirror */
161
+ margin-bottom: -30px; margin-right: -30px;
162
+ padding-bottom: 30px;
163
+ height: 100%;
164
+ outline: none; /* Prevent dragging from highlighting the element */
165
+ position: relative;
166
+ }
167
+ .CodeMirror-sizer {
168
+ position: relative;
169
+ border-right: 30px solid transparent;
170
+ }
171
+
172
+ /* The fake, visible scrollbars. Used to force redraw during scrolling
173
+ before actual scrolling happens, thus preventing shaking and
174
+ flickering artifacts. */
175
+ .CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
176
+ position: absolute;
177
+ z-index: 6;
178
+ display: none;
179
+ }
180
+ .CodeMirror-vscrollbar {
181
+ right: 0; top: 0;
182
+ overflow-x: hidden;
183
+ overflow-y: scroll;
184
+ }
185
+ .CodeMirror-hscrollbar {
186
+ bottom: 0; left: 0;
187
+ overflow-y: hidden;
188
+ overflow-x: scroll;
189
+ }
190
+ .CodeMirror-scrollbar-filler {
191
+ right: 0; bottom: 0;
192
+ }
193
+ .CodeMirror-gutter-filler {
194
+ left: 0; bottom: 0;
195
+ }
196
+
197
+ .CodeMirror-gutters {
198
+ position: absolute; left: 0; top: 0;
199
+ min-height: 100%;
200
+ z-index: 3;
201
+ }
202
+ .CodeMirror-gutter {
203
+ white-space: normal;
204
+ height: 100%;
205
+ display: inline-block;
206
+ vertical-align: top;
207
+ margin-bottom: -30px;
208
+ }
209
+ .CodeMirror-gutter-wrapper {
210
+ position: absolute;
211
+ z-index: 4;
212
+ background: none !important;
213
+ border: none !important;
214
+ }
215
+ .CodeMirror-gutter-background {
216
+ position: absolute;
217
+ top: 0; bottom: 0;
218
+ z-index: 4;
219
+ }
220
+ .CodeMirror-gutter-elt {
221
+ position: absolute;
222
+ cursor: default;
223
+ z-index: 4;
224
+ }
225
+ .CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent }
226
+ .CodeMirror-gutter-wrapper ::selection { background-color: transparent }
227
+ .CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent }
228
+
229
+ .CodeMirror-lines {
230
+ cursor: text;
231
+ min-height: 1px; /* prevents collapsing before first draw */
232
+ }
233
+ .CodeMirror pre {
234
+ /* Reset some styles that the rest of the page might have set */ border-radius: 0;
235
+ border-width: 0;
236
+ background: transparent;
237
+ font-family: inherit;
238
+ font-size: inherit;
239
+ margin: 0;
240
+ white-space: pre;
241
+ word-wrap: normal;
242
+ line-height: inherit;
243
+ color: inherit;
244
+ z-index: 2;
245
+ position: relative;
246
+ overflow: visible;
247
+ -webkit-tap-highlight-color: transparent;
248
+ -webkit-font-variant-ligatures: contextual;
249
+ font-variant-ligatures: contextual;
250
+ }
251
+ .CodeMirror-wrap pre {
252
+ word-wrap: break-word;
253
+ white-space: pre-wrap;
254
+ word-break: normal;
255
+ }
256
+
257
+ .CodeMirror-linebackground {
258
+ position: absolute;
259
+ left: 0; right: 0; top: 0; bottom: 0;
260
+ z-index: 0;
261
+ }
262
+
263
+ .CodeMirror-linewidget {
264
+ position: relative;
265
+ z-index: 2;
266
+ overflow: auto;
267
+ }
268
+
269
+ .CodeMirror-widget {}
270
+
271
+ .CodeMirror-rtl pre { direction: rtl; }
272
+
273
+ .CodeMirror-code {
274
+ outline: none;
275
+ }
276
+
277
+ /* Force content-box sizing for the elements where we expect it */
278
+ .CodeMirror-scroll,
279
+ .CodeMirror-sizer,
280
+ .CodeMirror-gutter,
281
+ .CodeMirror-gutters,
282
+ .CodeMirror-linenumber {
283
+ box-sizing: content-box;
284
+ }
285
+
286
+ .CodeMirror-measure {
287
+ position: absolute;
288
+ width: 100%;
289
+ height: 0;
290
+ overflow: hidden;
291
+ visibility: hidden;
292
+ }
293
+
294
+ .CodeMirror-cursor {
295
+ position: absolute;
296
+ pointer-events: none;
297
+ }
298
+ .CodeMirror-measure pre { position: static; }
299
+
300
+ div.CodeMirror-cursors {
301
+ visibility: hidden;
302
+ position: relative;
303
+ z-index: 3;
304
+ }
305
+ div.CodeMirror-dragcursors {
306
+ visibility: visible;
307
+ }
308
+
309
+ .CodeMirror-focused div.CodeMirror-cursors {
310
+ visibility: visible;
311
+ }
312
+
313
+ .CodeMirror-selected { background: #d9d9d9; }
314
+ .CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }
315
+ .CodeMirror-crosshair { cursor: crosshair; }
316
+ .CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }
317
+ .CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; }
318
+ .CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }
319
+
320
+ .cm-searching {
321
+ background-color: #ffa;
322
+ background-color: rgba(255, 255, 0, .4);
323
+ }
324
+
325
+ /* Used to force a border model for a node */
326
+ .cm-force-border { padding-right: .1px; }
327
+
328
+ @media print {
329
+ /* Hide the cursor when printing */
330
+ .CodeMirror div.CodeMirror-cursors {
331
+ visibility: hidden;
332
+ }
333
+ }
334
+
335
+ /* See issue #2901 */
336
+ .cm-tab-wrap-hack:after { content: ''; }
337
+
338
+ /* Help users use markselection to safely style text background */
339
+ span.CodeMirror-selectedtext { background: none; }
340
+
341
+ /*# sourceMappingURL=credentialSections.css.map*/
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"names":[],"mappings":"","file":"css/credentialSections.css","sourceRoot":""}
@@ -1,3 +1,342 @@
1
+ /* BASICS */
2
+
3
+ .CodeMirror {
4
+ /* Set height, width, borders, and global font properties here */
5
+ font-family: monospace;
6
+ height: 300px;
7
+ color: black;
8
+ direction: ltr;
9
+ }
10
+
11
+ /* PADDING */
12
+
13
+ .CodeMirror-lines {
14
+ padding: 4px 0; /* Vertical padding around content */
15
+ }
16
+ .CodeMirror pre {
17
+ padding: 0 4px; /* Horizontal padding of content */
18
+ }
19
+
20
+ .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
21
+ background-color: white; /* The little square between H and V scrollbars */
22
+ }
23
+
24
+ /* GUTTER */
25
+
26
+ .CodeMirror-gutters {
27
+ border-right: 1px solid #ddd;
28
+ background-color: #f7f7f7;
29
+ white-space: nowrap;
30
+ }
31
+ .CodeMirror-linenumbers {}
32
+ .CodeMirror-linenumber {
33
+ padding: 0 3px 0 5px;
34
+ min-width: 20px;
35
+ text-align: right;
36
+ color: #999;
37
+ white-space: nowrap;
38
+ }
39
+
40
+ .CodeMirror-guttermarker { color: black; }
41
+ .CodeMirror-guttermarker-subtle { color: #999; }
42
+
43
+ /* CURSOR */
44
+
45
+ .CodeMirror-cursor {
46
+ border-left: 1px solid black;
47
+ border-right: none;
48
+ width: 0;
49
+ }
50
+ /* Shown when moving in bi-directional text */
51
+ .CodeMirror div.CodeMirror-secondarycursor {
52
+ border-left: 1px solid silver;
53
+ }
54
+ .cm-fat-cursor .CodeMirror-cursor {
55
+ width: auto;
56
+ border: 0 !important;
57
+ background: #7e7;
58
+ }
59
+ .cm-fat-cursor div.CodeMirror-cursors {
60
+ z-index: 1;
61
+ }
62
+ .cm-fat-cursor-mark {
63
+ background-color: rgba(20, 255, 20, 0.5);
64
+ -webkit-animation: blink 1.06s steps(1) infinite;
65
+ animation: blink 1.06s steps(1) infinite;
66
+ }
67
+ .cm-animate-fat-cursor {
68
+ width: auto;
69
+ border: 0;
70
+ -webkit-animation: blink 1.06s steps(1) infinite;
71
+ animation: blink 1.06s steps(1) infinite;
72
+ background-color: #7e7;
73
+ }
74
+ @-webkit-keyframes blink {
75
+ 0% {}
76
+ 50% { background-color: transparent; }
77
+ 100% {}
78
+ }
79
+ @keyframes blink {
80
+ 0% {}
81
+ 50% { background-color: transparent; }
82
+ 100% {}
83
+ }
84
+
85
+ /* Can style cursor different in overwrite (non-insert) mode */
86
+ .CodeMirror-overwrite .CodeMirror-cursor {}
87
+
88
+ .cm-tab { display: inline-block; text-decoration: inherit; }
89
+
90
+ .CodeMirror-rulers {
91
+ position: absolute;
92
+ left: 0; right: 0; top: -50px; bottom: -20px;
93
+ overflow: hidden;
94
+ }
95
+ .CodeMirror-ruler {
96
+ border-left: 1px solid #ccc;
97
+ top: 0; bottom: 0;
98
+ position: absolute;
99
+ }
100
+
101
+ /* DEFAULT THEME */
102
+
103
+ .cm-s-default .cm-header {color: blue;}
104
+ .cm-s-default .cm-quote {color: #090;}
105
+ .cm-negative {color: #d44;}
106
+ .cm-positive {color: #292;}
107
+ .cm-header, .cm-strong {font-weight: bold;}
108
+ .cm-em {font-style: italic;}
109
+ .cm-link {text-decoration: underline;}
110
+ .cm-strikethrough {text-decoration: line-through;}
111
+
112
+ .cm-s-default .cm-keyword {color: #708;}
113
+ .cm-s-default .cm-atom {color: #219;}
114
+ .cm-s-default .cm-number {color: #164;}
115
+ .cm-s-default .cm-def {color: #00f;}
116
+ .cm-s-default .cm-variable,
117
+ .cm-s-default .cm-punctuation,
118
+ .cm-s-default .cm-property,
119
+ .cm-s-default .cm-operator {}
120
+ .cm-s-default .cm-variable-2 {color: #05a;}
121
+ .cm-s-default .cm-variable-3, .cm-s-default .cm-type {color: #085;}
122
+ .cm-s-default .cm-comment {color: #a50;}
123
+ .cm-s-default .cm-string {color: #a11;}
124
+ .cm-s-default .cm-string-2 {color: #f50;}
125
+ .cm-s-default .cm-meta {color: #555;}
126
+ .cm-s-default .cm-qualifier {color: #555;}
127
+ .cm-s-default .cm-builtin {color: #30a;}
128
+ .cm-s-default .cm-bracket {color: #997;}
129
+ .cm-s-default .cm-tag {color: #170;}
130
+ .cm-s-default .cm-attribute {color: #00c;}
131
+ .cm-s-default .cm-hr {color: #999;}
132
+ .cm-s-default .cm-link {color: #00c;}
133
+
134
+ .cm-s-default .cm-error {color: #f00;}
135
+ .cm-invalidchar {color: #f00;}
136
+
137
+ .CodeMirror-composing { border-bottom: 2px solid; }
138
+
139
+ /* Default styles for common addons */
140
+
141
+ div.CodeMirror span.CodeMirror-matchingbracket {color: #0f0;}
142
+ div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #f22;}
143
+ .CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); }
144
+ .CodeMirror-activeline-background {background: #e8f2ff;}
145
+
146
+ /* STOP */
147
+
148
+ /* The rest of this file contains styles related to the mechanics of
149
+ the editor. You probably shouldn't touch them. */
150
+
151
+ .CodeMirror {
152
+ position: relative;
153
+ overflow: hidden;
154
+ background: white;
155
+ }
156
+
157
+ .CodeMirror-scroll {
158
+ overflow: scroll !important; /* Things will break if this is overridden */
159
+ /* 30px is the magic margin used to hide the element's real scrollbars */
160
+ /* See overflow: hidden in .CodeMirror */
161
+ margin-bottom: -30px; margin-right: -30px;
162
+ padding-bottom: 30px;
163
+ height: 100%;
164
+ outline: none; /* Prevent dragging from highlighting the element */
165
+ position: relative;
166
+ }
167
+ .CodeMirror-sizer {
168
+ position: relative;
169
+ border-right: 30px solid transparent;
170
+ }
171
+
172
+ /* The fake, visible scrollbars. Used to force redraw during scrolling
173
+ before actual scrolling happens, thus preventing shaking and
174
+ flickering artifacts. */
175
+ .CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
176
+ position: absolute;
177
+ z-index: 6;
178
+ display: none;
179
+ }
180
+ .CodeMirror-vscrollbar {
181
+ right: 0; top: 0;
182
+ overflow-x: hidden;
183
+ overflow-y: scroll;
184
+ }
185
+ .CodeMirror-hscrollbar {
186
+ bottom: 0; left: 0;
187
+ overflow-y: hidden;
188
+ overflow-x: scroll;
189
+ }
190
+ .CodeMirror-scrollbar-filler {
191
+ right: 0; bottom: 0;
192
+ }
193
+ .CodeMirror-gutter-filler {
194
+ left: 0; bottom: 0;
195
+ }
196
+
197
+ .CodeMirror-gutters {
198
+ position: absolute; left: 0; top: 0;
199
+ min-height: 100%;
200
+ z-index: 3;
201
+ }
202
+ .CodeMirror-gutter {
203
+ white-space: normal;
204
+ height: 100%;
205
+ display: inline-block;
206
+ vertical-align: top;
207
+ margin-bottom: -30px;
208
+ }
209
+ .CodeMirror-gutter-wrapper {
210
+ position: absolute;
211
+ z-index: 4;
212
+ background: none !important;
213
+ border: none !important;
214
+ }
215
+ .CodeMirror-gutter-background {
216
+ position: absolute;
217
+ top: 0; bottom: 0;
218
+ z-index: 4;
219
+ }
220
+ .CodeMirror-gutter-elt {
221
+ position: absolute;
222
+ cursor: default;
223
+ z-index: 4;
224
+ }
225
+ .CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent }
226
+ .CodeMirror-gutter-wrapper ::selection { background-color: transparent }
227
+ .CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent }
228
+
229
+ .CodeMirror-lines {
230
+ cursor: text;
231
+ min-height: 1px; /* prevents collapsing before first draw */
232
+ }
233
+ .CodeMirror pre {
234
+ /* Reset some styles that the rest of the page might have set */ border-radius: 0;
235
+ border-width: 0;
236
+ background: transparent;
237
+ font-family: inherit;
238
+ font-size: inherit;
239
+ margin: 0;
240
+ white-space: pre;
241
+ word-wrap: normal;
242
+ line-height: inherit;
243
+ color: inherit;
244
+ z-index: 2;
245
+ position: relative;
246
+ overflow: visible;
247
+ -webkit-tap-highlight-color: transparent;
248
+ -webkit-font-variant-ligatures: contextual;
249
+ font-variant-ligatures: contextual;
250
+ }
251
+ .CodeMirror-wrap pre {
252
+ word-wrap: break-word;
253
+ white-space: pre-wrap;
254
+ word-break: normal;
255
+ }
256
+
257
+ .CodeMirror-linebackground {
258
+ position: absolute;
259
+ left: 0; right: 0; top: 0; bottom: 0;
260
+ z-index: 0;
261
+ }
262
+
263
+ .CodeMirror-linewidget {
264
+ position: relative;
265
+ z-index: 2;
266
+ overflow: auto;
267
+ }
268
+
269
+ .CodeMirror-widget {}
270
+
271
+ .CodeMirror-rtl pre { direction: rtl; }
272
+
273
+ .CodeMirror-code {
274
+ outline: none;
275
+ }
276
+
277
+ /* Force content-box sizing for the elements where we expect it */
278
+ .CodeMirror-scroll,
279
+ .CodeMirror-sizer,
280
+ .CodeMirror-gutter,
281
+ .CodeMirror-gutters,
282
+ .CodeMirror-linenumber {
283
+ box-sizing: content-box;
284
+ }
285
+
286
+ .CodeMirror-measure {
287
+ position: absolute;
288
+ width: 100%;
289
+ height: 0;
290
+ overflow: hidden;
291
+ visibility: hidden;
292
+ }
293
+
294
+ .CodeMirror-cursor {
295
+ position: absolute;
296
+ pointer-events: none;
297
+ }
298
+ .CodeMirror-measure pre { position: static; }
299
+
300
+ div.CodeMirror-cursors {
301
+ visibility: hidden;
302
+ position: relative;
303
+ z-index: 3;
304
+ }
305
+ div.CodeMirror-dragcursors {
306
+ visibility: visible;
307
+ }
308
+
309
+ .CodeMirror-focused div.CodeMirror-cursors {
310
+ visibility: visible;
311
+ }
312
+
313
+ .CodeMirror-selected { background: #d9d9d9; }
314
+ .CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }
315
+ .CodeMirror-crosshair { cursor: crosshair; }
316
+ .CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }
317
+ .CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; }
318
+ .CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }
319
+
320
+ .cm-searching {
321
+ background-color: #ffa;
322
+ background-color: rgba(255, 255, 0, .4);
323
+ }
324
+
325
+ /* Used to force a border model for a node */
326
+ .cm-force-border { padding-right: .1px; }
327
+
328
+ @media print {
329
+ /* Hide the cursor when printing */
330
+ .CodeMirror div.CodeMirror-cursors {
331
+ visibility: hidden;
332
+ }
333
+ }
334
+
335
+ /* See issue #2901 */
336
+ .cm-tab-wrap-hack:after { content: ''; }
337
+
338
+ /* Help users use markselection to safely style text background */
339
+ span.CodeMirror-selectedtext { background: none; }
1
340
  * {
2
341
  box-sizing: border-box;
3
342
  }
@@ -981,6 +1320,10 @@ aside{
981
1320
  position: absolute;
982
1321
  right:15px;
983
1322
  top:10px;
1323
+ fill: #555;
1324
+ }
1325
+ .env-inspect-button:hover svg{
1326
+ fill: #111;
984
1327
  }
985
1328
 
986
1329
  .dropzone{