@cg-devcenter/aim 0.1.898 → 0.1.901
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.
- package/package.json +1 -1
- package/src/components/AimTable/index.vue +2 -4
- package/src/components/cells/CellDatePicker.vue +1 -1
- package/dist/aim.common.js +0 -12225
- package/dist/aim.css +0 -1515
- package/dist/aim.umd.js +0 -12236
- package/dist/aim.umd.min.js +0 -12236
- package/dist/demo.html +0 -11
package/dist/aim.css
DELETED
|
@@ -1,1515 +0,0 @@
|
|
|
1
|
-
/*!****************************************************************************************************************************************************************************************!*\
|
|
2
|
-
!*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-14.use[1]!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-14.use[2]!./node_modules/@cg-devcenter/jsb/toast.css ***!
|
|
3
|
-
\****************************************************************************************************************************************************************************************/
|
|
4
|
-
div[class^="toast-wrapper"] {
|
|
5
|
-
position: absolute;
|
|
6
|
-
height: auto;
|
|
7
|
-
}
|
|
8
|
-
.toast-container {
|
|
9
|
-
font-size: 1rem;
|
|
10
|
-
text-align: center;
|
|
11
|
-
width: 300px;
|
|
12
|
-
z-index: 2147483647;
|
|
13
|
-
box-sizing: border-box;
|
|
14
|
-
cursor: pointer;
|
|
15
|
-
color: #fff;
|
|
16
|
-
padding: 10px;
|
|
17
|
-
margin: 10px;
|
|
18
|
-
-o-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
|
|
19
|
-
-ms-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
|
|
20
|
-
box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
|
|
21
|
-
}
|
|
22
|
-
@keyframes fadeOut {
|
|
23
|
-
0% {opacity: 1;}
|
|
24
|
-
100% {opacity: 0;}
|
|
25
|
-
}
|
|
26
|
-
@keyframes fadeInRight {
|
|
27
|
-
0% {
|
|
28
|
-
opacity: 0;
|
|
29
|
-
transform: translate3d(100%, 0, 0);
|
|
30
|
-
}
|
|
31
|
-
100% {
|
|
32
|
-
opacity: 1;
|
|
33
|
-
transform: none;
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
@keyframes fadeInLeft {
|
|
37
|
-
0% {
|
|
38
|
-
opacity: 0;
|
|
39
|
-
transform: translate3d(-100%, 0, 0);
|
|
40
|
-
}
|
|
41
|
-
100% {
|
|
42
|
-
opacity: 1;
|
|
43
|
-
transform: none;
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
.toast-top-left {
|
|
47
|
-
top: 0px;
|
|
48
|
-
left: 0px;
|
|
49
|
-
}
|
|
50
|
-
.toast-top-right {
|
|
51
|
-
top: 0px;
|
|
52
|
-
right: 0px;
|
|
53
|
-
}
|
|
54
|
-
.toast-bottom-right {
|
|
55
|
-
right: 0px;
|
|
56
|
-
bottom: 0px;
|
|
57
|
-
}
|
|
58
|
-
.toast-bottom-left {
|
|
59
|
-
bottom: 0px;
|
|
60
|
-
left: 0px;
|
|
61
|
-
}
|
|
62
|
-
/*!******************************************************************************************************************************************************************************************!*\
|
|
63
|
-
!*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-14.use[1]!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-14.use[2]!./node_modules/codemirror/lib/codemirror.css ***!
|
|
64
|
-
\******************************************************************************************************************************************************************************************/
|
|
65
|
-
/* BASICS */
|
|
66
|
-
|
|
67
|
-
.CodeMirror {
|
|
68
|
-
/* Set height, width, borders, and global font properties here */
|
|
69
|
-
font-family: monospace;
|
|
70
|
-
height: 300px;
|
|
71
|
-
color: black;
|
|
72
|
-
direction: ltr;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
/* PADDING */
|
|
76
|
-
|
|
77
|
-
.CodeMirror-lines {
|
|
78
|
-
padding: 4px 0; /* Vertical padding around content */
|
|
79
|
-
}
|
|
80
|
-
.CodeMirror pre.CodeMirror-line,
|
|
81
|
-
.CodeMirror pre.CodeMirror-line-like {
|
|
82
|
-
padding: 0 4px; /* Horizontal padding of content */
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
|
|
86
|
-
background-color: white; /* The little square between H and V scrollbars */
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
/* GUTTER */
|
|
90
|
-
|
|
91
|
-
.CodeMirror-gutters {
|
|
92
|
-
border-right: 1px solid #ddd;
|
|
93
|
-
background-color: #f7f7f7;
|
|
94
|
-
white-space: nowrap;
|
|
95
|
-
}
|
|
96
|
-
.CodeMirror-linenumbers {}
|
|
97
|
-
.CodeMirror-linenumber {
|
|
98
|
-
padding: 0 3px 0 5px;
|
|
99
|
-
min-width: 20px;
|
|
100
|
-
text-align: right;
|
|
101
|
-
color: #999;
|
|
102
|
-
white-space: nowrap;
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
.CodeMirror-guttermarker { color: black; }
|
|
106
|
-
.CodeMirror-guttermarker-subtle { color: #999; }
|
|
107
|
-
|
|
108
|
-
/* CURSOR */
|
|
109
|
-
|
|
110
|
-
.CodeMirror-cursor {
|
|
111
|
-
border-left: 1px solid black;
|
|
112
|
-
border-right: none;
|
|
113
|
-
width: 0;
|
|
114
|
-
}
|
|
115
|
-
/* Shown when moving in bi-directional text */
|
|
116
|
-
.CodeMirror div.CodeMirror-secondarycursor {
|
|
117
|
-
border-left: 1px solid silver;
|
|
118
|
-
}
|
|
119
|
-
.cm-fat-cursor .CodeMirror-cursor {
|
|
120
|
-
width: auto;
|
|
121
|
-
border: 0 !important;
|
|
122
|
-
background: #7e7;
|
|
123
|
-
}
|
|
124
|
-
.cm-fat-cursor div.CodeMirror-cursors {
|
|
125
|
-
z-index: 1;
|
|
126
|
-
}
|
|
127
|
-
.cm-fat-cursor .CodeMirror-line::-moz-selection, .cm-fat-cursor .CodeMirror-line > span::-moz-selection, .cm-fat-cursor .CodeMirror-line > span > span::-moz-selection { background: transparent; }
|
|
128
|
-
.cm-fat-cursor .CodeMirror-line::selection,
|
|
129
|
-
.cm-fat-cursor .CodeMirror-line > span::selection,
|
|
130
|
-
.cm-fat-cursor .CodeMirror-line > span > span::selection { background: transparent; }
|
|
131
|
-
.cm-fat-cursor .CodeMirror-line::-moz-selection,
|
|
132
|
-
.cm-fat-cursor .CodeMirror-line > span::-moz-selection,
|
|
133
|
-
.cm-fat-cursor .CodeMirror-line > span > span::-moz-selection { background: transparent; }
|
|
134
|
-
.cm-fat-cursor { caret-color: transparent; }
|
|
135
|
-
@keyframes blink {
|
|
136
|
-
0% {}
|
|
137
|
-
50% { background-color: transparent; }
|
|
138
|
-
100% {}
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
/* Can style cursor different in overwrite (non-insert) mode */
|
|
142
|
-
.CodeMirror-overwrite .CodeMirror-cursor {}
|
|
143
|
-
|
|
144
|
-
.cm-tab { display: inline-block; text-decoration: inherit; }
|
|
145
|
-
|
|
146
|
-
.CodeMirror-rulers {
|
|
147
|
-
position: absolute;
|
|
148
|
-
left: 0; right: 0; top: -50px; bottom: 0;
|
|
149
|
-
overflow: hidden;
|
|
150
|
-
}
|
|
151
|
-
.CodeMirror-ruler {
|
|
152
|
-
border-left: 1px solid #ccc;
|
|
153
|
-
top: 0; bottom: 0;
|
|
154
|
-
position: absolute;
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
/* DEFAULT THEME */
|
|
158
|
-
|
|
159
|
-
.cm-s-default .cm-header {color: blue;}
|
|
160
|
-
.cm-s-default .cm-quote {color: #090;}
|
|
161
|
-
.cm-negative {color: #d44;}
|
|
162
|
-
.cm-positive {color: #292;}
|
|
163
|
-
.cm-header, .cm-strong {font-weight: bold;}
|
|
164
|
-
.cm-em {font-style: italic;}
|
|
165
|
-
.cm-link {text-decoration: underline;}
|
|
166
|
-
.cm-strikethrough {text-decoration: line-through;}
|
|
167
|
-
|
|
168
|
-
.cm-s-default .cm-keyword {color: #708;}
|
|
169
|
-
.cm-s-default .cm-atom {color: #219;}
|
|
170
|
-
.cm-s-default .cm-number {color: #164;}
|
|
171
|
-
.cm-s-default .cm-def {color: #00f;}
|
|
172
|
-
.cm-s-default .cm-variable,
|
|
173
|
-
.cm-s-default .cm-punctuation,
|
|
174
|
-
.cm-s-default .cm-property,
|
|
175
|
-
.cm-s-default .cm-operator {}
|
|
176
|
-
.cm-s-default .cm-variable-2 {color: #05a;}
|
|
177
|
-
.cm-s-default .cm-variable-3, .cm-s-default .cm-type {color: #085;}
|
|
178
|
-
.cm-s-default .cm-comment {color: #a50;}
|
|
179
|
-
.cm-s-default .cm-string {color: #a11;}
|
|
180
|
-
.cm-s-default .cm-string-2 {color: #f50;}
|
|
181
|
-
.cm-s-default .cm-meta {color: #555;}
|
|
182
|
-
.cm-s-default .cm-qualifier {color: #555;}
|
|
183
|
-
.cm-s-default .cm-builtin {color: #30a;}
|
|
184
|
-
.cm-s-default .cm-bracket {color: #997;}
|
|
185
|
-
.cm-s-default .cm-tag {color: #170;}
|
|
186
|
-
.cm-s-default .cm-attribute {color: #00c;}
|
|
187
|
-
.cm-s-default .cm-hr {color: #999;}
|
|
188
|
-
.cm-s-default .cm-link {color: #00c;}
|
|
189
|
-
|
|
190
|
-
.cm-s-default .cm-error {color: #f00;}
|
|
191
|
-
.cm-invalidchar {color: #f00;}
|
|
192
|
-
|
|
193
|
-
.CodeMirror-composing { border-bottom: 2px solid; }
|
|
194
|
-
|
|
195
|
-
/* Default styles for common addons */
|
|
196
|
-
|
|
197
|
-
div.CodeMirror span.CodeMirror-matchingbracket {color: #0b0;}
|
|
198
|
-
div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #a22;}
|
|
199
|
-
.CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); }
|
|
200
|
-
.CodeMirror-activeline-background {background: #e8f2ff;}
|
|
201
|
-
|
|
202
|
-
/* STOP */
|
|
203
|
-
|
|
204
|
-
/* The rest of this file contains styles related to the mechanics of
|
|
205
|
-
the editor. You probably shouldn't touch them. */
|
|
206
|
-
|
|
207
|
-
.CodeMirror {
|
|
208
|
-
position: relative;
|
|
209
|
-
overflow: hidden;
|
|
210
|
-
background: white;
|
|
211
|
-
}
|
|
212
|
-
|
|
213
|
-
.CodeMirror-scroll {
|
|
214
|
-
overflow: scroll !important; /* Things will break if this is overridden */
|
|
215
|
-
/* 50px is the magic margin used to hide the element's real scrollbars */
|
|
216
|
-
/* See overflow: hidden in .CodeMirror */
|
|
217
|
-
margin-bottom: -50px; margin-right: -50px;
|
|
218
|
-
padding-bottom: 50px;
|
|
219
|
-
height: 100%;
|
|
220
|
-
outline: none; /* Prevent dragging from highlighting the element */
|
|
221
|
-
position: relative;
|
|
222
|
-
z-index: 0;
|
|
223
|
-
}
|
|
224
|
-
.CodeMirror-sizer {
|
|
225
|
-
position: relative;
|
|
226
|
-
border-right: 50px solid transparent;
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
/* The fake, visible scrollbars. Used to force redraw during scrolling
|
|
230
|
-
before actual scrolling happens, thus preventing shaking and
|
|
231
|
-
flickering artifacts. */
|
|
232
|
-
.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
|
|
233
|
-
position: absolute;
|
|
234
|
-
z-index: 6;
|
|
235
|
-
display: none;
|
|
236
|
-
outline: none;
|
|
237
|
-
}
|
|
238
|
-
.CodeMirror-vscrollbar {
|
|
239
|
-
right: 0; top: 0;
|
|
240
|
-
overflow-x: hidden;
|
|
241
|
-
overflow-y: scroll;
|
|
242
|
-
}
|
|
243
|
-
.CodeMirror-hscrollbar {
|
|
244
|
-
bottom: 0; left: 0;
|
|
245
|
-
overflow-y: hidden;
|
|
246
|
-
overflow-x: scroll;
|
|
247
|
-
}
|
|
248
|
-
.CodeMirror-scrollbar-filler {
|
|
249
|
-
right: 0; bottom: 0;
|
|
250
|
-
}
|
|
251
|
-
.CodeMirror-gutter-filler {
|
|
252
|
-
left: 0; bottom: 0;
|
|
253
|
-
}
|
|
254
|
-
|
|
255
|
-
.CodeMirror-gutters {
|
|
256
|
-
position: absolute; left: 0; top: 0;
|
|
257
|
-
min-height: 100%;
|
|
258
|
-
z-index: 3;
|
|
259
|
-
}
|
|
260
|
-
.CodeMirror-gutter {
|
|
261
|
-
white-space: normal;
|
|
262
|
-
height: 100%;
|
|
263
|
-
display: inline-block;
|
|
264
|
-
vertical-align: top;
|
|
265
|
-
margin-bottom: -50px;
|
|
266
|
-
}
|
|
267
|
-
.CodeMirror-gutter-wrapper {
|
|
268
|
-
position: absolute;
|
|
269
|
-
z-index: 4;
|
|
270
|
-
background: none !important;
|
|
271
|
-
border: none !important;
|
|
272
|
-
}
|
|
273
|
-
.CodeMirror-gutter-background {
|
|
274
|
-
position: absolute;
|
|
275
|
-
top: 0; bottom: 0;
|
|
276
|
-
z-index: 4;
|
|
277
|
-
}
|
|
278
|
-
.CodeMirror-gutter-elt {
|
|
279
|
-
position: absolute;
|
|
280
|
-
cursor: default;
|
|
281
|
-
z-index: 4;
|
|
282
|
-
}
|
|
283
|
-
.CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent }
|
|
284
|
-
.CodeMirror-gutter-wrapper ::selection { background-color: transparent }
|
|
285
|
-
.CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent }
|
|
286
|
-
|
|
287
|
-
.CodeMirror-lines {
|
|
288
|
-
cursor: text;
|
|
289
|
-
min-height: 1px; /* prevents collapsing before first draw */
|
|
290
|
-
}
|
|
291
|
-
.CodeMirror pre.CodeMirror-line,
|
|
292
|
-
.CodeMirror pre.CodeMirror-line-like {
|
|
293
|
-
/* Reset some styles that the rest of the page might have set */ border-radius: 0;
|
|
294
|
-
border-width: 0;
|
|
295
|
-
background: transparent;
|
|
296
|
-
font-family: inherit;
|
|
297
|
-
font-size: inherit;
|
|
298
|
-
margin: 0;
|
|
299
|
-
white-space: pre;
|
|
300
|
-
word-wrap: normal;
|
|
301
|
-
line-height: inherit;
|
|
302
|
-
color: inherit;
|
|
303
|
-
z-index: 2;
|
|
304
|
-
position: relative;
|
|
305
|
-
overflow: visible;
|
|
306
|
-
-webkit-tap-highlight-color: transparent;
|
|
307
|
-
font-variant-ligatures: contextual;
|
|
308
|
-
}
|
|
309
|
-
.CodeMirror-wrap pre.CodeMirror-line,
|
|
310
|
-
.CodeMirror-wrap pre.CodeMirror-line-like {
|
|
311
|
-
word-wrap: break-word;
|
|
312
|
-
white-space: pre-wrap;
|
|
313
|
-
word-break: normal;
|
|
314
|
-
}
|
|
315
|
-
|
|
316
|
-
.CodeMirror-linebackground {
|
|
317
|
-
position: absolute;
|
|
318
|
-
left: 0; right: 0; top: 0; bottom: 0;
|
|
319
|
-
z-index: 0;
|
|
320
|
-
}
|
|
321
|
-
|
|
322
|
-
.CodeMirror-linewidget {
|
|
323
|
-
position: relative;
|
|
324
|
-
z-index: 2;
|
|
325
|
-
padding: 0.1px; /* Force widget margins to stay inside of the container */
|
|
326
|
-
}
|
|
327
|
-
|
|
328
|
-
.CodeMirror-widget {}
|
|
329
|
-
|
|
330
|
-
.CodeMirror-rtl pre { direction: rtl; }
|
|
331
|
-
|
|
332
|
-
.CodeMirror-code {
|
|
333
|
-
outline: none;
|
|
334
|
-
}
|
|
335
|
-
|
|
336
|
-
/* Force content-box sizing for the elements where we expect it */
|
|
337
|
-
.CodeMirror-scroll,
|
|
338
|
-
.CodeMirror-sizer,
|
|
339
|
-
.CodeMirror-gutter,
|
|
340
|
-
.CodeMirror-gutters,
|
|
341
|
-
.CodeMirror-linenumber {
|
|
342
|
-
box-sizing: content-box;
|
|
343
|
-
}
|
|
344
|
-
|
|
345
|
-
.CodeMirror-measure {
|
|
346
|
-
position: absolute;
|
|
347
|
-
width: 100%;
|
|
348
|
-
height: 0;
|
|
349
|
-
overflow: hidden;
|
|
350
|
-
visibility: hidden;
|
|
351
|
-
}
|
|
352
|
-
|
|
353
|
-
.CodeMirror-cursor {
|
|
354
|
-
position: absolute;
|
|
355
|
-
pointer-events: none;
|
|
356
|
-
}
|
|
357
|
-
.CodeMirror-measure pre { position: static; }
|
|
358
|
-
|
|
359
|
-
div.CodeMirror-cursors {
|
|
360
|
-
visibility: hidden;
|
|
361
|
-
position: relative;
|
|
362
|
-
z-index: 3;
|
|
363
|
-
}
|
|
364
|
-
div.CodeMirror-dragcursors {
|
|
365
|
-
visibility: visible;
|
|
366
|
-
}
|
|
367
|
-
|
|
368
|
-
.CodeMirror-focused div.CodeMirror-cursors {
|
|
369
|
-
visibility: visible;
|
|
370
|
-
}
|
|
371
|
-
|
|
372
|
-
.CodeMirror-selected { background: #d9d9d9; }
|
|
373
|
-
.CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }
|
|
374
|
-
.CodeMirror-crosshair { cursor: crosshair; }
|
|
375
|
-
.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }
|
|
376
|
-
.CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; }
|
|
377
|
-
.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }
|
|
378
|
-
|
|
379
|
-
.cm-searching {
|
|
380
|
-
background-color: #ffa;
|
|
381
|
-
background-color: rgba(255, 255, 0, .4);
|
|
382
|
-
}
|
|
383
|
-
|
|
384
|
-
/* Used to force a border model for a node */
|
|
385
|
-
.cm-force-border { padding-right: .1px; }
|
|
386
|
-
|
|
387
|
-
@media print {
|
|
388
|
-
/* Hide the cursor when printing */
|
|
389
|
-
.CodeMirror div.CodeMirror-cursors {
|
|
390
|
-
visibility: hidden;
|
|
391
|
-
}
|
|
392
|
-
}
|
|
393
|
-
|
|
394
|
-
/* See issue #2901 */
|
|
395
|
-
.cm-tab-wrap-hack:after { content: ''; }
|
|
396
|
-
|
|
397
|
-
/* Help users use markselection to safely style text background */
|
|
398
|
-
span.CodeMirror-selectedtext { background: none; }
|
|
399
|
-
|
|
400
|
-
/*!*****************************************************************************************************************************************************************************************************!*\
|
|
401
|
-
!*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-14.use[1]!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-14.use[2]!./node_modules/vue-loading-overlay/dist/vue-loading.css ***!
|
|
402
|
-
\*****************************************************************************************************************************************************************************************************/
|
|
403
|
-
.vld-shown {
|
|
404
|
-
overflow: hidden;
|
|
405
|
-
}
|
|
406
|
-
|
|
407
|
-
.vld-overlay {
|
|
408
|
-
bottom: 0;
|
|
409
|
-
left: 0;
|
|
410
|
-
position: absolute;
|
|
411
|
-
right: 0;
|
|
412
|
-
top: 0;
|
|
413
|
-
align-items: center;
|
|
414
|
-
display: none;
|
|
415
|
-
justify-content: center;
|
|
416
|
-
overflow: hidden;
|
|
417
|
-
z-index: 9999;
|
|
418
|
-
}
|
|
419
|
-
|
|
420
|
-
.vld-overlay.is-active {
|
|
421
|
-
display: flex;
|
|
422
|
-
}
|
|
423
|
-
|
|
424
|
-
.vld-overlay.is-full-page {
|
|
425
|
-
z-index: 9999;
|
|
426
|
-
position: fixed;
|
|
427
|
-
}
|
|
428
|
-
|
|
429
|
-
.vld-overlay .vld-background {
|
|
430
|
-
bottom: 0;
|
|
431
|
-
left: 0;
|
|
432
|
-
position: absolute;
|
|
433
|
-
right: 0;
|
|
434
|
-
top: 0;
|
|
435
|
-
background: #fff;
|
|
436
|
-
opacity: 0.5;
|
|
437
|
-
}
|
|
438
|
-
|
|
439
|
-
.vld-overlay .vld-icon, .vld-parent {
|
|
440
|
-
position: relative;
|
|
441
|
-
}
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
/*!**************************************************************************************************************************************************************************************!*\
|
|
445
|
-
!*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-14.use[1]!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-14.use[2]!./node_modules/codemirror/theme/idea.css ***!
|
|
446
|
-
\**************************************************************************************************************************************************************************************/
|
|
447
|
-
/**
|
|
448
|
-
Name: IDEA default theme
|
|
449
|
-
From IntelliJ IDEA by JetBrains
|
|
450
|
-
*/
|
|
451
|
-
|
|
452
|
-
.cm-s-idea span.cm-meta { color: #808000; }
|
|
453
|
-
.cm-s-idea span.cm-number { color: #0000FF; }
|
|
454
|
-
.cm-s-idea span.cm-keyword { line-height: 1em; font-weight: bold; color: #000080; }
|
|
455
|
-
.cm-s-idea span.cm-atom { font-weight: bold; color: #000080; }
|
|
456
|
-
.cm-s-idea span.cm-def { color: #000000; }
|
|
457
|
-
.cm-s-idea span.cm-variable { color: black; }
|
|
458
|
-
.cm-s-idea span.cm-variable-2 { color: black; }
|
|
459
|
-
.cm-s-idea span.cm-variable-3, .cm-s-idea span.cm-type { color: black; }
|
|
460
|
-
.cm-s-idea span.cm-property { color: black; }
|
|
461
|
-
.cm-s-idea span.cm-operator { color: black; }
|
|
462
|
-
.cm-s-idea span.cm-comment { color: #808080; }
|
|
463
|
-
.cm-s-idea span.cm-string { color: #008000; }
|
|
464
|
-
.cm-s-idea span.cm-string-2 { color: #008000; }
|
|
465
|
-
.cm-s-idea span.cm-qualifier { color: #555; }
|
|
466
|
-
.cm-s-idea span.cm-error { color: #FF0000; }
|
|
467
|
-
.cm-s-idea span.cm-attribute { color: #0000FF; }
|
|
468
|
-
.cm-s-idea span.cm-tag { color: #000080; }
|
|
469
|
-
.cm-s-idea span.cm-link { color: #0000FF; }
|
|
470
|
-
.cm-s-idea .CodeMirror-activeline-background { background: #FFFAE3; }
|
|
471
|
-
|
|
472
|
-
.cm-s-idea span.cm-builtin { color: #30a; }
|
|
473
|
-
.cm-s-idea span.cm-bracket { color: #cc7; }
|
|
474
|
-
.cm-s-idea { font-family: Consolas, Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif;}
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
.cm-s-idea .CodeMirror-matchingbracket { outline:1px solid grey; color:black !important; }
|
|
478
|
-
|
|
479
|
-
.CodeMirror-hints.idea {
|
|
480
|
-
font-family: Menlo, Monaco, Consolas, 'Courier New', monospace;
|
|
481
|
-
color: #616569;
|
|
482
|
-
background-color: #ebf3fd !important;
|
|
483
|
-
}
|
|
484
|
-
|
|
485
|
-
.CodeMirror-hints.idea .CodeMirror-hint-active {
|
|
486
|
-
background-color: #a2b8c9 !important;
|
|
487
|
-
color: #5c6065 !important;
|
|
488
|
-
}
|
|
489
|
-
/*!*********************************************************************************************************************************************************************************************!*\
|
|
490
|
-
!*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-14.use[1]!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-14.use[2]!./node_modules/codemirror/theme/base16-dark.css ***!
|
|
491
|
-
\*********************************************************************************************************************************************************************************************/
|
|
492
|
-
/*
|
|
493
|
-
|
|
494
|
-
Name: Base16 Default Dark
|
|
495
|
-
Author: Chris Kempson (http://chriskempson.com)
|
|
496
|
-
|
|
497
|
-
CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-codemirror)
|
|
498
|
-
Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16)
|
|
499
|
-
|
|
500
|
-
*/
|
|
501
|
-
|
|
502
|
-
.cm-s-base16-dark.CodeMirror { background: #151515; color: #e0e0e0; }
|
|
503
|
-
.cm-s-base16-dark div.CodeMirror-selected { background: #303030; }
|
|
504
|
-
.cm-s-base16-dark .CodeMirror-line::-moz-selection, .cm-s-base16-dark .CodeMirror-line > span::-moz-selection, .cm-s-base16-dark .CodeMirror-line > span > span::-moz-selection { background: rgba(48, 48, 48, .99); }
|
|
505
|
-
.cm-s-base16-dark .CodeMirror-line::selection, .cm-s-base16-dark .CodeMirror-line > span::selection, .cm-s-base16-dark .CodeMirror-line > span > span::selection { background: rgba(48, 48, 48, .99); }
|
|
506
|
-
.cm-s-base16-dark .CodeMirror-line::-moz-selection, .cm-s-base16-dark .CodeMirror-line > span::-moz-selection, .cm-s-base16-dark .CodeMirror-line > span > span::-moz-selection { background: rgba(48, 48, 48, .99); }
|
|
507
|
-
.cm-s-base16-dark .CodeMirror-gutters { background: #151515; border-right: 0px; }
|
|
508
|
-
.cm-s-base16-dark .CodeMirror-guttermarker { color: #ac4142; }
|
|
509
|
-
.cm-s-base16-dark .CodeMirror-guttermarker-subtle { color: #505050; }
|
|
510
|
-
.cm-s-base16-dark .CodeMirror-linenumber { color: #505050; }
|
|
511
|
-
.cm-s-base16-dark .CodeMirror-cursor { border-left: 1px solid #b0b0b0; }
|
|
512
|
-
.cm-s-base16-dark.cm-fat-cursor .CodeMirror-cursor { background-color: #8e8d8875 !important; }
|
|
513
|
-
.cm-s-base16-dark .cm-animate-fat-cursor { background-color: #8e8d8875 !important; }
|
|
514
|
-
|
|
515
|
-
.cm-s-base16-dark span.cm-comment { color: #8f5536; }
|
|
516
|
-
.cm-s-base16-dark span.cm-atom { color: #aa759f; }
|
|
517
|
-
.cm-s-base16-dark span.cm-number { color: #aa759f; }
|
|
518
|
-
|
|
519
|
-
.cm-s-base16-dark span.cm-property, .cm-s-base16-dark span.cm-attribute { color: #90a959; }
|
|
520
|
-
.cm-s-base16-dark span.cm-keyword { color: #ac4142; }
|
|
521
|
-
.cm-s-base16-dark span.cm-string { color: #f4bf75; }
|
|
522
|
-
|
|
523
|
-
.cm-s-base16-dark span.cm-variable { color: #90a959; }
|
|
524
|
-
.cm-s-base16-dark span.cm-variable-2 { color: #6a9fb5; }
|
|
525
|
-
.cm-s-base16-dark span.cm-def { color: #d28445; }
|
|
526
|
-
.cm-s-base16-dark span.cm-bracket { color: #e0e0e0; }
|
|
527
|
-
.cm-s-base16-dark span.cm-tag { color: #ac4142; }
|
|
528
|
-
.cm-s-base16-dark span.cm-link { color: #aa759f; }
|
|
529
|
-
.cm-s-base16-dark span.cm-error { background: #ac4142; color: #b0b0b0; }
|
|
530
|
-
|
|
531
|
-
.cm-s-base16-dark .CodeMirror-activeline-background { background: #202020; }
|
|
532
|
-
.cm-s-base16-dark .CodeMirror-matchingbracket { text-decoration: underline; color: white !important; }
|
|
533
|
-
|
|
534
|
-
/*!*****************************************************************************************************************************************************************************************!*\
|
|
535
|
-
!*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-14.use[1]!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-14.use[2]!./node_modules/codemirror/theme/monokai.css ***!
|
|
536
|
-
\*****************************************************************************************************************************************************************************************/
|
|
537
|
-
/* Based on Sublime Text's Monokai theme */
|
|
538
|
-
|
|
539
|
-
.cm-s-monokai.CodeMirror { background: #272822; color: #f8f8f2; }
|
|
540
|
-
.cm-s-monokai div.CodeMirror-selected { background: #49483E; }
|
|
541
|
-
.cm-s-monokai .CodeMirror-line::-moz-selection, .cm-s-monokai .CodeMirror-line > span::-moz-selection, .cm-s-monokai .CodeMirror-line > span > span::-moz-selection { background: rgba(73, 72, 62, .99); }
|
|
542
|
-
.cm-s-monokai .CodeMirror-line::selection, .cm-s-monokai .CodeMirror-line > span::selection, .cm-s-monokai .CodeMirror-line > span > span::selection { background: rgba(73, 72, 62, .99); }
|
|
543
|
-
.cm-s-monokai .CodeMirror-line::-moz-selection, .cm-s-monokai .CodeMirror-line > span::-moz-selection, .cm-s-monokai .CodeMirror-line > span > span::-moz-selection { background: rgba(73, 72, 62, .99); }
|
|
544
|
-
.cm-s-monokai .CodeMirror-gutters { background: #272822; border-right: 0px; }
|
|
545
|
-
.cm-s-monokai .CodeMirror-guttermarker { color: white; }
|
|
546
|
-
.cm-s-monokai .CodeMirror-guttermarker-subtle { color: #d0d0d0; }
|
|
547
|
-
.cm-s-monokai .CodeMirror-linenumber { color: #d0d0d0; }
|
|
548
|
-
.cm-s-monokai .CodeMirror-cursor { border-left: 1px solid #f8f8f0; }
|
|
549
|
-
|
|
550
|
-
.cm-s-monokai span.cm-comment { color: #75715e; }
|
|
551
|
-
.cm-s-monokai span.cm-atom { color: #ae81ff; }
|
|
552
|
-
.cm-s-monokai span.cm-number { color: #ae81ff; }
|
|
553
|
-
|
|
554
|
-
.cm-s-monokai span.cm-comment.cm-attribute { color: #97b757; }
|
|
555
|
-
.cm-s-monokai span.cm-comment.cm-def { color: #bc9262; }
|
|
556
|
-
.cm-s-monokai span.cm-comment.cm-tag { color: #bc6283; }
|
|
557
|
-
.cm-s-monokai span.cm-comment.cm-type { color: #5998a6; }
|
|
558
|
-
|
|
559
|
-
.cm-s-monokai span.cm-property, .cm-s-monokai span.cm-attribute { color: #a6e22e; }
|
|
560
|
-
.cm-s-monokai span.cm-keyword { color: #f92672; }
|
|
561
|
-
.cm-s-monokai span.cm-builtin { color: #66d9ef; }
|
|
562
|
-
.cm-s-monokai span.cm-string { color: #e6db74; }
|
|
563
|
-
|
|
564
|
-
.cm-s-monokai span.cm-variable { color: #f8f8f2; }
|
|
565
|
-
.cm-s-monokai span.cm-variable-2 { color: #9effff; }
|
|
566
|
-
.cm-s-monokai span.cm-variable-3, .cm-s-monokai span.cm-type { color: #66d9ef; }
|
|
567
|
-
.cm-s-monokai span.cm-def { color: #fd971f; }
|
|
568
|
-
.cm-s-monokai span.cm-bracket { color: #f8f8f2; }
|
|
569
|
-
.cm-s-monokai span.cm-tag { color: #f92672; }
|
|
570
|
-
.cm-s-monokai span.cm-header { color: #ae81ff; }
|
|
571
|
-
.cm-s-monokai span.cm-link { color: #ae81ff; }
|
|
572
|
-
.cm-s-monokai span.cm-error { background: #f92672; color: #f8f8f0; }
|
|
573
|
-
|
|
574
|
-
.cm-s-monokai .CodeMirror-activeline-background { background: #373831; }
|
|
575
|
-
.cm-s-monokai .CodeMirror-matchingbracket {
|
|
576
|
-
text-decoration: underline;
|
|
577
|
-
color: white !important;
|
|
578
|
-
}
|
|
579
|
-
|
|
580
|
-
/*!*************************************************************************************************************************************************************************************!*\
|
|
581
|
-
!*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-14.use[1]!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-14.use[2]!./node_modules/codemirror/theme/mbo.css ***!
|
|
582
|
-
\*************************************************************************************************************************************************************************************/
|
|
583
|
-
/****************************************************************/
|
|
584
|
-
/* Based on mbonaci's Brackets mbo theme */
|
|
585
|
-
/* https://github.com/mbonaci/global/blob/master/Mbo.tmTheme */
|
|
586
|
-
/* Create your own: http://tmtheme-editor.herokuapp.com */
|
|
587
|
-
/****************************************************************/
|
|
588
|
-
|
|
589
|
-
.cm-s-mbo.CodeMirror { background: #2c2c2c; color: #ffffec; }
|
|
590
|
-
.cm-s-mbo div.CodeMirror-selected { background: #716C62; }
|
|
591
|
-
.cm-s-mbo .CodeMirror-line::-moz-selection, .cm-s-mbo .CodeMirror-line > span::-moz-selection, .cm-s-mbo .CodeMirror-line > span > span::-moz-selection { background: rgba(113, 108, 98, .99); }
|
|
592
|
-
.cm-s-mbo .CodeMirror-line::selection, .cm-s-mbo .CodeMirror-line > span::selection, .cm-s-mbo .CodeMirror-line > span > span::selection { background: rgba(113, 108, 98, .99); }
|
|
593
|
-
.cm-s-mbo .CodeMirror-line::-moz-selection, .cm-s-mbo .CodeMirror-line > span::-moz-selection, .cm-s-mbo .CodeMirror-line > span > span::-moz-selection { background: rgba(113, 108, 98, .99); }
|
|
594
|
-
.cm-s-mbo .CodeMirror-gutters { background: #4e4e4e; border-right: 0px; }
|
|
595
|
-
.cm-s-mbo .CodeMirror-guttermarker { color: white; }
|
|
596
|
-
.cm-s-mbo .CodeMirror-guttermarker-subtle { color: grey; }
|
|
597
|
-
.cm-s-mbo .CodeMirror-linenumber { color: #dadada; }
|
|
598
|
-
.cm-s-mbo .CodeMirror-cursor { border-left: 1px solid #ffffec; }
|
|
599
|
-
|
|
600
|
-
.cm-s-mbo span.cm-comment { color: #95958a; }
|
|
601
|
-
.cm-s-mbo span.cm-atom { color: #00a8c6; }
|
|
602
|
-
.cm-s-mbo span.cm-number { color: #00a8c6; }
|
|
603
|
-
|
|
604
|
-
.cm-s-mbo span.cm-property, .cm-s-mbo span.cm-attribute { color: #9ddfe9; }
|
|
605
|
-
.cm-s-mbo span.cm-keyword { color: #ffb928; }
|
|
606
|
-
.cm-s-mbo span.cm-string { color: #ffcf6c; }
|
|
607
|
-
.cm-s-mbo span.cm-string.cm-property { color: #ffffec; }
|
|
608
|
-
|
|
609
|
-
.cm-s-mbo span.cm-variable { color: #ffffec; }
|
|
610
|
-
.cm-s-mbo span.cm-variable-2 { color: #00a8c6; }
|
|
611
|
-
.cm-s-mbo span.cm-def { color: #ffffec; }
|
|
612
|
-
.cm-s-mbo span.cm-bracket { color: #fffffc; font-weight: bold; }
|
|
613
|
-
.cm-s-mbo span.cm-tag { color: #9ddfe9; }
|
|
614
|
-
.cm-s-mbo span.cm-link { color: #f54b07; }
|
|
615
|
-
.cm-s-mbo span.cm-error { border-bottom: #636363; color: #ffffec; }
|
|
616
|
-
.cm-s-mbo span.cm-qualifier { color: #ffffec; }
|
|
617
|
-
|
|
618
|
-
.cm-s-mbo .CodeMirror-activeline-background { background: #494b41; }
|
|
619
|
-
.cm-s-mbo .CodeMirror-matchingbracket { color: #ffb928 !important; }
|
|
620
|
-
.cm-s-mbo .CodeMirror-matchingtag { background: rgba(255, 255, 255, .37); }
|
|
621
|
-
|
|
622
|
-
/*!******************************************************************************************************************************************************************************************!*\
|
|
623
|
-
!*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-14.use[1]!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-14.use[2]!./node_modules/codemirror/theme/rubyblue.css ***!
|
|
624
|
-
\******************************************************************************************************************************************************************************************/
|
|
625
|
-
.cm-s-rubyblue.CodeMirror { background: #112435; color: white; }
|
|
626
|
-
.cm-s-rubyblue div.CodeMirror-selected { background: #38566F; }
|
|
627
|
-
.cm-s-rubyblue .CodeMirror-line::-moz-selection, .cm-s-rubyblue .CodeMirror-line > span::-moz-selection, .cm-s-rubyblue .CodeMirror-line > span > span::-moz-selection { background: rgba(56, 86, 111, 0.99); }
|
|
628
|
-
.cm-s-rubyblue .CodeMirror-line::selection, .cm-s-rubyblue .CodeMirror-line > span::selection, .cm-s-rubyblue .CodeMirror-line > span > span::selection { background: rgba(56, 86, 111, 0.99); }
|
|
629
|
-
.cm-s-rubyblue .CodeMirror-line::-moz-selection, .cm-s-rubyblue .CodeMirror-line > span::-moz-selection, .cm-s-rubyblue .CodeMirror-line > span > span::-moz-selection { background: rgba(56, 86, 111, 0.99); }
|
|
630
|
-
.cm-s-rubyblue .CodeMirror-gutters { background: #1F4661; border-right: 7px solid #3E7087; }
|
|
631
|
-
.cm-s-rubyblue .CodeMirror-guttermarker { color: white; }
|
|
632
|
-
.cm-s-rubyblue .CodeMirror-guttermarker-subtle { color: #3E7087; }
|
|
633
|
-
.cm-s-rubyblue .CodeMirror-linenumber { color: white; }
|
|
634
|
-
.cm-s-rubyblue .CodeMirror-cursor { border-left: 1px solid white; }
|
|
635
|
-
|
|
636
|
-
.cm-s-rubyblue span.cm-comment { color: #999; font-style:italic; line-height: 1em; }
|
|
637
|
-
.cm-s-rubyblue span.cm-atom { color: #F4C20B; }
|
|
638
|
-
.cm-s-rubyblue span.cm-number, .cm-s-rubyblue span.cm-attribute { color: #82C6E0; }
|
|
639
|
-
.cm-s-rubyblue span.cm-keyword { color: #F0F; }
|
|
640
|
-
.cm-s-rubyblue span.cm-string { color: #F08047; }
|
|
641
|
-
.cm-s-rubyblue span.cm-meta { color: #F0F; }
|
|
642
|
-
.cm-s-rubyblue span.cm-variable-2, .cm-s-rubyblue span.cm-tag { color: #7BD827; }
|
|
643
|
-
.cm-s-rubyblue span.cm-variable-3, .cm-s-rubyblue span.cm-def, .cm-s-rubyblue span.cm-type { color: white; }
|
|
644
|
-
.cm-s-rubyblue span.cm-bracket { color: #F0F; }
|
|
645
|
-
.cm-s-rubyblue span.cm-link { color: #F4C20B; }
|
|
646
|
-
.cm-s-rubyblue span.CodeMirror-matchingbracket { color:#F0F !important; }
|
|
647
|
-
.cm-s-rubyblue span.cm-builtin, .cm-s-rubyblue span.cm-special { color: #FF9D00; }
|
|
648
|
-
.cm-s-rubyblue span.cm-error { color: #AF2018; }
|
|
649
|
-
|
|
650
|
-
.cm-s-rubyblue .CodeMirror-activeline-background { background: #173047; }
|
|
651
|
-
|
|
652
|
-
/*!***********************************************************************************************************************************************************************************************!*\
|
|
653
|
-
!*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-14.use[1]!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-14.use[2]!./node_modules/codemirror/addon/dialog/dialog.css ***!
|
|
654
|
-
\***********************************************************************************************************************************************************************************************/
|
|
655
|
-
.CodeMirror-dialog {
|
|
656
|
-
position: absolute;
|
|
657
|
-
left: 0; right: 0;
|
|
658
|
-
background: inherit;
|
|
659
|
-
z-index: 15;
|
|
660
|
-
padding: .1em .8em;
|
|
661
|
-
overflow: hidden;
|
|
662
|
-
color: inherit;
|
|
663
|
-
}
|
|
664
|
-
|
|
665
|
-
.CodeMirror-dialog-top {
|
|
666
|
-
border-bottom: 1px solid #eee;
|
|
667
|
-
top: 0;
|
|
668
|
-
}
|
|
669
|
-
|
|
670
|
-
.CodeMirror-dialog-bottom {
|
|
671
|
-
border-top: 1px solid #eee;
|
|
672
|
-
bottom: 0;
|
|
673
|
-
}
|
|
674
|
-
|
|
675
|
-
.CodeMirror-dialog input {
|
|
676
|
-
border: none;
|
|
677
|
-
outline: none;
|
|
678
|
-
background: transparent;
|
|
679
|
-
width: 20em;
|
|
680
|
-
color: inherit;
|
|
681
|
-
font-family: monospace;
|
|
682
|
-
}
|
|
683
|
-
|
|
684
|
-
.CodeMirror-dialog button {
|
|
685
|
-
font-size: 70%;
|
|
686
|
-
}
|
|
687
|
-
|
|
688
|
-
/*!****************************************************************************************************************************************************************************************************!*\
|
|
689
|
-
!*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-14.use[1]!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-14.use[2]!./node_modules/codemirror/addon/display/fullscreen.css ***!
|
|
690
|
-
\****************************************************************************************************************************************************************************************************/
|
|
691
|
-
.CodeMirror-fullscreen {
|
|
692
|
-
position: fixed;
|
|
693
|
-
top: 0; left: 0; right: 0; bottom: 0;
|
|
694
|
-
height: auto;
|
|
695
|
-
z-index: 9;
|
|
696
|
-
}
|
|
697
|
-
|
|
698
|
-
/*!*************************************************************************************************************************************************************************************************!*\
|
|
699
|
-
!*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-14.use[1]!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-14.use[2]!./node_modules/codemirror/addon/fold/foldgutter.css ***!
|
|
700
|
-
\*************************************************************************************************************************************************************************************************/
|
|
701
|
-
.CodeMirror-foldmarker {
|
|
702
|
-
color: blue;
|
|
703
|
-
text-shadow: #b9f 1px 1px 2px, #b9f -1px -1px 2px, #b9f 1px -1px 2px, #b9f -1px 1px 2px;
|
|
704
|
-
font-family: arial;
|
|
705
|
-
line-height: .3;
|
|
706
|
-
cursor: pointer;
|
|
707
|
-
}
|
|
708
|
-
.CodeMirror-foldgutter {
|
|
709
|
-
width: .7em;
|
|
710
|
-
}
|
|
711
|
-
.CodeMirror-foldgutter-open,
|
|
712
|
-
.CodeMirror-foldgutter-folded {
|
|
713
|
-
cursor: pointer;
|
|
714
|
-
}
|
|
715
|
-
.CodeMirror-foldgutter-open:after {
|
|
716
|
-
content: "\25BE";
|
|
717
|
-
}
|
|
718
|
-
.CodeMirror-foldgutter-folded:after {
|
|
719
|
-
content: "\25B8";
|
|
720
|
-
}
|
|
721
|
-
|
|
722
|
-
/*!************************************************************************************************************************************************************************************************!*\
|
|
723
|
-
!*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-14.use[1]!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-14.use[2]!./node_modules/codemirror/addon/hint/show-hint.css ***!
|
|
724
|
-
\************************************************************************************************************************************************************************************************/
|
|
725
|
-
.CodeMirror-hints {
|
|
726
|
-
position: absolute;
|
|
727
|
-
z-index: 10;
|
|
728
|
-
overflow: hidden;
|
|
729
|
-
list-style: none;
|
|
730
|
-
|
|
731
|
-
margin: 0;
|
|
732
|
-
padding: 2px;
|
|
733
|
-
box-shadow: 2px 3px 5px rgba(0,0,0,.2);
|
|
734
|
-
border-radius: 3px;
|
|
735
|
-
border: 1px solid silver;
|
|
736
|
-
|
|
737
|
-
background: white;
|
|
738
|
-
font-size: 90%;
|
|
739
|
-
font-family: monospace;
|
|
740
|
-
|
|
741
|
-
max-height: 20em;
|
|
742
|
-
overflow-y: auto;
|
|
743
|
-
box-sizing: border-box;
|
|
744
|
-
}
|
|
745
|
-
|
|
746
|
-
.CodeMirror-hint {
|
|
747
|
-
margin: 0;
|
|
748
|
-
padding: 0 4px;
|
|
749
|
-
border-radius: 2px;
|
|
750
|
-
white-space: pre;
|
|
751
|
-
color: black;
|
|
752
|
-
cursor: pointer;
|
|
753
|
-
}
|
|
754
|
-
|
|
755
|
-
li.CodeMirror-hint-active {
|
|
756
|
-
background: #08f;
|
|
757
|
-
color: white;
|
|
758
|
-
}
|
|
759
|
-
|
|
760
|
-
/*!*******************************************************************************************************************************************************************************************!*\
|
|
761
|
-
!*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-14.use[1]!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-14.use[2]!./node_modules/codemirror/addon/lint/lint.css ***!
|
|
762
|
-
\*******************************************************************************************************************************************************************************************/
|
|
763
|
-
/* The lint marker gutter */
|
|
764
|
-
.CodeMirror-lint-markers {
|
|
765
|
-
width: 16px;
|
|
766
|
-
}
|
|
767
|
-
|
|
768
|
-
.CodeMirror-lint-tooltip {
|
|
769
|
-
background-color: #ffd;
|
|
770
|
-
border: 1px solid black;
|
|
771
|
-
border-radius: 4px 4px 4px 4px;
|
|
772
|
-
color: black;
|
|
773
|
-
font-family: monospace;
|
|
774
|
-
font-size: 10pt;
|
|
775
|
-
overflow: hidden;
|
|
776
|
-
padding: 2px 5px;
|
|
777
|
-
position: fixed;
|
|
778
|
-
white-space: pre;
|
|
779
|
-
white-space: pre-wrap;
|
|
780
|
-
z-index: 100;
|
|
781
|
-
max-width: 600px;
|
|
782
|
-
opacity: 0;
|
|
783
|
-
transition: opacity .4s;
|
|
784
|
-
-moz-transition: opacity .4s;
|
|
785
|
-
-webkit-transition: opacity .4s;
|
|
786
|
-
-o-transition: opacity .4s;
|
|
787
|
-
-ms-transition: opacity .4s;
|
|
788
|
-
}
|
|
789
|
-
|
|
790
|
-
.CodeMirror-lint-mark {
|
|
791
|
-
background-position: left bottom;
|
|
792
|
-
background-repeat: repeat-x;
|
|
793
|
-
}
|
|
794
|
-
|
|
795
|
-
.CodeMirror-lint-mark-warning {
|
|
796
|
-
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAADCAYAAAC09K7GAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9sJFhQXEbhTg7YAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAAMklEQVQI12NkgIIvJ3QXMjAwdDN+OaEbysDA4MPAwNDNwMCwiOHLCd1zX07o6kBVGQEAKBANtobskNMAAAAASUVORK5CYII=);
|
|
797
|
-
}
|
|
798
|
-
|
|
799
|
-
.CodeMirror-lint-mark-error {
|
|
800
|
-
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAADCAYAAAC09K7GAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9sJDw4cOCW1/KIAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAAHElEQVQI12NggIL/DAz/GdA5/xkY/qPKMDAwAADLZwf5rvm+LQAAAABJRU5ErkJggg==);
|
|
801
|
-
}
|
|
802
|
-
|
|
803
|
-
.CodeMirror-lint-marker {
|
|
804
|
-
background-position: center center;
|
|
805
|
-
background-repeat: no-repeat;
|
|
806
|
-
cursor: pointer;
|
|
807
|
-
display: inline-block;
|
|
808
|
-
height: 16px;
|
|
809
|
-
width: 16px;
|
|
810
|
-
vertical-align: middle;
|
|
811
|
-
position: relative;
|
|
812
|
-
}
|
|
813
|
-
|
|
814
|
-
.CodeMirror-lint-message {
|
|
815
|
-
padding-left: 18px;
|
|
816
|
-
background-position: top left;
|
|
817
|
-
background-repeat: no-repeat;
|
|
818
|
-
}
|
|
819
|
-
|
|
820
|
-
.CodeMirror-lint-marker-warning, .CodeMirror-lint-message-warning {
|
|
821
|
-
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAANlBMVEX/uwDvrwD/uwD/uwD/uwD/uwD/uwD/uwD/uwD6twD/uwAAAADurwD2tQD7uAD+ugAAAAD/uwDhmeTRAAAADHRSTlMJ8mN1EYcbmiixgACm7WbuAAAAVklEQVR42n3PUQqAIBBFUU1LLc3u/jdbOJoW1P08DA9Gba8+YWJ6gNJoNYIBzAA2chBth5kLmG9YUoG0NHAUwFXwO9LuBQL1giCQb8gC9Oro2vp5rncCIY8L8uEx5ZkAAAAASUVORK5CYII=);
|
|
822
|
-
}
|
|
823
|
-
|
|
824
|
-
.CodeMirror-lint-marker-error, .CodeMirror-lint-message-error {
|
|
825
|
-
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAHlBMVEW7AAC7AACxAAC7AAC7AAAAAAC4AAC5AAD///+7AAAUdclpAAAABnRSTlMXnORSiwCK0ZKSAAAATUlEQVR42mWPOQ7AQAgDuQLx/z8csYRmPRIFIwRGnosRrpamvkKi0FTIiMASR3hhKW+hAN6/tIWhu9PDWiTGNEkTtIOucA5Oyr9ckPgAWm0GPBog6v4AAAAASUVORK5CYII=);
|
|
826
|
-
}
|
|
827
|
-
|
|
828
|
-
.CodeMirror-lint-marker-multiple {
|
|
829
|
-
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAMAAADzjKfhAAAACVBMVEUAAAAAAAC/v7914kyHAAAAAXRSTlMAQObYZgAAACNJREFUeNo1ioEJAAAIwmz/H90iFFSGJgFMe3gaLZ0od+9/AQZ0ADosbYraAAAAAElFTkSuQmCC);
|
|
830
|
-
background-repeat: no-repeat;
|
|
831
|
-
background-position: right bottom;
|
|
832
|
-
width: 100%; height: 100%;
|
|
833
|
-
}
|
|
834
|
-
|
|
835
|
-
.CodeMirror-lint-line-error {
|
|
836
|
-
background-color: rgba(183, 76, 81, 0.08);
|
|
837
|
-
}
|
|
838
|
-
|
|
839
|
-
.CodeMirror-lint-line-warning {
|
|
840
|
-
background-color: rgba(255, 211, 0, 0.1);
|
|
841
|
-
}
|
|
842
|
-
|
|
843
|
-
/*!*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
844
|
-
!*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-12.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-12.use[2]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/AimPopup/index.vue?vue&type=style&index=0&id=94998f4c&scoped=true&lang=css ***!
|
|
845
|
-
\*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
|
|
846
|
-
|
|
847
|
-
.aim-popup[data-v-94998f4c] .aim-drawer-footer {
|
|
848
|
-
display: flex;
|
|
849
|
-
align-items: center;
|
|
850
|
-
justify-content: flex-end;
|
|
851
|
-
overflow: hidden;
|
|
852
|
-
position: sticky;
|
|
853
|
-
bottom: 0;
|
|
854
|
-
z-index: 100;
|
|
855
|
-
}
|
|
856
|
-
.aim-popup[data-v-94998f4c] .aim-drawer-header {
|
|
857
|
-
display: flex;
|
|
858
|
-
align-items: center;
|
|
859
|
-
justify-content: flex-end;
|
|
860
|
-
overflow: hidden;
|
|
861
|
-
position: sticky;
|
|
862
|
-
top: 0;
|
|
863
|
-
z-index: 100;
|
|
864
|
-
}
|
|
865
|
-
.aim-popup[data-v-94998f4c] .el-drawer {
|
|
866
|
-
position: absolute;
|
|
867
|
-
box-sizing: border-box;
|
|
868
|
-
background-color: #fff;
|
|
869
|
-
display: flex;
|
|
870
|
-
flex-direction: column;
|
|
871
|
-
overflow: hidden
|
|
872
|
-
}
|
|
873
|
-
.aim-popup[data-v-94998f4c] .el-drawer__header {
|
|
874
|
-
align-items: center;
|
|
875
|
-
display: flex;
|
|
876
|
-
margin-bottom: 9px;
|
|
877
|
-
padding: 9px 9px 0;
|
|
878
|
-
font-weight: 700;
|
|
879
|
-
}
|
|
880
|
-
.aim-popup[data-v-94998f4c] .el-drawer__header > :first-child {
|
|
881
|
-
flex: 1
|
|
882
|
-
}
|
|
883
|
-
.aim-popup[data-v-94998f4c] .el-drawer__title {
|
|
884
|
-
margin: 0;
|
|
885
|
-
flex: 1;
|
|
886
|
-
line-height: inherit;
|
|
887
|
-
font-size: 1rem;
|
|
888
|
-
}
|
|
889
|
-
.aim-popup[data-v-94998f4c] .el-drawer__close-btn {
|
|
890
|
-
border: none;
|
|
891
|
-
cursor: pointer;
|
|
892
|
-
font-size: 20px;
|
|
893
|
-
color: inherit;
|
|
894
|
-
background-color: transparent
|
|
895
|
-
}
|
|
896
|
-
.aim-popup[data-v-94998f4c] .el-drawer__body {
|
|
897
|
-
overflow: auto;
|
|
898
|
-
padding: 3px;
|
|
899
|
-
}
|
|
900
|
-
.aim-popup[data-v-94998f4c] .el-dialog__body {
|
|
901
|
-
overflow: auto;
|
|
902
|
-
padding: 3px;
|
|
903
|
-
}
|
|
904
|
-
.aim-popup[data-v-94998f4c] .el-drawer__body > * {
|
|
905
|
-
box-sizing: border-box
|
|
906
|
-
}
|
|
907
|
-
.aim-popup[data-v-94998f4c] .el-drawer__container {
|
|
908
|
-
position: relative;
|
|
909
|
-
left: 0;
|
|
910
|
-
right: 0;
|
|
911
|
-
top: 0;
|
|
912
|
-
bottom: 0;
|
|
913
|
-
height: 100%;
|
|
914
|
-
width: 100%
|
|
915
|
-
}
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
/*!******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
919
|
-
!*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-12.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-12.use[2]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/AimFullScreenDialog/index.vue?vue&type=style&index=0&id=f30f622a&lang=css ***!
|
|
920
|
-
\******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
|
|
921
|
-
|
|
922
|
-
.hidden {
|
|
923
|
-
display: none;
|
|
924
|
-
}
|
|
925
|
-
.content-container {
|
|
926
|
-
}
|
|
927
|
-
.sticky-button {
|
|
928
|
-
position: sticky;
|
|
929
|
-
top: 0;
|
|
930
|
-
z-index: 1000;
|
|
931
|
-
background: white; /* 保证按钮所在区域背景色 */
|
|
932
|
-
padding: 10px 0; /* 可以根据需要调整 */
|
|
933
|
-
}
|
|
934
|
-
.full-screen-dialog .CodeMirror {
|
|
935
|
-
height: calc(100vh - 150px) !important;
|
|
936
|
-
}
|
|
937
|
-
.full-screen-dialog .jsoneditor-box {
|
|
938
|
-
height: calc(100vh - 150px) !important;
|
|
939
|
-
}
|
|
940
|
-
.full-screen-dialog .el-table{
|
|
941
|
-
height: calc(100vh - 200px) !important;
|
|
942
|
-
}
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
/*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
946
|
-
!*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/AimCodeMirror/index.vue?vue&type=style&index=0&id=3cf33718&lang=scss&scoped=true ***!
|
|
947
|
-
\*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
|
|
948
|
-
.codemirror-wrapper[data-v-3cf33718] .CodeMirror {
|
|
949
|
-
font-size: var(--font-size) !important;
|
|
950
|
-
line-height: var(--line-height) !important;
|
|
951
|
-
height: var(--height) !important;
|
|
952
|
-
}
|
|
953
|
-
.codemirror-matchhighlight[data-v-3cf33718] {
|
|
954
|
-
background-color: #ae00ae;
|
|
955
|
-
}
|
|
956
|
-
.codemirror-readonly[data-v-3cf33718] {
|
|
957
|
-
border: 1px solid gray;
|
|
958
|
-
}
|
|
959
|
-
.codemirror-editing[data-v-3cf33718] {
|
|
960
|
-
border: 1px solid red;
|
|
961
|
-
}
|
|
962
|
-
.class-lint-error .CodeMirror[data-v-3cf33718] {
|
|
963
|
-
background-color: #F8F8F8;
|
|
964
|
-
border: 1px solid #eee;
|
|
965
|
-
border-radius: 3px;
|
|
966
|
-
}
|
|
967
|
-
/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
968
|
-
!*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-12.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-12.use[2]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/cells/CellDropdown.vue?vue&type=style&index=0&id=e0d9597e&scoped=true&lang=css ***!
|
|
969
|
-
\***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
|
|
970
|
-
|
|
971
|
-
.aim-dropdown-menu[data-v-e0d9597e] {
|
|
972
|
-
display: inline-block;
|
|
973
|
-
height: 100%;
|
|
974
|
-
font-size: 18px;
|
|
975
|
-
vertical-align: text-bottom;
|
|
976
|
-
&.hover-effect[data-v-e0d9597e]:not(.no-hover) {
|
|
977
|
-
cursor: pointer;
|
|
978
|
-
transition: background .3s;
|
|
979
|
-
&[data-v-e0d9597e]:hover {
|
|
980
|
-
background: rgba(0, 0, 0, .025)
|
|
981
|
-
}
|
|
982
|
-
}
|
|
983
|
-
}
|
|
984
|
-
|
|
985
|
-
/*!*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
986
|
-
!*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/AimTinymce/components/EditorImage.vue?vue&type=style&index=0&id=dbb8090c&lang=scss&scoped=true ***!
|
|
987
|
-
\*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
|
|
988
|
-
.editor-slide-upload[data-v-dbb8090c] {
|
|
989
|
-
margin-bottom: 20px;
|
|
990
|
-
}
|
|
991
|
-
.editor-slide-upload[data-v-dbb8090c] .el-upload--picture-card {
|
|
992
|
-
width: 100%;
|
|
993
|
-
}
|
|
994
|
-
/*!**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
995
|
-
!*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/AimTinymce/index.vue?vue&type=style&index=0&id=04763c86&lang=scss&scoped=true ***!
|
|
996
|
-
\**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
|
|
997
|
-
.tinymce-container[data-v-04763c86] {
|
|
998
|
-
position: relative;
|
|
999
|
-
line-height: normal;
|
|
1000
|
-
}
|
|
1001
|
-
.tinymce-container[data-v-04763c86] .mce-fullscreen {
|
|
1002
|
-
z-index: 10000;
|
|
1003
|
-
}
|
|
1004
|
-
.tinymce-textarea[data-v-04763c86] {
|
|
1005
|
-
visibility: hidden;
|
|
1006
|
-
z-index: -1;
|
|
1007
|
-
}
|
|
1008
|
-
.editor-custom-btn-container[data-v-04763c86] {
|
|
1009
|
-
position: absolute;
|
|
1010
|
-
right: 4px;
|
|
1011
|
-
top: 4px;
|
|
1012
|
-
/*z-index: 2005;*/
|
|
1013
|
-
}
|
|
1014
|
-
.fullscreen .editor-custom-btn-container[data-v-04763c86] {
|
|
1015
|
-
z-index: 10000;
|
|
1016
|
-
position: fixed;
|
|
1017
|
-
}
|
|
1018
|
-
.editor-upload-btn[data-v-04763c86] {
|
|
1019
|
-
display: inline-block;
|
|
1020
|
-
}
|
|
1021
|
-
/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
1022
|
-
!*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-12.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-12.use[2]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/AimSvgIcon/index.vue?vue&type=style&index=0&id=cba54aaa&scoped=true&lang=css ***!
|
|
1023
|
-
\*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
|
|
1024
|
-
|
|
1025
|
-
.svg-icon[data-v-cba54aaa] {
|
|
1026
|
-
width: 1em;
|
|
1027
|
-
height: 1em;
|
|
1028
|
-
vertical-align: -0.15em;
|
|
1029
|
-
fill: currentColor;
|
|
1030
|
-
overflow: hidden;
|
|
1031
|
-
}
|
|
1032
|
-
.svg-external-icon[data-v-cba54aaa] {
|
|
1033
|
-
background-color: currentColor;
|
|
1034
|
-
-webkit-mask-size: cover!important;
|
|
1035
|
-
mask-size: cover!important;
|
|
1036
|
-
display: inline-block;
|
|
1037
|
-
}
|
|
1038
|
-
|
|
1039
|
-
/*!**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
1040
|
-
!*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-12.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-12.use[2]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/AimIconSelector/index.vue?vue&type=style&index=0&id=1e8fccc0&scoped=true&lang=css ***!
|
|
1041
|
-
\**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
|
|
1042
|
-
|
|
1043
|
-
.icon-body[data-v-1e8fccc0] {
|
|
1044
|
-
width: 100%;
|
|
1045
|
-
padding: 10px;
|
|
1046
|
-
.icon-list[data-v-1e8fccc0] {
|
|
1047
|
-
height: 200px;
|
|
1048
|
-
overflow-y: scroll;
|
|
1049
|
-
div[data-v-1e8fccc0] {
|
|
1050
|
-
height: 30px;
|
|
1051
|
-
line-height: 30px;
|
|
1052
|
-
margin-bottom: -5px;
|
|
1053
|
-
cursor: pointer;
|
|
1054
|
-
width: 33%;
|
|
1055
|
-
float: left;
|
|
1056
|
-
}
|
|
1057
|
-
.element-icon[data-v-1e8fccc0] {
|
|
1058
|
-
display: inline-block;
|
|
1059
|
-
vertical-align: -0.6em;
|
|
1060
|
-
fill: currentColor;
|
|
1061
|
-
overflow: hidden;
|
|
1062
|
-
}
|
|
1063
|
-
.svn-icon[data-v-1e8fccc0] {
|
|
1064
|
-
display: inline-block;
|
|
1065
|
-
vertical-align: -0.15em;
|
|
1066
|
-
fill: currentColor;
|
|
1067
|
-
overflow: hidden;
|
|
1068
|
-
}
|
|
1069
|
-
}
|
|
1070
|
-
}
|
|
1071
|
-
|
|
1072
|
-
/*!*******************************************************************************************************************************************************************************************************!*\
|
|
1073
|
-
!*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-14.use[1]!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-14.use[2]!./node_modules/vue-select-image/dist/vue-select-image.css ***!
|
|
1074
|
-
\*******************************************************************************************************************************************************************************************************/
|
|
1075
|
-
.vue-select-image__wrapper{overflow:auto;list-style-image:none;list-style-position:outside;list-style-type:none;padding:0;margin:0}.vue-select-image__item{margin:0 12px 12px 0;float:left}.vue-select-image__thumbnail{cursor:pointer;padding:6px;display:block;padding:4px;line-height:20px;border:1px solid #ddd;border-radius:4px;box-shadow:0 1px 3px rgba(0,0,0,.055);transition:all .2s ease-in-out}.vue-select-image__thumbnail--selected{background:#08c}.vue-select-image__thumbnail--disabled{background:#b9b9b9;cursor:not-allowed}.vue-select-image__thumbnail--disabled>.vue-select-image__img{opacity:.5}.vue-select-image__img{-webkit-user-drag:none;display:block;max-width:100%;margin-right:auto;margin-left:auto}.vue-select-image__lbl{line-height:3}@media only screen and (min-width:1200px){.vue-select-image__item{margin-left:30px}}
|
|
1076
|
-
/*!********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
1077
|
-
!*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-12.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-12.use[2]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/cells/CellInput.vue?vue&type=style&index=0&id=0a03c16c&scoped=true&lang=css ***!
|
|
1078
|
-
\********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
|
|
1079
|
-
|
|
1080
|
-
.cell-input-with-width[data-v-0a03c16c] .el-input {
|
|
1081
|
-
width: var(--input-width) !important;
|
|
1082
|
-
}
|
|
1083
|
-
|
|
1084
|
-
/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
1085
|
-
!*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-12.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-12.use[2]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/cells/CellPassword.vue?vue&type=style&index=0&id=434b74cb&scoped=true&lang=css ***!
|
|
1086
|
-
\***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
|
|
1087
|
-
|
|
1088
|
-
.cell-input-with-width[data-v-434b74cb] .el-input {
|
|
1089
|
-
width: var(--input-width) !important;
|
|
1090
|
-
}
|
|
1091
|
-
|
|
1092
|
-
/*!***************************************************************************************************************************************************************************************************!*\
|
|
1093
|
-
!*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-14.use[1]!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-14.use[2]!./node_modules/vue-slider-component/theme/default.css ***!
|
|
1094
|
-
\***************************************************************************************************************************************************************************************************/
|
|
1095
|
-
/* component style */
|
|
1096
|
-
.vue-slider-disabled {
|
|
1097
|
-
opacity: 0.5;
|
|
1098
|
-
cursor: not-allowed;
|
|
1099
|
-
}
|
|
1100
|
-
|
|
1101
|
-
/* rail style */
|
|
1102
|
-
.vue-slider-rail {
|
|
1103
|
-
background-color: #ccc;
|
|
1104
|
-
border-radius: 15px;
|
|
1105
|
-
}
|
|
1106
|
-
|
|
1107
|
-
/* process style */
|
|
1108
|
-
.vue-slider-process {
|
|
1109
|
-
background-color: #3498db;
|
|
1110
|
-
border-radius: 15px;
|
|
1111
|
-
}
|
|
1112
|
-
|
|
1113
|
-
/* mark style */
|
|
1114
|
-
.vue-slider-mark {
|
|
1115
|
-
z-index: 4;
|
|
1116
|
-
}
|
|
1117
|
-
.vue-slider-mark:first-child .vue-slider-mark-step, .vue-slider-mark:last-child .vue-slider-mark-step {
|
|
1118
|
-
display: none;
|
|
1119
|
-
}
|
|
1120
|
-
.vue-slider-mark-step {
|
|
1121
|
-
width: 100%;
|
|
1122
|
-
height: 100%;
|
|
1123
|
-
border-radius: 50%;
|
|
1124
|
-
background-color: rgba(0, 0, 0, 0.16);
|
|
1125
|
-
}
|
|
1126
|
-
.vue-slider-mark-label {
|
|
1127
|
-
font-size: 14px;
|
|
1128
|
-
white-space: nowrap;
|
|
1129
|
-
}
|
|
1130
|
-
/* dot style */
|
|
1131
|
-
.vue-slider-dot-handle {
|
|
1132
|
-
cursor: pointer;
|
|
1133
|
-
width: 100%;
|
|
1134
|
-
height: 100%;
|
|
1135
|
-
border-radius: 50%;
|
|
1136
|
-
background-color: #fff;
|
|
1137
|
-
box-sizing: border-box;
|
|
1138
|
-
box-shadow: 0.5px 0.5px 2px 1px rgba(0, 0, 0, 0.32);
|
|
1139
|
-
}
|
|
1140
|
-
.vue-slider-dot-handle-focus {
|
|
1141
|
-
box-shadow: 0px 0px 1px 2px rgba(52, 152, 219, 0.36);
|
|
1142
|
-
}
|
|
1143
|
-
|
|
1144
|
-
.vue-slider-dot-handle-disabled {
|
|
1145
|
-
cursor: not-allowed;
|
|
1146
|
-
background-color: #ccc;
|
|
1147
|
-
}
|
|
1148
|
-
|
|
1149
|
-
.vue-slider-dot-tooltip-inner {
|
|
1150
|
-
font-size: 14px;
|
|
1151
|
-
white-space: nowrap;
|
|
1152
|
-
padding: 2px 5px;
|
|
1153
|
-
min-width: 20px;
|
|
1154
|
-
text-align: center;
|
|
1155
|
-
color: #fff;
|
|
1156
|
-
border-radius: 5px;
|
|
1157
|
-
border-color: #3498db;
|
|
1158
|
-
background-color: #3498db;
|
|
1159
|
-
box-sizing: content-box;
|
|
1160
|
-
}
|
|
1161
|
-
.vue-slider-dot-tooltip-inner::after {
|
|
1162
|
-
content: "";
|
|
1163
|
-
position: absolute;
|
|
1164
|
-
}
|
|
1165
|
-
.vue-slider-dot-tooltip-inner-top::after {
|
|
1166
|
-
top: 100%;
|
|
1167
|
-
left: 50%;
|
|
1168
|
-
transform: translate(-50%, 0);
|
|
1169
|
-
height: 0;
|
|
1170
|
-
width: 0;
|
|
1171
|
-
border-color: transparent;
|
|
1172
|
-
border-style: solid;
|
|
1173
|
-
border-width: 5px;
|
|
1174
|
-
border-top-color: inherit;
|
|
1175
|
-
}
|
|
1176
|
-
.vue-slider-dot-tooltip-inner-bottom::after {
|
|
1177
|
-
bottom: 100%;
|
|
1178
|
-
left: 50%;
|
|
1179
|
-
transform: translate(-50%, 0);
|
|
1180
|
-
height: 0;
|
|
1181
|
-
width: 0;
|
|
1182
|
-
border-color: transparent;
|
|
1183
|
-
border-style: solid;
|
|
1184
|
-
border-width: 5px;
|
|
1185
|
-
border-bottom-color: inherit;
|
|
1186
|
-
}
|
|
1187
|
-
.vue-slider-dot-tooltip-inner-left::after {
|
|
1188
|
-
left: 100%;
|
|
1189
|
-
top: 50%;
|
|
1190
|
-
transform: translate(0, -50%);
|
|
1191
|
-
height: 0;
|
|
1192
|
-
width: 0;
|
|
1193
|
-
border-color: transparent;
|
|
1194
|
-
border-style: solid;
|
|
1195
|
-
border-width: 5px;
|
|
1196
|
-
border-left-color: inherit;
|
|
1197
|
-
}
|
|
1198
|
-
.vue-slider-dot-tooltip-inner-right::after {
|
|
1199
|
-
right: 100%;
|
|
1200
|
-
top: 50%;
|
|
1201
|
-
transform: translate(0, -50%);
|
|
1202
|
-
height: 0;
|
|
1203
|
-
width: 0;
|
|
1204
|
-
border-color: transparent;
|
|
1205
|
-
border-style: solid;
|
|
1206
|
-
border-width: 5px;
|
|
1207
|
-
border-right-color: inherit;
|
|
1208
|
-
}
|
|
1209
|
-
|
|
1210
|
-
.vue-slider-dot-tooltip-wrapper {
|
|
1211
|
-
opacity: 0;
|
|
1212
|
-
transition: all 0.3s;
|
|
1213
|
-
}
|
|
1214
|
-
.vue-slider-dot-tooltip-wrapper-show {
|
|
1215
|
-
opacity: 1;
|
|
1216
|
-
}
|
|
1217
|
-
|
|
1218
|
-
/*!******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
1219
|
-
!*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/AimSliderInput/index.vue?vue&type=style&index=0&id=4a5b4ed2&lang=scss ***!
|
|
1220
|
-
\******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
|
|
1221
|
-
.___slider-input {
|
|
1222
|
-
display: flex;
|
|
1223
|
-
align-items: center;
|
|
1224
|
-
width: 100%;
|
|
1225
|
-
}
|
|
1226
|
-
.___slider-input .el-slider {
|
|
1227
|
-
flex: 1;
|
|
1228
|
-
margin-right: 20px;
|
|
1229
|
-
}
|
|
1230
|
-
.___slider-input .vue-slider {
|
|
1231
|
-
flex: 1;
|
|
1232
|
-
margin-right: 20px;
|
|
1233
|
-
}
|
|
1234
|
-
.___slider-input .el-input-number {
|
|
1235
|
-
width: 120px;
|
|
1236
|
-
}
|
|
1237
|
-
.___slider-input .el-input {
|
|
1238
|
-
width: 120px;
|
|
1239
|
-
}
|
|
1240
|
-
.___slider-input .el-input ::v-deep .input {
|
|
1241
|
-
text-align: center;
|
|
1242
|
-
}
|
|
1243
|
-
.___slider-input .merge-tooltip {
|
|
1244
|
-
position: absolute;
|
|
1245
|
-
left: 50%;
|
|
1246
|
-
bottom: 100%;
|
|
1247
|
-
transform: translate(-50%, -15px);
|
|
1248
|
-
}
|
|
1249
|
-
.___slider-input .vue-slider-process {
|
|
1250
|
-
background-color: #3498db !important;
|
|
1251
|
-
}
|
|
1252
|
-
.___slider-input .custom-step {
|
|
1253
|
-
width: 100%;
|
|
1254
|
-
height: 100%;
|
|
1255
|
-
border-radius: 50%;
|
|
1256
|
-
box-shadow: 0 0 0 1px #ccc;
|
|
1257
|
-
background-color: #fff;
|
|
1258
|
-
}
|
|
1259
|
-
.___slider-input .custom-step.active {
|
|
1260
|
-
box-shadow: 0 0 0 1px #3498db;
|
|
1261
|
-
background-color: #3498db;
|
|
1262
|
-
}
|
|
1263
|
-
/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
1264
|
-
!*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-12.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-12.use[2]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/AimTable/Column/ColumnHeader.vue?vue&type=style&index=0&id=a4b24974&lang=css ***!
|
|
1265
|
-
\*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
|
|
1266
|
-
|
|
1267
|
-
.aim-required-icon {
|
|
1268
|
-
display: inline-block;
|
|
1269
|
-
color: #f56c6c;
|
|
1270
|
-
width: 0.4em;
|
|
1271
|
-
height: 1em;
|
|
1272
|
-
line-height: 1em;
|
|
1273
|
-
margin-right: 0.2em;
|
|
1274
|
-
font-weight: normal;
|
|
1275
|
-
font-size: 15px;
|
|
1276
|
-
position: relative;
|
|
1277
|
-
&:before {
|
|
1278
|
-
content: "*";
|
|
1279
|
-
position: absolute;
|
|
1280
|
-
left: 0;
|
|
1281
|
-
top: 0.4em;
|
|
1282
|
-
}
|
|
1283
|
-
}
|
|
1284
|
-
.aim-title-sub-container {
|
|
1285
|
-
display: inline-block;
|
|
1286
|
-
position: relative;
|
|
1287
|
-
line-height: 1.5; /* 设置行高 */
|
|
1288
|
-
text-align: right; /* 右对齐文本 */
|
|
1289
|
-
white-space: nowrap; /* 防止文字换行 */
|
|
1290
|
-
}
|
|
1291
|
-
.aim-title-sub-main {
|
|
1292
|
-
display: block;
|
|
1293
|
-
}
|
|
1294
|
-
.aim-title-sub-info {
|
|
1295
|
-
position: absolute;
|
|
1296
|
-
font-size: 11px; /* 设置说明信息字号 */
|
|
1297
|
-
bottom: -1.6em; /* 负的字号差值,用于在主文本下方显示 */
|
|
1298
|
-
right: 0; /* 右对齐说明信息 */
|
|
1299
|
-
color: #919191;
|
|
1300
|
-
font-weight: bold;
|
|
1301
|
-
}
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
/*!**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
1305
|
-
!*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/AimFormInput/AimFormItem.vue?vue&type=style&index=0&id=e967a004&lang=scss ***!
|
|
1306
|
-
\**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
|
|
1307
|
-
.aim-form-input-component-flex-end {
|
|
1308
|
-
display: flex;
|
|
1309
|
-
z-index: 10;
|
|
1310
|
-
justify-content: flex-end;
|
|
1311
|
-
}
|
|
1312
|
-
/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
1313
|
-
!*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-12.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-12.use[2]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/AimFormInput/index.vue?vue&type=style&index=0&id=27bb5b14&lang=css ***!
|
|
1314
|
-
\***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
|
|
1315
|
-
|
|
1316
|
-
.aim-component-flex-start {
|
|
1317
|
-
//align-items: start;
|
|
1318
|
-
//justify-content: flex-start;
|
|
1319
|
-
//overflow: hidden;
|
|
1320
|
-
//z-index: 10;
|
|
1321
|
-
}
|
|
1322
|
-
.aim-component-flex-end {
|
|
1323
|
-
@extend .aim-component-flex-start;
|
|
1324
|
-
justify-content: flex-end;
|
|
1325
|
-
}
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
/*!****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
1330
|
-
!*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/AimFormInput/index.vue?vue&type=style&index=1&id=27bb5b14&lang=scss&scoped=true ***!
|
|
1331
|
-
\****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
|
|
1332
|
-
.aim-form-container[data-v-27bb5b14] {
|
|
1333
|
-
height: var(--form-container-height) !important;
|
|
1334
|
-
overflow: auto;
|
|
1335
|
-
}
|
|
1336
|
-
/*!****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
1337
|
-
!*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/AimTable/AimTableSetting/index.vue?vue&type=style&index=0&id=56843954&lang=scss&scoped=true ***!
|
|
1338
|
-
\****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
|
|
1339
|
-
.aim-table-setting-tabs.el-tabs[data-v-56843954] .el-tabs--card {
|
|
1340
|
-
height: calc(100vh - 160px);
|
|
1341
|
-
}
|
|
1342
|
-
.aim-table-setting-tabs.el-tabs[data-v-56843954] .el-tab-pane {
|
|
1343
|
-
height: calc(100vh - 160px);
|
|
1344
|
-
overflow-y: auto;
|
|
1345
|
-
}
|
|
1346
|
-
/*!*******************************************************************************************************************************************************************************************!*\
|
|
1347
|
-
!*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-14.use[1]!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-14.use[2]!./node_modules/splitpanes/dist/splitpanes.css ***!
|
|
1348
|
-
\*******************************************************************************************************************************************************************************************/
|
|
1349
|
-
.splitpanes{display:flex;width:100%;height:100%}.splitpanes--vertical{flex-direction:row}.splitpanes--horizontal{flex-direction:column}.splitpanes--dragging *{-webkit-user-select:none;-moz-user-select:none;user-select:none}.splitpanes__pane{width:100%;height:100%;overflow:hidden}.splitpanes--vertical .splitpanes__pane{transition:width .2s ease-out}.splitpanes--horizontal .splitpanes__pane{transition:height .2s ease-out}.splitpanes--dragging .splitpanes__pane{transition:none}.splitpanes__splitter{touch-action:none}.splitpanes--vertical>.splitpanes__splitter{min-width:1px;cursor:col-resize}.splitpanes--horizontal>.splitpanes__splitter{min-height:1px;cursor:row-resize}.splitpanes.default-theme .splitpanes__pane{background-color:#f2f2f2}.splitpanes.default-theme .splitpanes__splitter{background-color:#fff;box-sizing:border-box;position:relative;flex-shrink:0}.splitpanes.default-theme .splitpanes__splitter:before,.splitpanes.default-theme .splitpanes__splitter:after{content:"";position:absolute;top:50%;left:50%;background-color:#00000026;transition:background-color .3s}.splitpanes.default-theme .splitpanes__splitter:hover:before,.splitpanes.default-theme .splitpanes__splitter:hover:after{background-color:#00000040}.splitpanes.default-theme .splitpanes__splitter:first-child{cursor:auto}.default-theme.splitpanes .splitpanes .splitpanes__splitter{z-index:1}.default-theme.splitpanes--vertical>.splitpanes__splitter,.default-theme .splitpanes--vertical>.splitpanes__splitter{width:7px;border-left:1px solid #eee;margin-left:-1px}.default-theme.splitpanes--vertical>.splitpanes__splitter:before,.default-theme.splitpanes--vertical>.splitpanes__splitter:after,.default-theme .splitpanes--vertical>.splitpanes__splitter:before,.default-theme .splitpanes--vertical>.splitpanes__splitter:after{transform:translateY(-50%);width:1px;height:30px}.default-theme.splitpanes--vertical>.splitpanes__splitter:before,.default-theme .splitpanes--vertical>.splitpanes__splitter:before{margin-left:-2px}.default-theme.splitpanes--vertical>.splitpanes__splitter:after,.default-theme .splitpanes--vertical>.splitpanes__splitter:after{margin-left:1px}.default-theme.splitpanes--horizontal>.splitpanes__splitter,.default-theme .splitpanes--horizontal>.splitpanes__splitter{height:7px;border-top:1px solid #eee;margin-top:-1px}.default-theme.splitpanes--horizontal>.splitpanes__splitter:before,.default-theme.splitpanes--horizontal>.splitpanes__splitter:after,.default-theme .splitpanes--horizontal>.splitpanes__splitter:before,.default-theme .splitpanes--horizontal>.splitpanes__splitter:after{transform:translate(-50%);width:30px;height:1px}.default-theme.splitpanes--horizontal>.splitpanes__splitter:before,.default-theme .splitpanes--horizontal>.splitpanes__splitter:before{margin-top:-2px}.default-theme.splitpanes--horizontal>.splitpanes__splitter:after,.default-theme .splitpanes--horizontal>.splitpanes__splitter:after{margin-top:1px}
|
|
1350
|
-
|
|
1351
|
-
/*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
1352
|
-
!*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/AimTreeView/index.vue?vue&type=style&index=0&id=4974164b&lang=scss ***!
|
|
1353
|
-
\***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
|
|
1354
|
-
.container-for-height {
|
|
1355
|
-
height: calc(100vh - 120px);
|
|
1356
|
-
overflow: auto;
|
|
1357
|
-
}
|
|
1358
|
-
.folder-underline {
|
|
1359
|
-
text-decoration: none;
|
|
1360
|
-
border-bottom: 1px solid gray;
|
|
1361
|
-
}
|
|
1362
|
-
/*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
1363
|
-
!*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-12.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-12.use[2]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/AimCodeDiffWrapper/index.vue?vue&type=style&index=0&id=b3c73b62&scoped=true&lang=css ***!
|
|
1364
|
-
\*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
|
|
1365
|
-
|
|
1366
|
-
.toolbars-container-flex-end[data-v-b3c73b62]{
|
|
1367
|
-
display: flex;
|
|
1368
|
-
align-items: center;
|
|
1369
|
-
font-size: 13px;
|
|
1370
|
-
color: gray;
|
|
1371
|
-
justify-content: flex-end;
|
|
1372
|
-
overflow: hidden;
|
|
1373
|
-
z-index: 10;
|
|
1374
|
-
}
|
|
1375
|
-
|
|
1376
|
-
/*!************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
1377
|
-
!*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/AimTable/index.vue?vue&type=style&index=0&id=0cc300fc&lang=scss ***!
|
|
1378
|
-
\************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
|
|
1379
|
-
.aim-table-shortcuts-button {
|
|
1380
|
-
position: sticky;
|
|
1381
|
-
top: 0;
|
|
1382
|
-
}
|
|
1383
|
-
.aim-component-flex-end {
|
|
1384
|
-
display: flex;
|
|
1385
|
-
align-items: center;
|
|
1386
|
-
overflow: hidden;
|
|
1387
|
-
z-index: 10;
|
|
1388
|
-
justify-content: flex-end;
|
|
1389
|
-
}
|
|
1390
|
-
.el-table.aim-table-tag-font-bold-border-radius-zero .el-tag {
|
|
1391
|
-
font-weight: bold !important;
|
|
1392
|
-
border-radius: 0;
|
|
1393
|
-
}
|
|
1394
|
-
.el-table.aim-table-medium-padding td, .el-table.aim-table-medium-padding th {
|
|
1395
|
-
padding: 6px;
|
|
1396
|
-
}
|
|
1397
|
-
.el-table.aim-table-small-padding td, .el-table.aim-table-small-padding th {
|
|
1398
|
-
padding: 3px;
|
|
1399
|
-
}
|
|
1400
|
-
.el-table.aim-table-mini-padding td, .el-table.aim-table-mini-padding th {
|
|
1401
|
-
padding: 1px;
|
|
1402
|
-
}
|
|
1403
|
-
.aim-table-mini-padding .el-table__header tr,
|
|
1404
|
-
.aim-table-mini-padding .el-table__header th {
|
|
1405
|
-
padding: 0;
|
|
1406
|
-
height: 12px;
|
|
1407
|
-
}
|
|
1408
|
-
.el-table.aim-table-auto-width .cell {
|
|
1409
|
-
white-space: nowrap;
|
|
1410
|
-
width: 100%;
|
|
1411
|
-
overflow-x: hidden;
|
|
1412
|
-
}
|
|
1413
|
-
.el-table.aim-table-auto-width .el-table__body-wrapper {
|
|
1414
|
-
overflow-x: auto;
|
|
1415
|
-
}
|
|
1416
|
-
.sortable-ghost {
|
|
1417
|
-
opacity: 0.8 !important;
|
|
1418
|
-
color: #fff !important;
|
|
1419
|
-
background: #42b983 !important;
|
|
1420
|
-
}
|
|
1421
|
-
.el-table .aim-success-row {
|
|
1422
|
-
background: #dcf5e7;
|
|
1423
|
-
}
|
|
1424
|
-
.el-table .aim-running-row {
|
|
1425
|
-
background: #fff1de;
|
|
1426
|
-
}
|
|
1427
|
-
.el-table .aim-warning-row {
|
|
1428
|
-
background: #fff1de;
|
|
1429
|
-
}
|
|
1430
|
-
.el-table .aim-danger-row {
|
|
1431
|
-
background: #fbe5e1;
|
|
1432
|
-
}
|
|
1433
|
-
/*!************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
|
|
1434
|
-
!*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/AimTable/index.vue?vue&type=style&index=1&id=0cc300fc&lang=scss&scoped=true ***!
|
|
1435
|
-
\************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
|
|
1436
|
-
[data-v-0cc300fc] .aim-table-tree .el-icon-arrow-right:before {
|
|
1437
|
-
content: "+";
|
|
1438
|
-
color: #1890ff;
|
|
1439
|
-
font-size: 20px;
|
|
1440
|
-
font-weight: 700;
|
|
1441
|
-
}
|
|
1442
|
-
[data-v-0cc300fc] .aim-table-tree .el-table__row:not([class*=el-table__row--level-]) td:first-child {
|
|
1443
|
-
padding-left: 24px !important;
|
|
1444
|
-
}
|
|
1445
|
-
[data-v-0cc300fc] .aim-table-tree .el-table__expand-icon .el-icon-arrow-right:before {
|
|
1446
|
-
content: "+";
|
|
1447
|
-
}
|
|
1448
|
-
[data-v-0cc300fc] .aim-table-tree [class*=el-table__row--level] .el-table__expand-icon {
|
|
1449
|
-
transform: rotate(0);
|
|
1450
|
-
}
|
|
1451
|
-
[data-v-0cc300fc] .aim-table-tree .el-table__expand-icon--expanded .el-icon-arrow-right:before {
|
|
1452
|
-
content: "-";
|
|
1453
|
-
}
|
|
1454
|
-
[data-v-0cc300fc] .aim-table-tree .el-table__placeholder::before {
|
|
1455
|
-
margin-left: 20px;
|
|
1456
|
-
}
|
|
1457
|
-
[data-v-0cc300fc] .aim-table-tree-line .el-table__row:is([class*=el-table__row--level-1]) td:first-child {
|
|
1458
|
-
background: repeating-linear-gradient(#999 0 1px, transparent 0px 2px) 20px 0px/1px 100% no-repeat !important;
|
|
1459
|
-
}
|
|
1460
|
-
[data-v-0cc300fc] .aim-table-tree-line .el-table__row:is([class*=el-table__row--level-2]) td:first-child {
|
|
1461
|
-
background: repeating-linear-gradient(#999 0 1px, transparent 0px 2px) 20px 0px/1px 100% no-repeat, repeating-linear-gradient(#999 0 1px, transparent 0px 2px) 37px 0px/1px 100% no-repeat !important;
|
|
1462
|
-
}
|
|
1463
|
-
[data-v-0cc300fc] .aim-table-tree-line .el-table__row:is([class*=el-table__row--level-3]) td:first-child {
|
|
1464
|
-
background: repeating-linear-gradient(#999 0 1px, transparent 0px 2px) 20px 0px/1px 100% no-repeat, repeating-linear-gradient(#999 0 1px, transparent 0px 2px) 37px 0px/1px 100% no-repeat, repeating-linear-gradient(#999 0 1px, transparent 0px 2px) 53px 0px/1px 100% no-repeat !important;
|
|
1465
|
-
}
|
|
1466
|
-
[data-v-0cc300fc] .aim-table-tree-line .el-table__row:is([class*=el-table__row--level-4]) td:first-child {
|
|
1467
|
-
background: repeating-linear-gradient(#999 0 1px, transparent 0px 2px) 20px 0px/1px 100% no-repeat, repeating-linear-gradient(#999 0 1px, transparent 0px 2px) 37px 0px/1px 100% no-repeat, repeating-linear-gradient(#999 0 1px, transparent 0px 2px) 53px 0px/1px 100% no-repeat, repeating-linear-gradient(#999 0 1px, transparent 0px 2px) 68px 0px/1px 100% no-repeat !important;
|
|
1468
|
-
}
|
|
1469
|
-
[data-v-0cc300fc] .aim-table-tree-line .el-table__row:is([class*=el-table__row--level-5]) td:first-child {
|
|
1470
|
-
background: repeating-linear-gradient(#999 0 1px, transparent 0px 2px) 20px 0px/1px 100% no-repeat, repeating-linear-gradient(#999 0 1px, transparent 0px 2px) 37px 0px/1px 100% no-repeat, repeating-linear-gradient(#999 0 1px, transparent 0px 2px) 53px 0px/1px 100% no-repeat, repeating-linear-gradient(#999 0 1px, transparent 0px 2px) 68px 0px/1px 100% no-repeat, repeating-linear-gradient(#999 0 1px, transparent 0px 2px) 83px 0px/1px 100% no-repeat !important;
|
|
1471
|
-
}
|
|
1472
|
-
/*!************************************************************************************************************************************************************************************************************************************************************!*\
|
|
1473
|
-
!*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-24.use[1]!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-24.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-24.use[3]!./src/components/AimElementTreeLine/style.scss ***!
|
|
1474
|
-
\************************************************************************************************************************************************************************************************************************************************************/
|
|
1475
|
-
.el-tree .el-tree-node__content {
|
|
1476
|
-
position: relative;
|
|
1477
|
-
}
|
|
1478
|
-
|
|
1479
|
-
.element-tree-node-label-wrapper {
|
|
1480
|
-
flex: 1;
|
|
1481
|
-
display: flex;
|
|
1482
|
-
align-items: center;
|
|
1483
|
-
}
|
|
1484
|
-
|
|
1485
|
-
.element-tree-node-label {
|
|
1486
|
-
font-size: 12px;
|
|
1487
|
-
}
|
|
1488
|
-
|
|
1489
|
-
.element-tree-node-line-ver {
|
|
1490
|
-
display: block;
|
|
1491
|
-
position: absolute;
|
|
1492
|
-
top: 0;
|
|
1493
|
-
left: 0;
|
|
1494
|
-
height: 100%;
|
|
1495
|
-
border-left: 1px dashed #dcdfe6;
|
|
1496
|
-
}
|
|
1497
|
-
.element-tree-node-line-ver.last-node-isLeaf-line {
|
|
1498
|
-
height: 50%;
|
|
1499
|
-
}
|
|
1500
|
-
|
|
1501
|
-
.element-tree-node-line-hor {
|
|
1502
|
-
display: block;
|
|
1503
|
-
position: absolute;
|
|
1504
|
-
top: 50%;
|
|
1505
|
-
left: 0;
|
|
1506
|
-
height: 0;
|
|
1507
|
-
border-bottom: 1px dashed #dcdfe6;
|
|
1508
|
-
}
|
|
1509
|
-
|
|
1510
|
-
.element-tree-node-label-line {
|
|
1511
|
-
flex: 1;
|
|
1512
|
-
border-top: 1px dashed #dcdfe6;
|
|
1513
|
-
align-self: center;
|
|
1514
|
-
margin: 0 10px;
|
|
1515
|
-
}
|