@lingk/sync 1.1.49 → 1.1.51

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.
@@ -1,1577 +0,0 @@
1
- /* BASICS */
2
-
3
- .CodeMirror {
4
- /* Set height, width, borders, and global font properties here */
5
- font-family: monospace;
6
- height: 300px;
7
- color: black;
8
- direction: ltr;
9
- }
10
-
11
- /* PADDING */
12
-
13
- .CodeMirror-lines {
14
- padding: 4px 0; /* Vertical padding around content */
15
- }
16
- .CodeMirror pre {
17
- padding: 0 4px; /* Horizontal padding of content */
18
- }
19
-
20
- .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
21
- background-color: white; /* The little square between H and V scrollbars */
22
- }
23
-
24
- /* GUTTER */
25
-
26
- .CodeMirror-gutters {
27
- border-right: 1px solid #ddd;
28
- background-color: #f7f7f7;
29
- white-space: nowrap;
30
- }
31
- .CodeMirror-linenumbers {}
32
- .CodeMirror-linenumber {
33
- padding: 0 3px 0 5px;
34
- min-width: 20px;
35
- text-align: right;
36
- color: #999;
37
- white-space: nowrap;
38
- }
39
-
40
- .CodeMirror-guttermarker { color: black; }
41
- .CodeMirror-guttermarker-subtle { color: #999; }
42
-
43
- /* CURSOR */
44
-
45
- .CodeMirror-cursor {
46
- border-left: 1px solid black;
47
- border-right: none;
48
- width: 0;
49
- }
50
- /* Shown when moving in bi-directional text */
51
- .CodeMirror div.CodeMirror-secondarycursor {
52
- border-left: 1px solid silver;
53
- }
54
- .cm-fat-cursor .CodeMirror-cursor {
55
- width: auto;
56
- border: 0 !important;
57
- background: #7e7;
58
- }
59
- .cm-fat-cursor div.CodeMirror-cursors {
60
- z-index: 1;
61
- }
62
- .cm-fat-cursor-mark {
63
- background-color: rgba(20, 255, 20, 0.5);
64
- animation: blink 1.06s steps(1) infinite;
65
- }
66
- .cm-animate-fat-cursor {
67
- width: auto;
68
- border: 0;
69
- animation: blink 1.06s steps(1) infinite;
70
- background-color: #7e7;
71
- }
72
- @keyframes blink {
73
- 0% {}
74
- 50% { background-color: transparent; }
75
- 100% {}
76
- }
77
-
78
- /* Can style cursor different in overwrite (non-insert) mode */
79
- .CodeMirror-overwrite .CodeMirror-cursor {}
80
-
81
- .cm-tab { display: inline-block; text-decoration: inherit; }
82
-
83
- .CodeMirror-rulers {
84
- position: absolute;
85
- left: 0; right: 0; top: -50px; bottom: -20px;
86
- overflow: hidden;
87
- }
88
- .CodeMirror-ruler {
89
- border-left: 1px solid #ccc;
90
- top: 0; bottom: 0;
91
- position: absolute;
92
- }
93
-
94
- /* DEFAULT THEME */
95
-
96
- .cm-s-default .cm-header {color: blue;}
97
- .cm-s-default .cm-quote {color: #090;}
98
- .cm-negative {color: #d44;}
99
- .cm-positive {color: #292;}
100
- .cm-header, .cm-strong {font-weight: bold;}
101
- .cm-em {font-style: italic;}
102
- .cm-link {text-decoration: underline;}
103
- .cm-strikethrough {text-decoration: line-through;}
104
-
105
- .cm-s-default .cm-keyword {color: #708;}
106
- .cm-s-default .cm-atom {color: #219;}
107
- .cm-s-default .cm-number {color: #164;}
108
- .cm-s-default .cm-def {color: #00f;}
109
- .cm-s-default .cm-variable,
110
- .cm-s-default .cm-punctuation,
111
- .cm-s-default .cm-property,
112
- .cm-s-default .cm-operator {}
113
- .cm-s-default .cm-variable-2 {color: #05a;}
114
- .cm-s-default .cm-variable-3, .cm-s-default .cm-type {color: #085;}
115
- .cm-s-default .cm-comment {color: #a50;}
116
- .cm-s-default .cm-string {color: #a11;}
117
- .cm-s-default .cm-string-2 {color: #f50;}
118
- .cm-s-default .cm-meta {color: #555;}
119
- .cm-s-default .cm-qualifier {color: #555;}
120
- .cm-s-default .cm-builtin {color: #30a;}
121
- .cm-s-default .cm-bracket {color: #997;}
122
- .cm-s-default .cm-tag {color: #170;}
123
- .cm-s-default .cm-attribute {color: #00c;}
124
- .cm-s-default .cm-hr {color: #999;}
125
- .cm-s-default .cm-link {color: #00c;}
126
-
127
- .cm-s-default .cm-error {color: #f00;}
128
- .cm-invalidchar {color: #f00;}
129
-
130
- .CodeMirror-composing { border-bottom: 2px solid; }
131
-
132
- /* Default styles for common addons */
133
-
134
- div.CodeMirror span.CodeMirror-matchingbracket {color: #0b0;}
135
- div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #a22;}
136
- .CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); }
137
- .CodeMirror-activeline-background {background: #e8f2ff;}
138
-
139
- /* STOP */
140
-
141
- /* The rest of this file contains styles related to the mechanics of
142
- the editor. You probably shouldn't touch them. */
143
-
144
- .CodeMirror {
145
- position: relative;
146
- overflow: hidden;
147
- background: white;
148
- }
149
-
150
- .CodeMirror-scroll {
151
- overflow: scroll !important; /* Things will break if this is overridden */
152
- /* 30px is the magic margin used to hide the element's real scrollbars */
153
- /* See overflow: hidden in .CodeMirror */
154
- margin-bottom: -30px; margin-right: -30px;
155
- padding-bottom: 30px;
156
- height: 100%;
157
- outline: none; /* Prevent dragging from highlighting the element */
158
- position: relative;
159
- }
160
- .CodeMirror-sizer {
161
- position: relative;
162
- border-right: 30px solid transparent;
163
- }
164
-
165
- /* The fake, visible scrollbars. Used to force redraw during scrolling
166
- before actual scrolling happens, thus preventing shaking and
167
- flickering artifacts. */
168
- .CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
169
- position: absolute;
170
- z-index: 6;
171
- display: none;
172
- }
173
- .CodeMirror-vscrollbar {
174
- right: 0; top: 0;
175
- overflow-x: hidden;
176
- overflow-y: scroll;
177
- }
178
- .CodeMirror-hscrollbar {
179
- bottom: 0; left: 0;
180
- overflow-y: hidden;
181
- overflow-x: scroll;
182
- }
183
- .CodeMirror-scrollbar-filler {
184
- right: 0; bottom: 0;
185
- }
186
- .CodeMirror-gutter-filler {
187
- left: 0; bottom: 0;
188
- }
189
-
190
- .CodeMirror-gutters {
191
- position: absolute; left: 0; top: 0;
192
- min-height: 100%;
193
- z-index: 3;
194
- }
195
- .CodeMirror-gutter {
196
- white-space: normal;
197
- height: 100%;
198
- display: inline-block;
199
- vertical-align: top;
200
- margin-bottom: -30px;
201
- }
202
- .CodeMirror-gutter-wrapper {
203
- position: absolute;
204
- z-index: 4;
205
- background: none !important;
206
- border: none !important;
207
- }
208
- .CodeMirror-gutter-background {
209
- position: absolute;
210
- top: 0; bottom: 0;
211
- z-index: 4;
212
- }
213
- .CodeMirror-gutter-elt {
214
- position: absolute;
215
- cursor: default;
216
- z-index: 4;
217
- }
218
- .CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent }
219
- .CodeMirror-gutter-wrapper ::selection { background-color: transparent }
220
- .CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent }
221
-
222
- .CodeMirror-lines {
223
- cursor: text;
224
- min-height: 1px; /* prevents collapsing before first draw */
225
- }
226
- .CodeMirror pre {
227
- /* Reset some styles that the rest of the page might have set */ border-radius: 0;
228
- border-width: 0;
229
- background: transparent;
230
- font-family: inherit;
231
- font-size: inherit;
232
- margin: 0;
233
- white-space: pre;
234
- word-wrap: normal;
235
- line-height: inherit;
236
- color: inherit;
237
- z-index: 2;
238
- position: relative;
239
- overflow: visible;
240
- -webkit-tap-highlight-color: transparent;
241
- -webkit-font-variant-ligatures: contextual;
242
- font-variant-ligatures: contextual;
243
- }
244
- .CodeMirror-wrap pre {
245
- word-wrap: break-word;
246
- white-space: pre-wrap;
247
- word-break: normal;
248
- }
249
-
250
- .CodeMirror-linebackground {
251
- position: absolute;
252
- left: 0; right: 0; top: 0; bottom: 0;
253
- z-index: 0;
254
- }
255
-
256
- .CodeMirror-linewidget {
257
- position: relative;
258
- z-index: 2;
259
- padding: 0.1px; /* Force widget margins to stay inside of the container */
260
- }
261
-
262
- .CodeMirror-widget {}
263
-
264
- .CodeMirror-rtl pre { direction: rtl; }
265
-
266
- .CodeMirror-code {
267
- outline: none;
268
- }
269
-
270
- /* Force content-box sizing for the elements where we expect it */
271
- .CodeMirror-scroll,
272
- .CodeMirror-sizer,
273
- .CodeMirror-gutter,
274
- .CodeMirror-gutters,
275
- .CodeMirror-linenumber {
276
- box-sizing: content-box;
277
- }
278
-
279
- .CodeMirror-measure {
280
- position: absolute;
281
- width: 100%;
282
- height: 0;
283
- overflow: hidden;
284
- visibility: hidden;
285
- }
286
-
287
- .CodeMirror-cursor {
288
- position: absolute;
289
- pointer-events: none;
290
- }
291
- .CodeMirror-measure pre { position: static; }
292
-
293
- div.CodeMirror-cursors {
294
- visibility: hidden;
295
- position: relative;
296
- z-index: 3;
297
- }
298
- div.CodeMirror-dragcursors {
299
- visibility: visible;
300
- }
301
-
302
- .CodeMirror-focused div.CodeMirror-cursors {
303
- visibility: visible;
304
- }
305
-
306
- .CodeMirror-selected { background: #d9d9d9; }
307
- .CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }
308
- .CodeMirror-crosshair { cursor: crosshair; }
309
- .CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }
310
- .CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; }
311
- .CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }
312
-
313
- .cm-searching {
314
- background-color: #ffa;
315
- background-color: rgba(255, 255, 0, .4);
316
- }
317
-
318
- /* Used to force a border model for a node */
319
- .cm-force-border { padding-right: .1px; }
320
-
321
- @media print {
322
- /* Hide the cursor when printing */
323
- .CodeMirror div.CodeMirror-cursors {
324
- visibility: hidden;
325
- }
326
- }
327
-
328
- /* See issue #2901 */
329
- .cm-tab-wrap-hack:after { content: ''; }
330
-
331
- /* Help users use markselection to safely style text background */
332
- span.CodeMirror-selectedtext { background: none; }
333
- * {
334
- box-sizing: border-box;
335
- }
336
- body{
337
- margin: 0 !important;
338
- padding: 0 !important;
339
- -webkit-font-smoothing: antialiased;
340
- }
341
- aside{
342
- display: inline-block;
343
- vertical-align: top;
344
- }
345
- .rc-time-picker-panel-clear-btn{
346
- display: none;
347
- }
348
- .help-tooltip-pop .tooltip{
349
- border:none !important;
350
- }
351
- .wizard-body{
352
- width:100%;
353
- height: 100%;
354
- }
355
- .wizard-sidebar{
356
- display: inline-block;
357
- height: 100%;
358
- }
359
- .wizard-content{
360
- vertical-align:top;
361
- padding:31px 28px 31px 45px;
362
- display:inline-block;
363
- height: 100%;
364
- overflow-y: scroll;
365
- }
366
- .schema-field {
367
- position: relative;
368
- }
369
- .wizard-map-field {
370
- cursor:pointer;
371
- }
372
- .wizard-map-field:hover {
373
- background: #dfe0e0 !important;
374
- }
375
- .file-table-tbody input:focus{
376
- border-color: transparent;
377
- box-shadow: none;
378
- }
379
- .remove-file-process{
380
- stroke:grey;
381
- height:18px;
382
- width:18px;
383
- margin-top:5px;
384
- cursor: pointer;
385
- margin-left: 3px;
386
- }
387
- .remove-file-process:hover{
388
- stroke:black;
389
- }
390
- .schema-panel{
391
- line-height: 1.4;
392
- margin-bottom: 8px;
393
- color: white;
394
- -webkit-user-select: none;
395
- -moz-user-select: none;
396
- -ms-user-select: none;
397
- user-select: none;
398
- border-radius:4px;
399
- position: relative;
400
- z-index: 6;
401
- }
402
-
403
- .schema-panel-header{
404
- padding: 9px 13px;
405
- font-weight: bold;
406
- height: 50px;
407
- }
408
-
409
- .schema-panel-resource-arrow svg {
410
- fill: #cccccc;
411
- cursor: pointer;
412
- }
413
- .schema-panel-resource-arrow svg:hover {
414
- fill: black;
415
- }
416
- .accordion-panel{
417
- line-height: 1.4;
418
- border-radius: 7px;
419
- margin-bottom: 8px;
420
- -webkit-user-select:none;
421
- -moz-user-select:none;
422
- -ms-user-select:none;
423
- user-select:none;
424
- }
425
- .accordion-panel-header{
426
- color: white;
427
- padding: 9px 13px;
428
- font-weight: bold;
429
- cursor:pointer;
430
- -webkit-user-select: none;
431
- -moz-user-select: none;
432
- -ms-user-select: none;
433
- user-select: none;
434
- height: 50px;
435
- }
436
- .accordion-panel-header-title{
437
- max-width: 275px;
438
- display: inline-block;
439
- overflow-x: ellipsis;
440
- white-space: nowrap;
441
- text-overflow: ellipsis;
442
- overflow: hidden;
443
- }
444
- .accordion-panel-header:hover{
445
- text-decoration: underline;
446
- }
447
-
448
- .accordion-panel-toggle{
449
- vertical-align: top;
450
- float: right;
451
- margin-right: 8px;
452
- }
453
- .accordion-panel-toggle button svg{
454
- top:2px;
455
- }
456
- .accordion-panel-toggle button{
457
- font-weight: bold;
458
- }
459
- .accordion-panel-toggle.join-ok button{
460
- font-weight: normal;
461
- }
462
- .accordion-panel-close{
463
- width: 32px;
464
- height: 32px;
465
- padding-top:6px;
466
- text-align: center;
467
- display: inline-block;
468
- float: right;
469
- border-radius: 50%;
470
- cursor: pointer;
471
- }
472
- .accordion-panel-close:hover{
473
- background: rgba(255,255,255,0.5);
474
- }
475
- .accordion-panel-close svg path{
476
- stroke:white;
477
- }
478
- .accordion-panel-close-disabled{
479
- width: 32px;
480
- height: 32px;
481
- padding-top:6px;
482
- text-align: center;
483
- display: inline-block;
484
- float: right;
485
- border-radius: 50%;
486
- pointer-events: none;
487
- }
488
- .accordion-panel-close-disabled svg path{
489
- stroke:rgba(255,255,255,0.5);
490
- }
491
- .accordion-panel-collapse{
492
- transition: all 0.2s;
493
- }
494
- .accordion-panel-parameters{
495
- display: inline-block;
496
- vertical-align: top;
497
- margin-left: 12px;
498
- margin-top: -5px;
499
- cursor: pointer;
500
- }
501
- .accordion-panel-parameters:hover svg path:nth-child(2){
502
- fill:#DDDDDD;
503
- }
504
- .delete-parameter-row{
505
- display: inline-block;
506
- cursor: pointer;
507
- margin-left: 8px;
508
- }
509
- .delete-parameter-row-svg path{
510
- stroke:grey;
511
- }
512
- .delete-parameter-row-svg:hover path{
513
- stroke:black;
514
- }
515
- .add-param-filter .slds-button{
516
- font-size: 14px;
517
- font-weight: bold;
518
- }
519
- .add-param-filter .slds-button[disabled]{
520
- color:#555;
521
- }
522
-
523
-
524
- .transition{
525
- transition: all 0.2s;
526
- }
527
- .schema-field:first-child {
528
- margin-top: 5px;
529
- }
530
- .schema-accordion-type{
531
- float: right;
532
- color: grey;
533
- cursor: pointer;
534
- -webkit-user-select: none;
535
- -moz-user-select: none;
536
- -ms-user-select: none;
537
- user-select: none;
538
- }
539
- .schema-accordion-type:hover{
540
- float: right;
541
- color: black;
542
- }
543
-
544
- .schema-accordion-section-label{
545
- color: #54698d;
546
- text-transform:uppercase;
547
- letter-spacing:1px;
548
- margin-left:12px;
549
- margin-top:9px;
550
- display:inline-block;
551
- }
552
- .bundle-table-header{
553
- color: #54698d;
554
- text-transform:uppercase;
555
- letter-spacing:1px;
556
- width:100%;
557
- padding:8px 16px;
558
- font-size: 12px;
559
- }
560
- .bundle-table-body{
561
- color: #16325c;
562
- position: relative;
563
- }
564
- .bundle-table-row{
565
- position: relative;
566
- border-bottom: 1px solid rgb(204, 205, 207);
567
- border-top: 1px solid rgb(204, 205, 207);
568
- margin-top:-1px;
569
- padding: 8px 16px 3px 16px;
570
- cursor: pointer;
571
- height:50px;
572
- }
573
- .bundle-table-row:hover{
574
- background:#f4f6f9 !important;
575
-
576
- }
577
- .bundle-table-row:hover:before{
578
- border-top: 5px solid rgb(204, 205, 207);
579
- content: "";
580
- display: block;
581
- position: absolute;
582
- }
583
-
584
- .schema-checkbox{
585
- display: inline-block;
586
- }
587
- .schema-field-bold{
588
- font-weight: bold;
589
- }
590
- .schema-external-key{
591
- cursor: pointer;
592
- opacity: 0;
593
- width: 95%;
594
- position: absolute;
595
- right: 0;
596
- margin-top:2px;
597
- }
598
- .schema-external-key:hover{
599
- opacity: 0.5;
600
- }
601
- .schema-external-key:hover + .schema-checkbox{
602
- font-weight: bold;
603
- }
604
- .schema-group-arrow{
605
- fill:#555555;
606
- cursor:pointer;
607
- height:60px;
608
- width:60px;
609
- }
610
- .schema-group-arrow:hover{
611
- fill:#0070d2;
612
- }
613
- .schema-group-arrow-back{
614
- position: absolute;
615
- left:8px;
616
- top:2px;
617
- -ms-transform:rotate(180deg);
618
- transform:rotate(180deg);
619
- }
620
- .schema-group-arrow-forward{
621
- position: absolute;
622
- left:55px;
623
- top:2px;
624
- }
625
- .schema-groups{
626
- position: absolute;
627
- top:18px;
628
- left:120px;
629
- font-size:20px;
630
- height: 32px;
631
- width:600px;
632
- overflow: hidden;
633
- }
634
- .schema-groups-slider{
635
- transition: all 0.3s;
636
- }
637
- .schema-group-name{
638
- width:600px;
639
- display: inline-block;
640
- overflow: hidden;
641
- white-space: nowrap;
642
- text-overflow: ellipsis;
643
- -webkit-user-select:none;
644
- -moz-user-select:none;
645
- -ms-user-select:none;
646
- user-select:none;
647
- font-weight: bold;
648
- }
649
- .schema-group-dots{
650
- width: 63%;
651
- margin: 28px 0px 0px 120px;
652
- }
653
- .schema-group-dot{
654
- width:6px;
655
- height:7px;
656
- margin:2px;
657
- display: inline-block;
658
- background:#0070d2;
659
- cursor:pointer;
660
- }
661
-
662
- .accordion-group-slider{
663
- transition: all 0.3s;
664
- position: relative;
665
- top:0;
666
- }
667
- .accordion-group{
668
- overflow-y: visible;
669
- display: inline-block;
670
- padding:6px 12px;
671
- position: absolute;
672
- width: 100%;
673
- }
674
- .remove-resource-group{
675
- width: 32px;
676
- height: 32px;
677
- text-align: center;
678
- border-radius: 50%;
679
- padding-top: 6px;
680
- cursor: pointer;
681
- display: inline-block;
682
- vertical-align: top;
683
- float:right;
684
- }
685
- .remove-resource-group-disabled{
686
- width: 32px;
687
- height: 32px;
688
- text-align: center;
689
- border-radius: 50%;
690
- padding-top: 5px;
691
- display: inline-block;
692
- vertical-align: top;
693
- float:right;
694
- margin-top:1px;
695
- }
696
- .remove-resource-group-disabled > svg > path{
697
- stroke-linecap:round;
698
- stroke-width:7;
699
- stroke:#CCCCCC;
700
- }
701
- .connect-resource-group{
702
- width: 33px;
703
- height: 33px;
704
- text-align: center;
705
- border-radius: 50%;
706
- cursor: pointer;
707
- vertical-align: top;
708
- margin-left:26px;
709
- background: rgb(50, 120, 180);
710
- padding-top:5px;
711
- }
712
- .unlinked-connect-resource-group{
713
- background: #d45e5e;
714
- padding-top:6px;
715
- }
716
- .connect-resource-group > svg > path{
717
- fill:white;
718
- }
719
- .connect-resource-group:hover{
720
- background: white;
721
- }
722
- .connect-resource-group:hover > svg > path{
723
- fill:black;
724
- }
725
-
726
- .remove-resource-group:hover + .schema-group-nav{
727
- color: #AA0000;
728
- }
729
- .remove-resource-group > svg > path{
730
- stroke-linecap:round;
731
- stroke-width:7;
732
- stroke:#555555;
733
- }
734
- .remove-resource-group:hover{
735
- background: #c23934;
736
- }
737
- .remove-resource-group:hover > svg > path{
738
- stroke:white;
739
- }
740
- .join-ok{
741
- background: transparent;
742
- border:1px solid transparent;
743
- font-weight: normal;
744
- max-width: 281px;
745
- text-overflow: ellipsis;
746
- white-space: nowrap !important;
747
- overflow: hidden;
748
- /*padding-right:24px !important;*/
749
- position: relative;
750
- }
751
- .join-ok svg{
752
- position: absolute;
753
- right:6px;
754
- top:9px;
755
- }
756
- .transform-data-type{
757
- display: inline-block;
758
- border-radius: 3px;
759
- cursor:pointer;
760
- margin:8px;
761
- padding:2px 5px;
762
- }
763
- .transform-data-type:hover{
764
- border: 1px solid black;
765
- }
766
- .scrolly-wrap{
767
- padding:0px 2px 2px 0px;
768
- overflow-x: hidden;
769
- }
770
- .scrolly{
771
- overflow-y: scroll;
772
- overflow-x: hidden;
773
- text-overflow: ellipsis;
774
- -webkit-user-select:none;
775
- -moz-user-select:none;
776
- -ms-user-select:none;
777
- user-select:none;
778
- }
779
- .scrolly-wrap:hover .scrolly::-webkit-scrollbar {
780
- -webkit-appearance: none;
781
- width: 7px;
782
- }
783
- .scrolly-wrap:hover .scrolly::-webkit-scrollbar-thumb {
784
- border-radius: 4px;
785
- background-color: rgba(0,0,0,.3);
786
- -webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);
787
- }
788
- .x-clear-mapping{
789
- cursor: pointer;
790
- text-align: center;
791
- color: #AA0000;
792
- font-weight: bold;
793
- -webkit-user-select:none;
794
- -moz-user-select:none;
795
- -ms-user-select:none;
796
- user-select:none;
797
- height: 19px;
798
- width: 19px;
799
- display: inline-block;
800
- vertical-align: top;
801
- margin-right:11px;
802
- }
803
- .x-clear-mapping:hover{
804
- color: rgb(212, 63, 58);
805
- -ms-transform:scale(1.3,1.3);
806
- transform:scale(1.3,1.3);
807
- }
808
- .x-clear-mapping:hover + .mapping-entry{
809
- color: grey;
810
- }
811
- .mapping-entry{
812
- display: inline-block;
813
- vertical-align: middle;
814
- max-width: 350px;
815
- white-space: nowrap;
816
- text-overflow: ellipsis;
817
- overflow: hidden;
818
- font-weight: normal;
819
- }
820
- .map-table-transform-icon{
821
- height:19px;
822
- width:24px;
823
- cursor: pointer;
824
- margin-left:27px;
825
- }
826
-
827
- .help-tooltip{
828
- display: inline-block;
829
- margin-left:8px;
830
- position: relative;
831
- }
832
- .help-tooltip-q{
833
- height: 14px;
834
- width: 14px;
835
- background: #54698d;
836
- border-radius: 100%;
837
- color: white;
838
- font-size: 10px;
839
- text-align: center;
840
- cursor: default;
841
- font-weight: bold;
842
- }
843
- .help-tooltip-q:hover{
844
- background: #0070d2;
845
- }
846
- .help-tooltip-pop{
847
- position: absolute;
848
- left:32px;
849
- top:-16px;
850
- }
851
- .help-tooltip-q + .help-tooltip-pop{
852
- display:none;
853
- }
854
- .help-tooltip-q:hover + .help-tooltip-pop{
855
- display:block;
856
- }
857
-
858
- .connect-modal-tabs{
859
- width:100%;
860
- height:41px;
861
- }
862
- .connect-modal-tab{
863
- width:50%;
864
- display: inline-block;
865
- height:100%;
866
- text-align: center;
867
- padding-top:10px;
868
- position: relative;
869
- cursor: pointer;
870
- color: #54698d;
871
- }
872
- .connect-modal-tab-selected{
873
- background: rgb(244, 246, 249);
874
- color: #16325c;
875
- }
876
- .connect-modal-tab-bar{
877
- width:100%;
878
- height:4px;
879
- bottom:0;
880
- left:0;
881
- position: absolute;
882
- display: none;
883
- }
884
- .connect-modal-tab-selected .connect-modal-tab-bar{
885
- display: block;
886
- }
887
- .connect-modal-tab:hover{
888
- background: rgb(244, 246, 249);
889
- color: #16325c;
890
- }
891
- .external-keys-row{
892
- border-bottom: 1px solid #CCCCCC;
893
- padding:8px 0;
894
- position:relative;
895
- }
896
- .external-keys-column{
897
- display: inline-block;
898
- width:47%;
899
- text-align: center;
900
- }
901
- .delete-external-key-row{
902
- position: absolute;
903
- right:8px;
904
- top:13px;
905
- cursor:pointer;
906
- }
907
- .delete-external-key-svg path{
908
- stroke:grey;
909
- }
910
- .delete-external-key-svg:hover path{
911
- stroke:black;
912
- }
913
-
914
-
915
- /* ANIMATIONS */
916
-
917
- .panel-enter{
918
- opacity: 0;
919
- max-height: 0px;
920
- }
921
- .panel-enter-active{
922
- opacity: 1;
923
- max-height:350px;
924
- }
925
- .panel-leave{
926
- opacity: 1;
927
- max-height:350px;
928
- }
929
- .panel-leave-active{
930
- opacity: 0;
931
- max-height:0px;
932
- }
933
- .enable-delete{
934
- position: absolute;
935
- top:6px;
936
- left: 500px;
937
- width: 207px;
938
- z-index: 6003;
939
- cursor: pointer;
940
- -webkit-user-select:none;
941
- -moz-user-select:none;
942
- -ms-user-select:none;
943
- user-select:none;
944
- }
945
- .enable-delete span{
946
- float:right;
947
- }
948
- .enable-delete:hover span{
949
- text-decoration: underline;
950
- }
951
- .bundle-mode-options{
952
- width:33%;
953
- height:100%;
954
- background: white;
955
- padding:6px;
956
- border-left:1px solid grey;
957
- position: absolute;
958
- top:0; right:0;
959
- z-index: 6004;
960
- }
961
- .close-bundle-mode-options{
962
- cursor: pointer;
963
- float: right;
964
- margin-right: 5px;
965
- }
966
- .close-bundle-mode-options svg path{
967
- stroke:grey;
968
- }
969
- .close-bundle-mode-options:hover svg path{
970
- stroke:black;
971
- }
972
- .bundle-mode-options-content{
973
- padding:12px 12px;
974
- }
975
-
976
- .bundle-mode-options-enter{
977
- transition: all 0.3s;
978
- -ms-transform:translate(100%);
979
- transform:translate(100%);
980
- }
981
- .bundle-mode-options-leave, .bundle-mode-options-enter-active{
982
- transition: all 0.3s;
983
- -ms-transform:translate(0%);
984
- transform:translate(0%);
985
- }
986
- .bundle-mode-options-leave-active{
987
- -ms-transform:translate(100%);
988
- transform:translate(100%);
989
- }
990
-
991
- .slide-left-enter{
992
- transition: all 0.3s;
993
- -ms-transform:translate(100%);
994
- transform:translate(100%);
995
- }
996
- .slide-left-leave, .slide-left-enter-active{
997
- transition: all 0.3s;
998
- -ms-transform:translate(0%);
999
- transform:translate(0%);
1000
- }
1001
- .slide-left-leave-active{
1002
- -ms-transform:translate(-100%);
1003
- transform:translate(-100%);
1004
- }
1005
- .slide-right-enter{
1006
- transition: all 0.3s;
1007
- -ms-transform:translate(-100%);
1008
- transform:translate(-100%);
1009
- }
1010
- .slide-right-leave, .slide-right-enter-active{
1011
- transition: all 0.3s;
1012
- -ms-transform:translate(0%);
1013
- transform:translate(0%);
1014
- }
1015
- .slide-right-leave-active{
1016
- -ms-transform:translate(100%);
1017
- transform:translate(100%);
1018
- }
1019
-
1020
- .fade-left-enter{
1021
- transition: all 0.3s;
1022
- -ms-transform:translate(10%);
1023
- transform:translate(10%);
1024
- opacity: 0;
1025
- }
1026
- .fade-left-enter-active{
1027
- -ms-transform:translate(0%);
1028
- transform:translate(0%);
1029
- opacity: 1;
1030
- }
1031
- .fade-left-leave{
1032
- transition: all 0.3s;
1033
- -ms-transform:translate(0%);
1034
- transform:translate(0%);
1035
- opacity: 1;
1036
- }
1037
- .fade-left-leave-active{
1038
- -ms-transform:translate(-10%);
1039
- transform:translate(-10%);
1040
- opacity: 0;
1041
- }
1042
- .fade-right-enter{
1043
- transition: all 0.3s;
1044
- -ms-transform:translate(-10%);
1045
- transform:translate(-10%);
1046
- opacity: 0;
1047
- }
1048
- .fade-right-enter-active{
1049
- -ms-transform:translate(0%);
1050
- transform:translate(0%);
1051
- opacity: 1;
1052
- }
1053
- .fade-right-leave{
1054
- transition: all 0.3s;
1055
- -ms-transform:translate(0%);
1056
- transform:translate(0%);
1057
- opacity: 1;
1058
- }
1059
- .fade-right-leave-active{
1060
- -ms-transform:translate(10%);
1061
- transform:translate(10%);
1062
- opacity: 0;
1063
- }
1064
-
1065
-
1066
-
1067
-
1068
- .schema-accordion-collapse{
1069
- overflow: visible;
1070
- height: 78px;
1071
- padding:0 12px;
1072
- }
1073
- .panel-collapse-enter{
1074
- transition: height 0.2s;
1075
- height:0px;
1076
- overflow: hidden;
1077
- }
1078
- .panel-collapse-enter-active{
1079
- height: 78px;
1080
- overflow: hidden;
1081
- }
1082
- .panel-collapse-leave{
1083
- transition: height 0.2s;
1084
- height: 78px;
1085
- overflow: hidden;
1086
- }
1087
- .panel-collapse-leave-active{
1088
- height: 0px;
1089
- overflow: hidden;
1090
- }
1091
-
1092
- .fields-expander{
1093
- transition: all 0.2s;
1094
- overflow: hidden;
1095
- }
1096
- .expander-enter{
1097
- max-height:0px;
1098
- }
1099
- .expander-enter-active{
1100
- max-height: 1200px;
1101
- }
1102
- .expander-leave{
1103
- max-height: 1200px;
1104
- }
1105
- .expander-leave-active{
1106
- max-height: 0px;
1107
- }
1108
-
1109
- .set-duplicate-rules{
1110
- float:right;
1111
- cursor: pointer;
1112
- -webkit-user-select:none;
1113
- -moz-user-select:none;
1114
- -ms-user-select:none;
1115
- user-select:none;
1116
- }
1117
- .set-duplicate-rules:hover{
1118
- text-decoration: underline;
1119
- }
1120
-
1121
- .react-draggable-dragging .schema-panel{
1122
- box-shadow: 2px 1px 4px 2px rgba(0,0,0,.3);
1123
- margin-left:6px;
1124
- z-index: 9999 !important;
1125
- position:relative;
1126
- background:#f4f6f9 !important;
1127
- }
1128
- .react-draggable-dragging .schema-panel-resource-arrow{
1129
- opacity: 0;
1130
- }
1131
- .expander-circle{
1132
- border: 1px solid grey;
1133
- border-radius: 50%;
1134
- width: 13px;
1135
- height: 13px;
1136
- display: inline-block;
1137
- line-height: 12px;
1138
- text-align: center;
1139
- color: grey;
1140
- margin-right:5px;
1141
- }
1142
-
1143
- .filter-step-resource{
1144
- text-decoration: none;
1145
- cursor: pointer;
1146
- font-size: 14px;
1147
- display: inline-block;
1148
- color: white;
1149
- font-weight: bold;
1150
- padding:6px 15px 4px 8px;
1151
- border-top-left-radius: 5px;
1152
- border-top-right-radius: 5px;
1153
- transition: all 0.1s;
1154
- -webkit-user-select: none;
1155
- -moz-user-select: none;
1156
- -ms-user-select: none;
1157
- user-select: none;
1158
- }
1159
- .filter-step-resource span{
1160
- display: inline-block;
1161
- vertical-align: top;
1162
- white-space: nowrap;
1163
- text-overflow: ellipsis;
1164
- overflow: hidden;
1165
- }
1166
- .filter-step-resource svg{
1167
- margin-right:7px;
1168
- margin-top:1px;
1169
- display: inline-block;
1170
- vertical-align: top;
1171
- }
1172
- .filter-step-panel{
1173
- height: 74px;
1174
- transition: all 0.1s;
1175
- overflow: hidden;
1176
- box-sizing: content-box;
1177
- background: #F4F4F4;
1178
- margin-top:-2px;
1179
- border-width: 1px;
1180
- border-style: solid;
1181
- border-color: #337ab7;
1182
- }
1183
- .filter-step-panel-contents{
1184
- margin:10px;
1185
- }
1186
-
1187
- .filter-step-panel-enter{
1188
- max-height:0px;
1189
- }
1190
- .filter-step-panel-enter-active{
1191
- max-height: 74px;
1192
- }
1193
- .filter-step-panel-leave{
1194
- max-height: 74px;
1195
- }
1196
- .filter-step-panel-leave-active{
1197
- max-height: 0px;
1198
- border-color: transparent;
1199
- }
1200
-
1201
- .pass-key-svg{
1202
- fill:grey;
1203
- cursor:pointer;
1204
- margin-left:10px;
1205
- margin-top:5px;
1206
- display: inline-block;
1207
- vertical-align: top;
1208
- }
1209
- .pass-key-svg:hover{
1210
- fill:black !important;
1211
- }
1212
-
1213
- .env-content{
1214
- opacity: 1;
1215
- }
1216
- .env-content-enter{
1217
- opacity: 0;
1218
- }
1219
- .env-content-enter-active{
1220
- transition: opacity 0.25s;
1221
- opacity: 1;
1222
- }
1223
- .env-content-leave{
1224
- opacity: 1;
1225
- }
1226
- .env-content-leave-active{
1227
- opacity: 0;
1228
- }
1229
-
1230
- .env-creds{
1231
- overflow: hidden;
1232
- transition: max-height 0.25s linear;
1233
- }
1234
- .env-creds-enter{
1235
- max-height: 0px;
1236
- }
1237
- .env-creds-enter-active{
1238
- max-height: 333px;
1239
- }
1240
- .env-creds-leave{
1241
- max-height: 333px;
1242
- }
1243
- .env-creds-leave-active{
1244
- max-height: 0px;
1245
- }
1246
-
1247
- .env-section{
1248
- border:1px solid #D7D7D7;
1249
- width:729px;
1250
- line-height: 1.4;
1251
- border-radius: 8px;
1252
- margin-bottom: 18px;
1253
- background: #FCFCFF;
1254
- -webkit-user-select: none;
1255
- -moz-user-select: none;
1256
- -ms-user-select: none;
1257
- user-select: none;
1258
- position: relative;
1259
- z-index: 6;
1260
- margin-left:15px;
1261
- box-shadow: 2px 1px 1px 0px #DDDDDD;
1262
- overflow: hidden;
1263
- }
1264
-
1265
- .env-section:hover{
1266
- box-shadow: 2px 1px 1px 0px #DDDDDD;
1267
-
1268
- }
1269
-
1270
- .integration-box:hover{
1271
-
1272
- }
1273
-
1274
-
1275
- .env-section-header{
1276
- position: relative;
1277
- background: #FCFCFF;
1278
- border-bottom: 1px solid #D7D7D7;
1279
- border-top-left-radius: 8px;
1280
- border-top-right-radius: 8px;
1281
- height:44px;
1282
- z-index: 6;
1283
- cursor: pointer;
1284
- }
1285
- .env-section-header:hover{
1286
- background: #F9F9FF;
1287
- }
1288
- .env-section-icon{
1289
- position: absolute;
1290
- left:15px;
1291
- top:10px;
1292
- }
1293
- .env-section-header-title{
1294
- position: absolute;
1295
- left:48px;
1296
- top:11px;
1297
- font-size: 16px;
1298
- font-weight: bold;
1299
- }
1300
-
1301
- .env-section-body{
1302
- padding:12px 28px 7px 28px;
1303
- background: #FCFCFF;
1304
- }
1305
- .env-inspect-button{
1306
- background: #F9F9FF;
1307
- position: absolute;
1308
- border-left: 1px solid #D7D7D7;
1309
- border-bottom: 1px solid #D7D7D7;
1310
- width:170px;
1311
- height:44px;
1312
- right:0;top:0;
1313
- z-index: 7;
1314
- font-size: 14px;
1315
- padding:12px 20px;
1316
- cursor: pointer;
1317
- }
1318
- .env-inspect-button:hover{
1319
- background: white;
1320
- text-decoration: underline;
1321
- }
1322
- .env-inspect-button svg{
1323
- position: absolute;
1324
- right:15px;
1325
- top:10px;
1326
- fill: #555;
1327
- }
1328
- .env-inspect-button:hover svg{
1329
- fill: #111;
1330
- }
1331
-
1332
- .dropzone{
1333
- width: 200px;
1334
- height: 200px;
1335
- border-width: 2px;
1336
- border: rgb(102, 102, 102);
1337
- border-style: dashed;
1338
- border-radius: 5px;
1339
- cursor: pointer;
1340
- padding: 20px;
1341
- }
1342
- .dropzone:hover{
1343
- background: #FFFFFF;
1344
- }
1345
- .env-creds-json-codemirror{
1346
- border: 1px solid #CACACA;
1347
- height: 238px;
1348
- overflow-y: scroll;
1349
- }
1350
- .env-creds-json-codemirror .CodeMirror{
1351
- height: 236px;
1352
- }
1353
-
1354
- .env-creds-json-codemirror-sftp{
1355
- border: 1px solid #CACACA;
1356
- height: 100px;
1357
- width:300px;
1358
- overflow-y: scroll;
1359
- }
1360
-
1361
- .env-creds-json-codemirror-sftp .CodeMirror{
1362
- height: 236px;
1363
- width:330px;
1364
- }
1365
-
1366
- .schema-accordion-overlay{
1367
- width: 245px;
1368
- min-height: 245px;
1369
- height: 162px;
1370
- top: 0px;
1371
- display: inline-block;
1372
- position: absolute;
1373
- }
1374
- .show-label-or-api-names{
1375
- font-weight: bold;
1376
- cursor: pointer;
1377
- }
1378
- .show-label-or-api-names:hover{
1379
- text-decoration: underline;
1380
- }
1381
- .check-metadata-error{
1382
- background: rgb(234, 90, 90);
1383
- padding: 4px 9px;
1384
- font-weight: bold;
1385
- margin: 12px 12px 0px;
1386
- color: white;
1387
- max-height: 102px;
1388
- overflow: hidden;
1389
- }
1390
- .file-manager-table{
1391
- -webkit-user-select: text;
1392
- -moz-user-select: text;
1393
- -ms-user-select: text;
1394
- user-select: text;
1395
- }
1396
- .file-manager-table th{
1397
- cursor: pointer;
1398
- -webkit-user-select: text;
1399
- -moz-user-select: text;
1400
- -ms-user-select: text;
1401
- user-select: text;
1402
- }
1403
- .delete-flat-file{
1404
- stroke:#AA0000;
1405
- stroke-width:4;
1406
- cursor: pointer;
1407
- }
1408
- .delete-flat-file:hover{
1409
- stroke:rgb(212, 63, 58);
1410
- -ms-transform:scale(1.3,1.3);
1411
- transform:scale(1.3,1.3);
1412
- }
1413
-
1414
- .pass-ssh-toggle{
1415
- cursor:pointer;
1416
- /*display: inline-block;
1417
- margin-left:10px;
1418
- margin-top:5px;*/
1419
- position: absolute;
1420
- /*top: 328px;
1421
- left: 388px;*/
1422
-
1423
- top:59px;
1424
- right:30px;
1425
- width:-webkit-fit-content;
1426
- width:-moz-fit-content;
1427
- width:fit-content;
1428
- }
1429
-
1430
- .rc-time-picker {
1431
- display: inline-block;
1432
- box-sizing: border-box;
1433
- }
1434
- .rc-time-picker * {
1435
- box-sizing: border-box;
1436
- }
1437
- .rc-time-picker-input {
1438
- width: 100%;
1439
- position: relative;
1440
- display: inline-block;
1441
- padding: 4px 7px;
1442
- height: 28px;
1443
- cursor: text;
1444
- font-size: 12px;
1445
- line-height: 1.5;
1446
- color: #666;
1447
- background-color: #fff;
1448
- background-image: none;
1449
- border: 1px solid #d9d9d9;
1450
- border-radius: 6px;
1451
- transition: border 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), box-shadow 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
1452
- }
1453
- .rc-time-picker-panel {
1454
- z-index: 1070;
1455
- width: 170px;
1456
- position: absolute;
1457
- box-sizing: border-box;
1458
- }
1459
- .rc-time-picker-panel * {
1460
- box-sizing: border-box;
1461
- }
1462
- .rc-time-picker-panel-inner {
1463
- display: inline-block;
1464
- position: relative;
1465
- outline: none;
1466
- list-style: none;
1467
- font-size: 12px;
1468
- text-align: left;
1469
- background-color: #fff;
1470
- border-radius: 3px;
1471
- box-shadow: 0 1px 5px #ccc;
1472
- background-clip: padding-box;
1473
- border: 1px solid #ccc;
1474
- line-height: 1.5;
1475
- }
1476
- .rc-time-picker-panel-input {
1477
- margin: 0;
1478
- padding: 0;
1479
- width: 100%;
1480
- cursor: auto;
1481
- line-height: 1.5;
1482
- outline: 0;
1483
- border: 1px solid transparent;
1484
- }
1485
- .rc-time-picker-panel-input-wrap {
1486
- box-sizing: border-box;
1487
- position: relative;
1488
- padding: 6px;
1489
- border-bottom: 1px solid #e9e9e9;
1490
- }
1491
- .rc-time-picker-panel-input-invalid {
1492
- border-color: red;
1493
- }
1494
- .rc-time-picker-panel-clear-btn {
1495
- position: absolute;
1496
- right: 6px;
1497
- cursor: pointer;
1498
- overflow: hidden;
1499
- width: 20px;
1500
- height: 20px;
1501
- text-align: center;
1502
- line-height: 20px;
1503
- top: 6px;
1504
- margin: 0;
1505
- }
1506
- .rc-time-picker-panel-clear-btn:after {
1507
- content: "x";
1508
- font-size: 12px;
1509
- color: #aaa;
1510
- display: inline-block;
1511
- line-height: 1;
1512
- width: 20px;
1513
- transition: color 0.3s ease;
1514
- }
1515
- .rc-time-picker-panel-clear-btn:hover:after {
1516
- color: #666;
1517
- }
1518
- .rc-time-picker-panel-select {
1519
- float: left;
1520
- font-size: 12px;
1521
- border: 1px solid #e9e9e9;
1522
- border-width: 0 1px;
1523
- margin-left: -1px;
1524
- box-sizing: border-box;
1525
- width: 56px;
1526
- overflow: hidden;
1527
- position: relative;
1528
- }
1529
- .rc-time-picker-panel-select-active {
1530
- overflow-y: auto;
1531
- }
1532
- .rc-time-picker-panel-select:first-child {
1533
- border-left: 0;
1534
- margin-left: 0;
1535
- }
1536
- .rc-time-picker-panel-select:last-child {
1537
- border-right: 0;
1538
- }
1539
- .rc-time-picker-panel-select ul {
1540
- list-style: none;
1541
- box-sizing: border-box;
1542
- margin: 0;
1543
- padding: 0;
1544
- width: 100%;
1545
- max-height: 144px;
1546
- }
1547
- .rc-time-picker-panel-select li {
1548
- list-style: none;
1549
- box-sizing: content-box;
1550
- margin: 0;
1551
- padding: 0 0 0 16px;
1552
- width: 100%;
1553
- height: 24px;
1554
- line-height: 24px;
1555
- text-align: left;
1556
- cursor: pointer;
1557
- -webkit-user-select: none;
1558
- -moz-user-select: none;
1559
- -ms-user-select: none;
1560
- user-select: none;
1561
- }
1562
- .rc-time-picker-panel-select li:hover {
1563
- background: #edfaff;
1564
- }
1565
- li.rc-time-picker-panel-select-option-selected {
1566
- background: #edfaff;
1567
- color: #2db7f5;
1568
- }
1569
- li.rc-time-picker-panel-select-option-disabled {
1570
- color: #bfbfbf;
1571
- }
1572
- li.rc-time-picker-panel-select-option-disabled:hover {
1573
- background: transparent;
1574
- cursor: not-allowed;
1575
- }
1576
-
1577
- /*# sourceMappingURL=main.css.map*/