@cloudtower/eagle 0.24.3 → 0.24.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,1500 @@
1
+ @charset "UTF-8";
2
+ /* // basic */
3
+ /* FishEye Color Variables and Functions */
4
+ /*
5
+ --------------------------- Primary Color ---------------------------
6
+ */
7
+ /*
8
+ ---------------------------When necessary to add at any time---------------------------
9
+ */
10
+ /* computed */
11
+ /* blue */
12
+ /* green */
13
+ /* yellow */
14
+ /* red */
15
+ /* palette global token*/
16
+ /* color opaque */
17
+ /* color transparent */
18
+ /* blue transparent */
19
+ /* green transparent */
20
+ /* yellow transparent */
21
+ /* red transparent */
22
+ /* gray transparent */
23
+ /* white transparent */
24
+ /* gradient opaque */
25
+ /* blue radial gradient */
26
+ /* blue linear gradient */
27
+ /* green radial gradient */
28
+ /* yellow radial gradient */
29
+ /* red radial gradient */
30
+ /* gray radial gradient */
31
+ /* white to gray radial gradient */
32
+ /* white to gray linear gradient */
33
+ /* gradient transparent */
34
+ /* secondary palette */
35
+ /* purple radial gradient */
36
+ /* refine alias color */
37
+ /* text */
38
+ /* link */
39
+ /* fill */
40
+ /* fill element */
41
+ /* fill interaction */
42
+ /* stroke */
43
+ /* background */
44
+ /* dim */
45
+ /* box shadow */
46
+ /* fisheye */
47
+ @keyframes rotate {
48
+ from {
49
+ transform: rotate(0deg);
50
+ }
51
+ to {
52
+ transform: rotate(360deg);
53
+ }
54
+ }
55
+ /* // basic */
56
+ /* FishEye Color Variables and Functions */
57
+ /*
58
+ --------------------------- Primary Color ---------------------------
59
+ */
60
+ /*
61
+ ---------------------------When necessary to add at any time---------------------------
62
+ */
63
+ /* computed */
64
+ /* blue */
65
+ /* green */
66
+ /* yellow */
67
+ /* red */
68
+ /* palette global token*/
69
+ /* color opaque */
70
+ /* color transparent */
71
+ /* blue transparent */
72
+ /* green transparent */
73
+ /* yellow transparent */
74
+ /* red transparent */
75
+ /* gray transparent */
76
+ /* white transparent */
77
+ /* gradient opaque */
78
+ /* blue radial gradient */
79
+ /* blue linear gradient */
80
+ /* green radial gradient */
81
+ /* yellow radial gradient */
82
+ /* red radial gradient */
83
+ /* gray radial gradient */
84
+ /* white to gray radial gradient */
85
+ /* white to gray linear gradient */
86
+ /* gradient transparent */
87
+ /* secondary palette */
88
+ /* purple radial gradient */
89
+ /* refine alias color */
90
+ /* text */
91
+ /* link */
92
+ /* fill */
93
+ /* fill element */
94
+ /* fill interaction */
95
+ /* stroke */
96
+ /* background */
97
+ /* dim */
98
+ /* box shadow */
99
+ /* fisheye */
100
+ .loading {
101
+ position: relative;
102
+ display: inline-block;
103
+ opacity: 0;
104
+ animation-name: fadeIn;
105
+ /*
106
+ animation-delay: 0.4s; //FIXME: use a more accurate way to make this happen
107
+ */
108
+ animation-fill-mode: forwards;
109
+ line-height: 23.49px;
110
+ width: 42.6214285714px;
111
+ }
112
+
113
+ .loading__sugar {
114
+ display: inline-block;
115
+ position: relative;
116
+ vertical-align: middle;
117
+ }
118
+ .loading__sugar:before, .loading__sugar:after {
119
+ content: "";
120
+ display: inline-block;
121
+ width: 4.05px;
122
+ height: 4.05px;
123
+ border-radius: 50%;
124
+ position: absolute;
125
+ }
126
+ .loading__sugar:not(:last-child) {
127
+ margin-right: 6.4285714286px;
128
+ }
129
+ .loading__sugar:nth-child(1) {
130
+ animation-delay: -1.869s;
131
+ }
132
+ .loading__sugar:nth-child(1):before {
133
+ animation: animBefore 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
134
+ animation-delay: -1.869s;
135
+ background-color: #0096ff;
136
+ }
137
+ .loading__sugar:nth-child(1):after {
138
+ animation: animAfter 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
139
+ animation-delay: -1.869s;
140
+ background-color: #25c764;
141
+ }
142
+ .loading__sugar:nth-child(2) {
143
+ animation-delay: -3.738s;
144
+ }
145
+ .loading__sugar:nth-child(2):before {
146
+ animation: animBefore 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
147
+ animation-delay: -3.738s;
148
+ background-color: #0096ff;
149
+ }
150
+ .loading__sugar:nth-child(2):after {
151
+ animation: animAfter 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
152
+ animation-delay: -3.738s;
153
+ background-color: #25c764;
154
+ }
155
+ .loading__sugar:nth-child(3) {
156
+ animation-delay: -5.607s;
157
+ }
158
+ .loading__sugar:nth-child(3):before {
159
+ animation: animBefore 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
160
+ animation-delay: -5.607s;
161
+ background-color: #0096ff;
162
+ }
163
+ .loading__sugar:nth-child(3):after {
164
+ animation: animAfter 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
165
+ animation-delay: -5.607s;
166
+ background-color: #25c764;
167
+ }
168
+ .loading__sugar:nth-child(4) {
169
+ animation-delay: -7.476s;
170
+ }
171
+ .loading__sugar:nth-child(4):before {
172
+ animation: animBefore 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
173
+ animation-delay: -7.476s;
174
+ background-color: #0096ff;
175
+ }
176
+ .loading__sugar:nth-child(4):after {
177
+ animation: animAfter 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
178
+ animation-delay: -7.476s;
179
+ background-color: #25c764;
180
+ }
181
+ .loading__sugar:nth-child(5) {
182
+ animation-delay: -9.345s;
183
+ }
184
+ .loading__sugar:nth-child(5):before {
185
+ animation: animBefore 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
186
+ animation-delay: -9.345s;
187
+ background-color: #0096ff;
188
+ }
189
+ .loading__sugar:nth-child(5):after {
190
+ animation: animAfter 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
191
+ animation-delay: -9.345s;
192
+ background-color: #25c764;
193
+ }
194
+ .loading__sugar:nth-child(6) {
195
+ animation-delay: -11.214s;
196
+ }
197
+ .loading__sugar:nth-child(6):before {
198
+ animation: animBefore 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
199
+ animation-delay: -11.214s;
200
+ background-color: #0096ff;
201
+ }
202
+ .loading__sugar:nth-child(6):after {
203
+ animation: animAfter 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
204
+ animation-delay: -11.214s;
205
+ background-color: #25c764;
206
+ }
207
+ .loading__sugar:nth-child(7) {
208
+ animation-delay: -13.083s;
209
+ }
210
+ .loading__sugar:nth-child(7):before {
211
+ animation: animBefore 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
212
+ animation-delay: -13.083s;
213
+ background-color: #0096ff;
214
+ }
215
+ .loading__sugar:nth-child(7):after {
216
+ animation: animAfter 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
217
+ animation-delay: -13.083s;
218
+ background-color: #25c764;
219
+ }
220
+
221
+ @keyframes animBefore {
222
+ 0% {
223
+ transform: translate3d(0, -10.125px, 1px);
224
+ }
225
+ 25% {
226
+ transform: scale(1.2), translateZ(1px);
227
+ }
228
+ 50% {
229
+ transform: translate3d(0, 6.075px, -1px);
230
+ }
231
+ 75% {
232
+ background-color: #e6f5ff;
233
+ transform: scale(0.8), translateZ(-1px);
234
+ }
235
+ 100% {
236
+ transform: translate3d(0, -10.125px, -1px);
237
+ }
238
+ }
239
+ @keyframes animAfter {
240
+ 0% {
241
+ transform: translate3d(0, 6.075px, -1px);
242
+ }
243
+ 25% {
244
+ background-color: #e9f9f0;
245
+ transform: scale(0.8), translateZ(-1px);
246
+ }
247
+ 50% {
248
+ transform: translate3d(0, -10.125px, 1px);
249
+ }
250
+ 75% {
251
+ transform: scale(1.2), translateZ(1px);
252
+ }
253
+ 100% {
254
+ transform: translate3d(0, 6.075px, 1px);
255
+ }
256
+ }
257
+ @keyframes fadeIn {
258
+ from {
259
+ opacity: 0;
260
+ }
261
+ to {
262
+ opacity: 1;
263
+ }
264
+ }
265
+ /* // basic */
266
+ /* FishEye Color Variables and Functions */
267
+ /*
268
+ --------------------------- Primary Color ---------------------------
269
+ */
270
+ /*
271
+ ---------------------------When necessary to add at any time---------------------------
272
+ */
273
+ /* computed */
274
+ /* blue */
275
+ /* green */
276
+ /* yellow */
277
+ /* red */
278
+ /* palette global token*/
279
+ /* color opaque */
280
+ /* color transparent */
281
+ /* blue transparent */
282
+ /* green transparent */
283
+ /* yellow transparent */
284
+ /* red transparent */
285
+ /* gray transparent */
286
+ /* white transparent */
287
+ /* gradient opaque */
288
+ /* blue radial gradient */
289
+ /* blue linear gradient */
290
+ /* green radial gradient */
291
+ /* yellow radial gradient */
292
+ /* red radial gradient */
293
+ /* gray radial gradient */
294
+ /* white to gray radial gradient */
295
+ /* white to gray linear gradient */
296
+ /* gradient transparent */
297
+ /* secondary palette */
298
+ /* purple radial gradient */
299
+ /* refine alias color */
300
+ /* text */
301
+ /* link */
302
+ /* fill */
303
+ /* fill element */
304
+ /* fill interaction */
305
+ /* stroke */
306
+ /* background */
307
+ /* dim */
308
+ /* box shadow */
309
+ /* fisheye */
310
+ .ant-dropdown,
311
+ .ant-dropdown-menu-submenu {
312
+ background: #fff;
313
+ border-radius: 3px;
314
+ min-width: 130px;
315
+ box-sizing: content-box !important;
316
+ box-shadow: none;
317
+ border: none;
318
+ }
319
+ .ant-dropdown > .ant-dropdown-menu,
320
+ .ant-dropdown-menu-submenu > .ant-dropdown-menu {
321
+ border: 1px solid #dfe4eb;
322
+ box-shadow: 0px 8px 16px rgba(129, 138, 153, 0.18), 0px 0px 4px rgba(235, 239, 245, 0.6);
323
+ }
324
+ .ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-item-group-title,
325
+ .ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-item-group-title {
326
+ font-family: Inter;
327
+ font-style: normal;
328
+ font-weight: normal;
329
+ text-transform: uppercase;
330
+ font-feature-settings: "cpsp" on;
331
+ font-size: 12px;
332
+ line-height: 18px;
333
+ padding: 4px 16px;
334
+ color: rgba(129, 138, 153, 0.6);
335
+ }
336
+ .ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-item-group-list,
337
+ .ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-item-group-list {
338
+ margin: 0;
339
+ }
340
+ .ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-item,
341
+ .ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-item {
342
+ min-width: 128px;
343
+ }
344
+ .ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-item,
345
+ .ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-submenu-title,
346
+ .ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-item,
347
+ .ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-submenu-title {
348
+ display: flex;
349
+ padding: 4px 22px 4px 10px;
350
+ font-family: Inter;
351
+ font-style: normal;
352
+ font-weight: normal;
353
+ font-size: 14px;
354
+ line-height: 22px;
355
+ color: #2d3a56;
356
+ }
357
+ .ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-item:not(.ant-dropdown-menu-item-disabled):hover,
358
+ .ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-submenu-title:not(.ant-dropdown-menu-item-disabled):hover,
359
+ .ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-item:not(.ant-dropdown-menu-item-disabled):hover,
360
+ .ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-submenu-title:not(.ant-dropdown-menu-item-disabled):hover {
361
+ background-color: rgba(0, 128, 255, 0.1);
362
+ color: #005ed1;
363
+ }
364
+ .ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-item.ant-dropdown-menu-item-disabled,
365
+ .ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-submenu-title.ant-dropdown-menu-item-disabled,
366
+ .ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-item.ant-dropdown-menu-item-disabled,
367
+ .ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-submenu-title.ant-dropdown-menu-item-disabled {
368
+ opacity: 0.5;
369
+ }
370
+ .ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-item.ant-dropdown-menu-item-danger,
371
+ .ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-submenu-title.ant-dropdown-menu-item-danger,
372
+ .ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-item.ant-dropdown-menu-item-danger,
373
+ .ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-submenu-title.ant-dropdown-menu-item-danger {
374
+ color: #f0483e;
375
+ }
376
+ .ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-item.ant-dropdown-menu-item-danger:hover,
377
+ .ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-submenu-title.ant-dropdown-menu-item-danger:hover,
378
+ .ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-item.ant-dropdown-menu-item-danger:hover,
379
+ .ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-submenu-title.ant-dropdown-menu-item-danger:hover {
380
+ background-color: rgba(240, 72, 62, 0.1);
381
+ color: #f0483e;
382
+ }
383
+ .ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-item.item-danger-disabled,
384
+ .ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-submenu-title.item-danger-disabled,
385
+ .ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-item.item-danger-disabled,
386
+ .ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-submenu-title.item-danger-disabled {
387
+ color: #f0483e;
388
+ opacity: 0.5;
389
+ }
390
+ .ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-item-divider,
391
+ .ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-submenu-title-divider,
392
+ .ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-item-divider,
393
+ .ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-submenu-title-divider {
394
+ margin-left: 0;
395
+ margin-right: 0;
396
+ background: rgba(213, 219, 227, 0.6);
397
+ }
398
+ .ant-dropdown > .ant-dropdown-menu .icon-wrapper,
399
+ .ant-dropdown-menu-submenu > .ant-dropdown-menu .icon-wrapper {
400
+ display: flex;
401
+ width: 100%;
402
+ }
403
+ .ant-dropdown > .ant-dropdown-menu .icon-wrapper .icon-inner,
404
+ .ant-dropdown-menu-submenu > .ant-dropdown-menu .icon-wrapper .icon-inner {
405
+ margin-right: 4px;
406
+ }
407
+
408
+ .ant-dropdown-menu-submenu.ant-dropdown-menu {
409
+ padding: 0;
410
+ }
411
+ .ant-dropdown-menu-submenu.ant-dropdown-menu > [role=menu] {
412
+ margin: 0;
413
+ }
414
+
415
+ .ant-dropdown.no-animation-enter {
416
+ display: block;
417
+ opacity: 1 !important;
418
+ }
419
+
420
+ .ant-dropdown.no-animation-leave {
421
+ display: none;
422
+ }
423
+
424
+ #top_bar {
425
+ display: flex;
426
+ align-items: center;
427
+ justify-content: space-between;
428
+ background: #222;
429
+ color: #cec17e;
430
+ height: 36px;
431
+ padding: 0 4px;
432
+ }
433
+
434
+ #shortcuts {
435
+ padding: 4px 6px;
436
+ color: #eee;
437
+ cursor: pointer;
438
+ outline: none;
439
+ border-radius: 2px;
440
+ border: 0;
441
+ background: #525252;
442
+ position: relative;
443
+ }
444
+
445
+ #shortcuts ul {
446
+ display: none;
447
+ position: absolute;
448
+ right: 0px;
449
+ top: 30px;
450
+ word-wrap: none;
451
+ white-space: nowrap;
452
+ }
453
+
454
+ #shortcuts:hover ul {
455
+ display: inherit;
456
+ }
457
+
458
+ #sendCtrlAltDelButton {
459
+ padding: 4px 6px;
460
+ color: #eee;
461
+ cursor: pointer;
462
+ outline: none;
463
+ border-radius: 2px;
464
+ border: 0;
465
+ background: #525252;
466
+ opacity: 0.8;
467
+ }
468
+
469
+ #sendCtrlAltDelButton:hover {
470
+ opacity: 1;
471
+ }
472
+
473
+ #screen canvas {
474
+ margin-top: 0 !important;
475
+ }
476
+
477
+ /* // basic */
478
+ /* FishEye Color Variables and Functions */
479
+ /*
480
+ --------------------------- Primary Color ---------------------------
481
+ */
482
+ /*
483
+ ---------------------------When necessary to add at any time---------------------------
484
+ */
485
+ /* computed */
486
+ /* blue */
487
+ /* green */
488
+ /* yellow */
489
+ /* red */
490
+ /* palette global token*/
491
+ /* color opaque */
492
+ /* color transparent */
493
+ /* blue transparent */
494
+ /* green transparent */
495
+ /* yellow transparent */
496
+ /* red transparent */
497
+ /* gray transparent */
498
+ /* white transparent */
499
+ /* gradient opaque */
500
+ /* blue radial gradient */
501
+ /* blue linear gradient */
502
+ /* green radial gradient */
503
+ /* yellow radial gradient */
504
+ /* red radial gradient */
505
+ /* gray radial gradient */
506
+ /* white to gray radial gradient */
507
+ /* white to gray linear gradient */
508
+ /* gradient transparent */
509
+ /* secondary palette */
510
+ /* purple radial gradient */
511
+ /* refine alias color */
512
+ /* text */
513
+ /* link */
514
+ /* fill */
515
+ /* fill element */
516
+ /* fill interaction */
517
+ /* stroke */
518
+ /* background */
519
+ /* dim */
520
+ /* box shadow */
521
+ /* fisheye */
522
+ .ant-dropdown,
523
+ .ant-dropdown-menu-submenu {
524
+ background: #fff;
525
+ border-radius: 3px;
526
+ min-width: 130px;
527
+ box-sizing: content-box !important;
528
+ box-shadow: none;
529
+ border: none;
530
+ }
531
+ .ant-dropdown > .ant-dropdown-menu,
532
+ .ant-dropdown-menu-submenu > .ant-dropdown-menu {
533
+ border: 1px solid #dfe4eb;
534
+ box-shadow: 0px 8px 16px rgba(129, 138, 153, 0.18), 0px 0px 4px rgba(235, 239, 245, 0.6);
535
+ }
536
+ .ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-item-group-title,
537
+ .ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-item-group-title {
538
+ font-family: Inter;
539
+ font-style: normal;
540
+ font-weight: normal;
541
+ text-transform: uppercase;
542
+ font-feature-settings: "cpsp" on;
543
+ font-size: 12px;
544
+ line-height: 18px;
545
+ padding: 4px 16px;
546
+ color: rgba(129, 138, 153, 0.6);
547
+ }
548
+ .ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-item-group-list,
549
+ .ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-item-group-list {
550
+ margin: 0;
551
+ }
552
+ .ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-item,
553
+ .ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-item {
554
+ min-width: 128px;
555
+ }
556
+ .ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-item,
557
+ .ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-submenu-title,
558
+ .ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-item,
559
+ .ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-submenu-title {
560
+ display: flex;
561
+ padding: 4px 22px 4px 10px;
562
+ font-family: Inter;
563
+ font-style: normal;
564
+ font-weight: normal;
565
+ font-size: 14px;
566
+ line-height: 22px;
567
+ color: #2d3a56;
568
+ }
569
+ .ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-item:not(.ant-dropdown-menu-item-disabled):hover,
570
+ .ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-submenu-title:not(.ant-dropdown-menu-item-disabled):hover,
571
+ .ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-item:not(.ant-dropdown-menu-item-disabled):hover,
572
+ .ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-submenu-title:not(.ant-dropdown-menu-item-disabled):hover {
573
+ background-color: rgba(0, 128, 255, 0.1);
574
+ color: #005ed1;
575
+ }
576
+ .ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-item.ant-dropdown-menu-item-disabled,
577
+ .ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-submenu-title.ant-dropdown-menu-item-disabled,
578
+ .ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-item.ant-dropdown-menu-item-disabled,
579
+ .ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-submenu-title.ant-dropdown-menu-item-disabled {
580
+ opacity: 0.5;
581
+ }
582
+ .ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-item.ant-dropdown-menu-item-danger,
583
+ .ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-submenu-title.ant-dropdown-menu-item-danger,
584
+ .ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-item.ant-dropdown-menu-item-danger,
585
+ .ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-submenu-title.ant-dropdown-menu-item-danger {
586
+ color: #f0483e;
587
+ }
588
+ .ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-item.ant-dropdown-menu-item-danger:hover,
589
+ .ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-submenu-title.ant-dropdown-menu-item-danger:hover,
590
+ .ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-item.ant-dropdown-menu-item-danger:hover,
591
+ .ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-submenu-title.ant-dropdown-menu-item-danger:hover {
592
+ background-color: rgba(240, 72, 62, 0.1);
593
+ color: #f0483e;
594
+ }
595
+ .ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-item.item-danger-disabled,
596
+ .ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-submenu-title.item-danger-disabled,
597
+ .ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-item.item-danger-disabled,
598
+ .ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-submenu-title.item-danger-disabled {
599
+ color: #f0483e;
600
+ opacity: 0.5;
601
+ }
602
+ .ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-item-divider,
603
+ .ant-dropdown > .ant-dropdown-menu .ant-dropdown-menu-submenu-title-divider,
604
+ .ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-item-divider,
605
+ .ant-dropdown-menu-submenu > .ant-dropdown-menu .ant-dropdown-menu-submenu-title-divider {
606
+ margin-left: 0;
607
+ margin-right: 0;
608
+ background: rgba(213, 219, 227, 0.6);
609
+ }
610
+ .ant-dropdown > .ant-dropdown-menu .icon-wrapper,
611
+ .ant-dropdown-menu-submenu > .ant-dropdown-menu .icon-wrapper {
612
+ display: flex;
613
+ width: 100%;
614
+ }
615
+ .ant-dropdown > .ant-dropdown-menu .icon-wrapper .icon-inner,
616
+ .ant-dropdown-menu-submenu > .ant-dropdown-menu .icon-wrapper .icon-inner {
617
+ margin-right: 4px;
618
+ }
619
+
620
+ .ant-dropdown-menu-submenu.ant-dropdown-menu {
621
+ padding: 0;
622
+ }
623
+ .ant-dropdown-menu-submenu.ant-dropdown-menu > [role=menu] {
624
+ margin: 0;
625
+ }
626
+
627
+ .ant-dropdown.no-animation-enter {
628
+ display: block;
629
+ opacity: 1 !important;
630
+ }
631
+
632
+ .ant-dropdown.no-animation-leave {
633
+ display: none;
634
+ }
635
+
636
+ .disable-select {
637
+ -webkit-touch-callout: none;
638
+ -webkit-user-select: none;
639
+ -khtml-user-select: none;
640
+ -moz-user-select: none;
641
+ -ms-user-select: none;
642
+ user-select: none;
643
+ }
644
+
645
+ .relative {
646
+ position: relative;
647
+ }
648
+
649
+ .drag {
650
+ position: absolute;
651
+ right: -4px;
652
+ top: 0;
653
+ width: 8px;
654
+ z-index: 9;
655
+ height: 100%;
656
+ cursor: col-resize;
657
+ }
658
+
659
+ .table-wrapper {
660
+ position: relative;
661
+ }
662
+ .table-wrapper.table-sticky-header .no-scroll-bar th.cell__action_ {
663
+ right: 0 !important;
664
+ }
665
+ .table-wrapper.table-sticky-header .no-scroll-bar th.ant-table-cell-scrollbar {
666
+ display: none;
667
+ }
668
+ .table-wrapper.table-sticky-header .ant-table-header {
669
+ position: sticky;
670
+ top: 0px;
671
+ }
672
+ .table-wrapper.table-sticky-header .ant-table-body {
673
+ overflow: auto visible !important;
674
+ }
675
+
676
+ .table-wrapper.dragging .ant-table-column-has-sorters {
677
+ pointer-events: none;
678
+ }
679
+
680
+ .ant-picker.ant-picker-disabled {
681
+ background: rgba(211, 218, 235, 0.6);
682
+ border-color: rgba(211, 218, 235, 0.6);
683
+ }
684
+ .ant-picker.error:not(.ant-picker-disabled) {
685
+ border-color: #e75a3a;
686
+ }
687
+
688
+ .ant-modal {
689
+ margin: 0 auto;
690
+ max-width: 100%;
691
+ top: 50%;
692
+ transform: translateY(-50%);
693
+ }
694
+ .ant-modal .ant-modal-close-x {
695
+ width: 20px;
696
+ height: 20px;
697
+ line-height: 20px;
698
+ font-size: 20px;
699
+ color: #3e4652;
700
+ position: absolute;
701
+ right: 24px;
702
+ top: 27px;
703
+ }
704
+ .ant-modal .ant-modal-close-x .anticon-close-circle {
705
+ transition: opacity 320ms 80ms;
706
+ }
707
+ .ant-modal .ant-modal-close-x .anticon-close-circle:hover {
708
+ opacity: 0.8;
709
+ }
710
+ .ant-modal .ant-modal-footer .footer-content {
711
+ display: flex;
712
+ justify-content: space-between;
713
+ align-items: center;
714
+ }
715
+ .ant-modal .ant-modal-footer .footer-content .modal-footer-left {
716
+ display: flex;
717
+ align-items: center;
718
+ }
719
+ .ant-modal .ant-modal-footer .footer-content .modal-footer-left .anticon-exclamation-circle {
720
+ color: #f0483e;
721
+ margin-right: 5px;
722
+ }
723
+ .ant-modal .ant-modal-footer .footer-content .modal-footer-left .modal-error {
724
+ margin-right: 12px;
725
+ font-size: 13px;
726
+ line-height: 20px;
727
+ color: #f0483e;
728
+ text-align: left;
729
+ }
730
+ .ant-modal .ant-modal-footer .footer-content .modal-footer-left .prev-step {
731
+ color: #0080ff;
732
+ cursor: pointer;
733
+ margin-right: 16px;
734
+ flex-shrink: 0;
735
+ }
736
+ .ant-modal .ant-modal-footer .footer-content button {
737
+ font-size: 14px;
738
+ font-weight: bold;
739
+ padding: 0 16px;
740
+ border: none;
741
+ }
742
+ .ant-modal .ant-modal-footer .footer-content button.footer-cancel-button, .ant-modal .ant-modal-footer .footer-content button.ant-btn-ghost {
743
+ background: transparent;
744
+ color: rgba(62, 70, 82, 0.6);
745
+ }
746
+ .ant-modal .ant-modal-footer .footer-content button.footer-cancel-button:hover, .ant-modal .ant-modal-footer .footer-content button.ant-btn-ghost:hover {
747
+ background: rgba(223, 228, 235, 0.6);
748
+ }
749
+ .ant-modal .ant-modal-footer .footer-content button + button {
750
+ margin-left: 8px;
751
+ }
752
+ .ant-modal .ant-modal-footer .footer-content > :only-child,
753
+ .ant-modal .ant-modal-footer .footer-content .modal-footer-btn-group {
754
+ margin-left: auto;
755
+ flex-shrink: 0;
756
+ }
757
+ .ant-modal .form-field-title {
758
+ color: #2d3a56;
759
+ font-weight: bold;
760
+ padding-bottom: 6px;
761
+ border-bottom: 1px solid rgba(213, 219, 227, 0.6);
762
+ margin-bottom: 16px;
763
+ }
764
+ .ant-modal .form-field-title:not(:first-of-type) {
765
+ margin-top: 16px;
766
+ }
767
+
768
+ .ant-modal.fullscreen {
769
+ height: calc(100vh - 16px);
770
+ width: calc(100vw - 16px);
771
+ padding-bottom: 0;
772
+ margin: 0 auto;
773
+ }
774
+ .ant-modal.fullscreen .ant-modal-header {
775
+ padding: 24px 0 16px;
776
+ border: none;
777
+ }
778
+ .ant-modal.fullscreen .ant-modal-header .ant-modal-title {
779
+ color: #00122e;
780
+ font-size: 32px;
781
+ line-height: 40px;
782
+ font-weight: 700;
783
+ }
784
+ .ant-modal.fullscreen .ant-modal-content {
785
+ height: 100%;
786
+ border-radius: 0;
787
+ display: flex;
788
+ flex-direction: column;
789
+ }
790
+ .ant-modal.fullscreen .ant-modal-content .ant-modal-body {
791
+ flex: 1;
792
+ overflow: auto;
793
+ }
794
+ .ant-modal.fullscreen .ant-modal-footer {
795
+ background: rgba(237, 241, 250, 0.6);
796
+ padding: 15px 0;
797
+ }
798
+
799
+ .ant-modal.wizard .ant-modal-body {
800
+ padding: 4px 0 2px;
801
+ }
802
+ .ant-modal.wizard .ant-modal-header {
803
+ width: 100%;
804
+ max-width: 1120px;
805
+ margin: 0 auto;
806
+ }
807
+ .ant-modal.wizard .ant-modal-title {
808
+ margin-left: 21%;
809
+ }
810
+ .ant-modal.wizard .ant-modal-footer {
811
+ border-top: 0;
812
+ width: 100%;
813
+ }
814
+ .ant-modal.wizard .ant-modal-footer .footer-content {
815
+ display: flex;
816
+ margin: 0 auto;
817
+ max-width: 1120px;
818
+ width: 100%;
819
+ }
820
+ .ant-modal.wizard .ant-modal-footer .footer-content:before, .ant-modal.wizard .ant-modal-footer .footer-content:after {
821
+ content: "";
822
+ flex-grow: 0;
823
+ flex-shrink: 0;
824
+ flex-basis: 21%;
825
+ }
826
+ .ant-modal.wizard .ant-modal-footer .footer-content .middle {
827
+ display: flex;
828
+ justify-content: space-between;
829
+ flex-shrink: 0;
830
+ flex-basis: 58%;
831
+ align-items: center;
832
+ }
833
+ .ant-modal.wizard .ant-modal-footer .footer-content .middle > *:last-child {
834
+ margin-bottom: 40px;
835
+ }
836
+
837
+ .ant-modal.normal-modal .ant-modal-header {
838
+ padding: 24px 56px 20px 24px;
839
+ border-bottom: none;
840
+ }
841
+ .ant-modal.normal-modal .ant-modal-title {
842
+ font-size: 20px;
843
+ line-height: 24px;
844
+ font-weight: 600;
845
+ }
846
+ .ant-modal.normal-modal .ant-modal-body {
847
+ overflow-y: auto;
848
+ max-height: calc(60vh - 64px);
849
+ min-height: 88px;
850
+ padding: 12px 24px 24px;
851
+ }
852
+ .ant-modal.normal-modal .ant-modal-footer {
853
+ padding: 16px 24px;
854
+ border-top: none;
855
+ box-shadow: inset 0px 1px 0px rgba(235, 239, 245, 0.6);
856
+ }
857
+
858
+ .ant-modal.normal-modal.size-medium {
859
+ min-height: 356px;
860
+ }
861
+ .ant-modal.normal-modal.size-medium .ant-modal-content {
862
+ border-radius: 16px;
863
+ }
864
+ .ant-modal.normal-modal.size-medium .ant-modal-header {
865
+ border-radius: 16px 16px 0 0;
866
+ padding: 40px 60px 8px;
867
+ border-bottom: none;
868
+ }
869
+ .ant-modal.normal-modal.size-medium .ant-modal-title {
870
+ font-size: 24px;
871
+ line-height: 32px;
872
+ font-weight: 600;
873
+ }
874
+ .ant-modal.normal-modal.size-medium .ant-modal-body {
875
+ overflow-y: auto;
876
+ padding: 24px 60px 32px;
877
+ max-height: calc(100vh - 80px - 80px - 96px);
878
+ }
879
+ .ant-modal.normal-modal.size-medium .ant-modal-footer {
880
+ padding: 32px 60px;
881
+ border-top: none;
882
+ box-shadow: inset 0px 1px 0px rgba(235, 239, 245, 0.6);
883
+ }
884
+
885
+ .ant-dropdown-menu-item-divider,
886
+ .ant-dropdown-menu-submenu-title-divider {
887
+ margin: 4px 12px;
888
+ background: rgba(235, 239, 245, 0.6);
889
+ }
890
+
891
+ .select.select-event-none {
892
+ cursor: not-allowed;
893
+ }
894
+ .select.select-event-none .ant-select-selector {
895
+ pointer-events: none;
896
+ border-color: #d9d9d9 !important;
897
+ background: #d8deeb;
898
+ }
899
+ .select.select-event-none .ant-select-selector .ant-select-selection-item {
900
+ pointer-events: auto;
901
+ background: #fff;
902
+ }
903
+ .select.select-event-none .ant-select-selector .ant-select-selection-search input {
904
+ display: none;
905
+ }
906
+
907
+ .select.ant-select-single .ant-select-selector .ant-select-selection-item :first-child {
908
+ line-height: 30px;
909
+ }
910
+
911
+ .select:focus .ant-select-selection {
912
+ border-color: #29adff;
913
+ border-right-width: 1px !important;
914
+ outline: 0;
915
+ box-shadow: 0 0 0 2px rgba(0, 150, 255, 0.2);
916
+ }
917
+
918
+ .ant-tabs-nav .ant-tabs-tab {
919
+ font-weight: normal;
920
+ font-size: 14px;
921
+ line-height: 22px;
922
+ height: 26px;
923
+ margin-right: 16px;
924
+ padding: 0px;
925
+ color: rgba(44, 56, 82, 0.6);
926
+ }
927
+ .ant-tabs-nav .ant-tabs-tab:hover {
928
+ color: #0080ff;
929
+ }
930
+ .ant-tabs-nav .ant-tabs-tab-active {
931
+ color: #0080ff !important;
932
+ }
933
+ .ant-tabs-nav:before {
934
+ border-bottom: 1px solid rgba(211, 218, 235, 0.6) !important;
935
+ }
936
+
937
+ .ant-tabs-ink-bar {
938
+ height: 1px;
939
+ }
940
+
941
+ .ant-input:focus {
942
+ border-color: #0080ff;
943
+ }
944
+
945
+ .vertical-align-middle {
946
+ vertical-align: middle;
947
+ }
948
+
949
+ .dashed-border-bottom {
950
+ border-bottom: 1px dashed rgba(10, 37, 85, 0.6);
951
+ }
952
+
953
+ .ant-upload-drag {
954
+ background: #f5f7fa;
955
+ border: 1px dashed rgba(129, 138, 153, 0.6);
956
+ box-sizing: border-box;
957
+ border-radius: 4px;
958
+ padding: 12px;
959
+ }
960
+ .ant-upload-drag.ant-upload > .ant-upload-btn {
961
+ padding: 0;
962
+ }
963
+
964
+ .ant-modal-wrap {
965
+ overflow: visible;
966
+ }
967
+
968
+ .ant-modal {
969
+ transform-origin: center !important;
970
+ animation: none !important;
971
+ }
972
+ .ant-modal.modal-zoom-enter, .ant-modal.modal-zoom-appear {
973
+ opacity: 0;
974
+ transition: transform 200ms ease-out, opacity 100ms;
975
+ transform: scale(0.9);
976
+ }
977
+ .ant-modal.modal-zoom-leave {
978
+ opacity: 1;
979
+ transform: scale(1) translateY(-50%);
980
+ transition: transform 200ms ease-out, opacity 100ms;
981
+ }
982
+ .ant-modal.modal-zoom-enter.modal-zoom-enter-active, .ant-modal.modal-zoom-appear.modal-zoom-appear-active {
983
+ opacity: 1;
984
+ transform: scale(1) translateY(-50%);
985
+ }
986
+ .ant-modal.modal-zoom-leave.modal-zoom-leave-active {
987
+ opacity: 0;
988
+ transform: scale(0.9);
989
+ }
990
+ .ant-modal.modal-send-leave {
991
+ transform: translateY(0);
992
+ opacity: 1;
993
+ transition: transform cubic-bezier(0.5, 0, 1, 0) 240ms, opacity 240ms;
994
+ }
995
+ .ant-modal.modal-send-leave.modal-send-leave-active {
996
+ transform: translateY(-100vh);
997
+ opacity: 0;
998
+ }
999
+ .ant-modal.fullscreen.fullscreen-modal-enter, .ant-modal.fullscreen.fullscreen-modal-appear {
1000
+ transform: translateY(100vh);
1001
+ transition: transform 600ms cubic-bezier(0, 1, 0, 1);
1002
+ }
1003
+ .ant-modal.fullscreen.fullscreen-modal-enter-active, .ant-modal.fullscreen.fullscreen-modal-appear-active {
1004
+ transform: translateY(-50%);
1005
+ }
1006
+ .ant-modal.fullscreen.fullscreen-modal-leave {
1007
+ transition: none;
1008
+ }
1009
+
1010
+ .ant-modal-mask {
1011
+ background: rgba(107, 125, 153, 0.3);
1012
+ transition: background 320ms ease;
1013
+ }
1014
+
1015
+ .ant-alert {
1016
+ padding: 7px 12px;
1017
+ font-size: 12px;
1018
+ border: none;
1019
+ line-height: 18px;
1020
+ border-radius: 6px;
1021
+ display: flex;
1022
+ word-break: break-word;
1023
+ }
1024
+ .ant-alert .ant-alert-icon {
1025
+ position: static;
1026
+ height: 18px;
1027
+ margin-right: 10px;
1028
+ }
1029
+ .ant-alert .ant-alert-close-icon {
1030
+ position: initial;
1031
+ margin-left: 8px;
1032
+ }
1033
+ .ant-alert .ant-alert-close-icon .ant-alert-close-text {
1034
+ color: #0080ff;
1035
+ line-height: 18px;
1036
+ }
1037
+
1038
+ .ant-alert-warning {
1039
+ background: rgba(255, 187, 0, 0.1);
1040
+ }
1041
+ .ant-alert-warning .ant-alert-message {
1042
+ color: #e07f00;
1043
+ }
1044
+
1045
+ .ant-alert-error {
1046
+ background: rgba(255, 74, 74, 0.1);
1047
+ }
1048
+ .ant-alert-error .ant-alert-message {
1049
+ color: #f0483e;
1050
+ }
1051
+
1052
+ .ant-alert-success {
1053
+ background: rgba(30, 201, 127, 0.1);
1054
+ }
1055
+ .ant-alert-success .ant-alert-message {
1056
+ color: #008f4c;
1057
+ }
1058
+
1059
+ .ant-alert-info {
1060
+ background: rgba(0, 136, 255, 0.1);
1061
+ }
1062
+ .ant-alert-info .ant-alert-message {
1063
+ color: #005ed1;
1064
+ }
1065
+
1066
+ .alert-normal {
1067
+ background: rgba(225, 230, 241, 0.6);
1068
+ }
1069
+ .alert-normal .ant-alert-message {
1070
+ color: rgba(44, 56, 82, 0.6);
1071
+ }
1072
+
1073
+ .topo-dropdown-enter {
1074
+ transition: height 150ms ease;
1075
+ height: 0;
1076
+ overflow: hidden;
1077
+ }
1078
+
1079
+ .topo-dropdown-enter-active {
1080
+ display: flex;
1081
+ flex-direction: column;
1082
+ justify-content: flex-end;
1083
+ }
1084
+
1085
+ .topo-dropdown-exit {
1086
+ transition: height 150ms ease;
1087
+ overflow: hidden;
1088
+ }
1089
+
1090
+ .topo-dropdown-exit-active {
1091
+ display: flex;
1092
+ flex-direction: column;
1093
+ justify-content: flex-end;
1094
+ }
1095
+
1096
+ .topo-dropdown-exit-done {
1097
+ display: none;
1098
+ }
1099
+
1100
+ .ant-btn {
1101
+ border-radius: 4px;
1102
+ }
1103
+
1104
+ .ant-select {
1105
+ outline: none;
1106
+ }
1107
+
1108
+ .ant-select-dropdown.ant-select-dropdown-empty {
1109
+ text-align: center;
1110
+ }
1111
+ .ant-select-dropdown .fetching-more .select-content-empty {
1112
+ cursor: default;
1113
+ text-align: center;
1114
+ }
1115
+ .ant-select-dropdown .select-content-empty {
1116
+ cursor: default;
1117
+ text-align: center;
1118
+ }
1119
+ .ant-select-dropdown .ant-select-item-option {
1120
+ color: #00122e;
1121
+ }
1122
+ .ant-select-dropdown .ant-select-item-option-disabled {
1123
+ background-color: rgba(225, 230, 241, 0.6);
1124
+ opacity: 0.5;
1125
+ }
1126
+
1127
+ .display-none {
1128
+ display: none;
1129
+ }
1130
+
1131
+ .ant-badge-count {
1132
+ min-width: 18px;
1133
+ right: 4px;
1134
+ top: 4px;
1135
+ box-shadow: 0px 1px 2px rgba(184, 192, 204, 0.6);
1136
+ border-radius: 40px;
1137
+ color: #ffffff;
1138
+ padding: 0 5px;
1139
+ font-size: 12px;
1140
+ line-height: 18px;
1141
+ height: 18px;
1142
+ }
1143
+
1144
+ input:-webkit-autofill,
1145
+ input:-webkit-autofill:focus {
1146
+ -webkit-box-shadow: 0 0 0 50px white inset !important;
1147
+ }
1148
+
1149
+ td .ant-btn-link {
1150
+ border: 0;
1151
+ max-width: 100%;
1152
+ }
1153
+
1154
+ .badge-error .ant-badge-count {
1155
+ background: radial-gradient(100% 100% at 0% 100%, #ff5c78 0%, #dc0000 100%);
1156
+ }
1157
+
1158
+ .badge-warning .ant-badge-count {
1159
+ background: radial-gradient(100% 100% at 0% 100%, #ffd505 0%, #f39600 100%);
1160
+ }
1161
+
1162
+ .badge-info .ant-badge-count {
1163
+ background: radial-gradient(100% 100% at 0% 100%, #5bcaff 0%, #0066ff 100%);
1164
+ }
1165
+
1166
+ .ant-tooltip {
1167
+ font-size: 12px;
1168
+ }
1169
+
1170
+ .none-animation {
1171
+ transition: none;
1172
+ animation: none;
1173
+ }
1174
+ .none-animation.none-animation-enter {
1175
+ display: block;
1176
+ opacity: 1 !important;
1177
+ }
1178
+ .none-animation.none-animation-leave {
1179
+ display: none;
1180
+ }
1181
+
1182
+ .menu-shadow-box {
1183
+ box-shadow: rgba(45, 58, 86, 0.3) 0px 25px 80px 0px, rgba(107, 125, 153, 0.18) 0px 0px 20px 0px;
1184
+ }
1185
+
1186
+ .menu-shadow-filter {
1187
+ filter: drop-shadow(rgba(45, 58, 86, 0.3) 0px 25px 80px) drop-shadow(rgba(107, 125, 153, 0.18) 0px 0px 20px);
1188
+ }
1189
+
1190
+ .menu-shadow-above-button-box {
1191
+ box-shadow: 0px -12px 40px 0px rgba(45, 58, 86, 0.3), 0px 0px 10px 0px rgba(107, 125, 153, 0.18);
1192
+ }
1193
+
1194
+ .menu-shadow-above-button-filter {
1195
+ filter: drop-shadow(0px -12px 40px rgba(45, 58, 86, 0.3)) drop-shadow(0px 0px 10px rgba(107, 125, 153, 0.18));
1196
+ }
1197
+
1198
+ .panel-shadow-box {
1199
+ box-shadow: rgba(45, 58, 86, 0.3) 0px 25px 80px 0px, rgba(107, 125, 153, 0.18) 0px 0px 20px 0px;
1200
+ }
1201
+
1202
+ .panel-shadow-filter {
1203
+ filter: drop-shadow(rgba(45, 58, 86, 0.3) 0px 25px 80px) drop-shadow(rgba(107, 125, 153, 0.18) 0px 0px 20px);
1204
+ }
1205
+
1206
+ .panel-shadow-above-button-box {
1207
+ box-shadow: 0px -25px 80px 0px rgba(45, 58, 86, 0.3), 0px 0px 20px 0px rgba(107, 125, 153, 0.18);
1208
+ }
1209
+
1210
+ .panel-shadow-above-button-filter {
1211
+ filter: drop-shadow(0px -25px 80px rgba(45, 58, 86, 0.3)) drop-shadow(0px 0px 20px rgba(107, 125, 153, 0.18));
1212
+ }
1213
+
1214
+ .card-shadow-box {
1215
+ box-shadow: rgba(10, 37, 85, 0.18) 0px 8px 16px 0px, rgba(10, 37, 85, 0.18) 0px 0px 4px -2px;
1216
+ }
1217
+
1218
+ .card-shadow-filter {
1219
+ filter: drop-shadow(rgba(10, 37, 85, 0.18) 0px 8px 16px) drop-shadow(rgba(10, 37, 85, 0.18) 0px 0px 4px);
1220
+ }
1221
+
1222
+ .push-button-cta-box {
1223
+ box-shadow: 0px 1px 2px 0px rgba(44, 56, 82, 0.18);
1224
+ }
1225
+
1226
+ .push-button-cta-filter {
1227
+ filter: drop-shadow(0px 1px 2px 0px rgba(44, 56, 82, 0.18));
1228
+ }
1229
+
1230
+ .push-button-ordinary-box {
1231
+ box-shadow: 0px 1px 2px -1px rgba(44, 56, 82, 0.18);
1232
+ }
1233
+
1234
+ .push-button-ordinary-filter {
1235
+ filter: drop-shadow(0px 1px 2px -1px rgba(44, 56, 82, 0.18));
1236
+ }
1237
+
1238
+ .button-grow-blue-box {
1239
+ box-shadow: 0px 2px 8px 0px rgba(0, 136, 255, 0.1);
1240
+ }
1241
+
1242
+ .button-grow-blue-filter {
1243
+ filter: drop-shadow(0px 2px 8px 0px rgba(0, 136, 255, 0.1));
1244
+ }
1245
+
1246
+ .button-grow-green-box {
1247
+ box-shadow: 0px 2px 8px 0px rgba(30, 201, 127, 0.1);
1248
+ }
1249
+
1250
+ .button-grow-green-filter {
1251
+ filter: drop-shadow(0px 2px 8px 0px rgba(30, 201, 127, 0.1));
1252
+ }
1253
+
1254
+ .button-grow-yellow-box {
1255
+ box-shadow: 0px 2px 8px 0px rgba(255, 187, 0, 0.1);
1256
+ }
1257
+
1258
+ .button-grow-yellow-filter {
1259
+ filter: drop-shadow(0px 2px 8px 0px rgba(255, 187, 0, 0.1));
1260
+ }
1261
+
1262
+ .button-grow-red-box {
1263
+ box-shadow: 0px 2px 8px 0px rgba(255, 74, 74, 0.1);
1264
+ }
1265
+
1266
+ .button-grow-red-filter {
1267
+ filter: drop-shadow(0px 2px 8px 0px rgba(255, 74, 74, 0.1));
1268
+ }
1269
+
1270
+ .dropdown-button-for-select-hover-box {
1271
+ box-shadow: 0px 0px 0px 4px rgba(225, 230, 241, 0.6);
1272
+ }
1273
+
1274
+ .dropdown-button-for-select-hover-filter {
1275
+ filter: drop-shadow(0px 0px 0px 4px rgba(225, 230, 241, 0.6));
1276
+ }
1277
+
1278
+ .dropdown-button-for-select-active-and-focus-box {
1279
+ box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
1280
+ }
1281
+
1282
+ .dropdown-button-for-select-active-and-focus-filter {
1283
+ filter: drop-shadow(0px 0px 0px 4px rgba(0, 136, 255, 0.16));
1284
+ }
1285
+
1286
+ .dropdown-button-for-select-active-and-focus-error-box {
1287
+ box-shadow: 0px 0px 0px 4px rgba(255, 74, 74, 0.16);
1288
+ }
1289
+
1290
+ .dropdown-button-for-select-active-and-focus-error-filter {
1291
+ filter: drop-shadow(0px 0px 0px 4px rgba(255, 74, 74, 0.16));
1292
+ }
1293
+
1294
+ @media screen and (min-width: 1280px) {
1295
+ .cluster-topo-wrapper .panel-content > .rack-topo-wrapper,
1296
+ .cluster-topo-wrapper .panel-content > .brick-topo-wrapper {
1297
+ width: calc(33.3% - 16px);
1298
+ }
1299
+ .cluster-topo-wrapper .panel-content > .node-topo-wrapper {
1300
+ width: calc(16.65% - 16px);
1301
+ }
1302
+ }
1303
+ @media screen and (min-width: 1568px) {
1304
+ .cluster-topo-wrapper .panel-content > .rack-topo-wrapper,
1305
+ .cluster-topo-wrapper .panel-content > .brick-topo-wrapper {
1306
+ width: calc(25% - 16px);
1307
+ }
1308
+ .cluster-topo-wrapper .panel-content > .node-topo-wrapper {
1309
+ width: calc(12.5% - 16px);
1310
+ }
1311
+ }
1312
+ @media screen and (min-width: 1856px) {
1313
+ .cluster-topo-wrapper .panel-content > .rack-topo-wrapper,
1314
+ .cluster-topo-wrapper .panel-content > .brick-topo-wrapper {
1315
+ width: calc(20% - 16px);
1316
+ }
1317
+ .cluster-topo-wrapper .panel-content > .node-topo-wrapper {
1318
+ width: calc(10% - 16px);
1319
+ }
1320
+ }
1321
+ @media screen and (min-width: 2432px) {
1322
+ .cluster-topo-wrapper .panel-content > .rack-topo-wrapper,
1323
+ .cluster-topo-wrapper .panel-content > .brick-topo-wrapper {
1324
+ width: calc(16.6% - 16px);
1325
+ }
1326
+ .cluster-topo-wrapper .panel-content > .node-topo-wrapper {
1327
+ width: calc(8.3% - 16px);
1328
+ }
1329
+ }
1330
+ /* http://meyerweb.com/eric/tools/css/reset/
1331
+ Modified based on Eric Meyer’s
1332
+ */
1333
+ html,
1334
+ body,
1335
+ div,
1336
+ span,
1337
+ applet,
1338
+ object,
1339
+ iframe,
1340
+ h1,
1341
+ h2,
1342
+ h3,
1343
+ h4,
1344
+ h5,
1345
+ h6,
1346
+ p,
1347
+ blockquote,
1348
+ pre,
1349
+ a,
1350
+ abbr,
1351
+ acronym,
1352
+ address,
1353
+ big,
1354
+ cite,
1355
+ code,
1356
+ del,
1357
+ dfn,
1358
+ em,
1359
+ img,
1360
+ ins,
1361
+ kbd,
1362
+ q,
1363
+ s,
1364
+ samp,
1365
+ small,
1366
+ strike,
1367
+ strong,
1368
+ sub,
1369
+ sup,
1370
+ tt,
1371
+ var,
1372
+ b,
1373
+ u,
1374
+ i,
1375
+ center,
1376
+ dl,
1377
+ dt,
1378
+ dd,
1379
+ ol,
1380
+ ul,
1381
+ li,
1382
+ fieldset,
1383
+ form,
1384
+ label,
1385
+ legend,
1386
+ table,
1387
+ caption,
1388
+ tbody,
1389
+ tfoot,
1390
+ thead,
1391
+ tr,
1392
+ th,
1393
+ td,
1394
+ article,
1395
+ aside,
1396
+ canvas,
1397
+ details,
1398
+ embed,
1399
+ figure,
1400
+ figcaption,
1401
+ footer,
1402
+ header,
1403
+ hgroup,
1404
+ menu,
1405
+ nav,
1406
+ output,
1407
+ ruby,
1408
+ section,
1409
+ summary,
1410
+ time,
1411
+ mark,
1412
+ audio,
1413
+ video {
1414
+ margin: 0;
1415
+ padding: 0;
1416
+ border: 0;
1417
+ vertical-align: baseline;
1418
+ }
1419
+
1420
+ /* HTML5 display-role reset for older browsers */
1421
+ article,
1422
+ aside,
1423
+ details,
1424
+ figcaption,
1425
+ figure,
1426
+ footer,
1427
+ header,
1428
+ hgroup,
1429
+ menu,
1430
+ nav,
1431
+ section {
1432
+ display: block;
1433
+ }
1434
+
1435
+ ol,
1436
+ ul {
1437
+ list-style: none;
1438
+ }
1439
+
1440
+ blockquote,
1441
+ q {
1442
+ quotes: none;
1443
+ }
1444
+
1445
+ blockquote:before,
1446
+ blockquote:after,
1447
+ q:before,
1448
+ q:after {
1449
+ content: "";
1450
+ content: none;
1451
+ }
1452
+
1453
+ table {
1454
+ border-collapse: collapse;
1455
+ border-spacing: 0;
1456
+ }
1457
+
1458
+ th,
1459
+ tr,
1460
+ td {
1461
+ font-weight: normal;
1462
+ }
1463
+
1464
+ button {
1465
+ padding: 0;
1466
+ border: none;
1467
+ background: none;
1468
+ outline: none;
1469
+ line-height: inherit;
1470
+ font-size: inherit;
1471
+ font-family: inherit;
1472
+ user-select: none;
1473
+ }
1474
+
1475
+ button[disabled] {
1476
+ cursor: not-allowed;
1477
+ }
1478
+
1479
+ *,
1480
+ *:before,
1481
+ *:after {
1482
+ box-sizing: border-box;
1483
+ }
1484
+
1485
+ a,
1486
+ a:link,
1487
+ a:visited,
1488
+ a:hover,
1489
+ a:active {
1490
+ text-decoration: none;
1491
+ color: inherit;
1492
+ }
1493
+
1494
+ button,
1495
+ input[type=button],
1496
+ input[type=reset],
1497
+ input[type=submit] {
1498
+ -webkit-appearance: button;
1499
+ cursor: pointer;
1500
+ }