@appscode/design-system 1.1.0-beta.4 → 1.1.0-beta.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.
- package/components/_ac-input.scss +788 -281
- package/components/_all.scss +2 -2
- package/components/_wizard.scss +529 -531
- package/components/ui-builder/_vue-open-api.scss +1 -0
- package/main.scss +3 -3
- package/package.json +1 -1
- package/vue-components/v3/cards/Cluster.vue +1 -1
- package/vue-components/v3/form-fields/AcSingleInput.vue +1 -500
- package/vue-components/v3/navbar/Navbar.vue +3 -1
- package/vue-components/v3/sidebar/ClusterSwitcher.vue +5 -10
package/components/_wizard.scss
CHANGED
|
@@ -1,112 +1,112 @@
|
|
|
1
|
-
.single-wizard-section {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
.wizard-description {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
}
|
|
1
|
+
// .single-wizard-section {
|
|
2
|
+
// padding: 20px;
|
|
3
|
+
// background-color: $white-100;
|
|
4
|
+
// border: 1px solid $primary-90;
|
|
5
|
+
// border-radius: 4px;
|
|
6
|
+
// }
|
|
7
|
+
|
|
8
|
+
// .wizard-description {
|
|
9
|
+
// font-family: $font-paragraph;
|
|
10
|
+
// font-style: normal;
|
|
11
|
+
// font-weight: normal;
|
|
12
|
+
// font-size: 13px;
|
|
13
|
+
// line-height: 100%;
|
|
14
|
+
// color: $primary-10;
|
|
15
|
+
// margin-bottom: 10px;
|
|
16
|
+
// }
|
|
17
17
|
|
|
18
18
|
// label action start
|
|
19
|
-
.label-action {
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
}
|
|
19
|
+
// .label-action {
|
|
20
|
+
// align-items: center;
|
|
21
|
+
// height: 21px;
|
|
22
|
+
|
|
23
|
+
// .ac-single-input {
|
|
24
|
+
// label {
|
|
25
|
+
// margin-top: 2px;
|
|
26
|
+
// }
|
|
27
|
+
// }
|
|
28
|
+
|
|
29
|
+
// button:not(.is-text) {
|
|
30
|
+
// opacity: 0;
|
|
31
|
+
// visibility: hidden;
|
|
32
|
+
// transition: 0.3s ease-in-out;
|
|
33
|
+
|
|
34
|
+
// img {
|
|
35
|
+
// width: 15px;
|
|
36
|
+
// }
|
|
37
|
+
|
|
38
|
+
// &.label-icon {
|
|
39
|
+
// border: none;
|
|
40
|
+
// background-color: transparent;
|
|
41
|
+
// cursor: pointer;
|
|
42
|
+
// padding: 0;
|
|
43
|
+
// transition: 0.3s ease-in-out;
|
|
44
|
+
|
|
45
|
+
// &:hover {
|
|
46
|
+
// opacity: 0.8;
|
|
47
|
+
// }
|
|
48
|
+
// }
|
|
49
|
+
// }
|
|
50
|
+
|
|
51
|
+
// &:hover {
|
|
52
|
+
// button {
|
|
53
|
+
// opacity: 1;
|
|
54
|
+
// visibility: visible;
|
|
55
|
+
// }
|
|
56
|
+
// }
|
|
57
|
+
|
|
58
|
+
// .ms-close-button,
|
|
59
|
+
// .ac-modal-footer {
|
|
60
|
+
// .buttons {
|
|
61
|
+
// button {
|
|
62
|
+
// opacity: 1;
|
|
63
|
+
// visibility: visible;
|
|
64
|
+
|
|
65
|
+
// &:hover {
|
|
66
|
+
// opacity: 0.7;
|
|
67
|
+
// }
|
|
68
|
+
// }
|
|
69
|
+
// }
|
|
70
|
+
// }
|
|
71
|
+
|
|
72
|
+
// .label-icon {
|
|
73
|
+
// display: flex;
|
|
74
|
+
// align-items: center;
|
|
75
|
+
// margin-right: 10px;
|
|
76
|
+
|
|
77
|
+
// img {
|
|
78
|
+
// width: 16px;
|
|
79
|
+
// }
|
|
80
|
+
// }
|
|
81
|
+
|
|
82
|
+
// strong {
|
|
83
|
+
// font-family: $font-paragraph;
|
|
84
|
+
// font-style: normal;
|
|
85
|
+
// font-weight: 500;
|
|
86
|
+
// font-size: 13px;
|
|
87
|
+
// line-height: 16px;
|
|
88
|
+
// color: $primary-10;
|
|
89
|
+
// margin-right: 16px;
|
|
90
|
+
// }
|
|
91
|
+
// }
|
|
92
92
|
|
|
93
93
|
// label action end
|
|
94
94
|
// key-value-button start
|
|
95
|
-
.key-value-button {
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
}
|
|
95
|
+
// .key-value-button {
|
|
96
|
+
// display: grid;
|
|
97
|
+
// grid-template-columns: calc(50% - 83px) 10px calc(50% - 82px) 110px;
|
|
98
|
+
// grid-gap: 15px;
|
|
99
|
+
|
|
100
|
+
// .ac-single-input {
|
|
101
|
+
// margin-bottom: 0;
|
|
102
|
+
// }
|
|
103
|
+
|
|
104
|
+
// .lable-colone {
|
|
105
|
+
// font-size: 30px;
|
|
106
|
+
// font-weight: 500;
|
|
107
|
+
// line-height: 1.1;
|
|
108
|
+
// }
|
|
109
|
+
// }
|
|
110
110
|
|
|
111
111
|
// key-value-button end
|
|
112
112
|
|
|
@@ -154,9 +154,11 @@
|
|
|
154
154
|
background-color: transparent;
|
|
155
155
|
width: auto;
|
|
156
156
|
margin-bottom: 0;
|
|
157
|
+
|
|
157
158
|
label {
|
|
158
159
|
font-weight: 400 !important;
|
|
159
160
|
}
|
|
161
|
+
|
|
160
162
|
&:hover {
|
|
161
163
|
box-shadow: none;
|
|
162
164
|
border: none;
|
|
@@ -175,15 +177,15 @@
|
|
|
175
177
|
padding-left: 25px !important;
|
|
176
178
|
}
|
|
177
179
|
|
|
178
|
-
.is-checkradio[type="checkbox"].ac-checkbox
|
|
179
|
-
.is-checkradio[type="radio"]
|
|
180
|
-
.is-checkradio[type="radio"]
|
|
180
|
+
.is-checkradio[type="checkbox"].ac-checkbox+label::before,
|
|
181
|
+
.is-checkradio[type="radio"]+label:before,
|
|
182
|
+
.is-checkradio[type="radio"]+label:after {
|
|
181
183
|
width: 16px;
|
|
182
184
|
height: 16px;
|
|
183
185
|
top: 3px;
|
|
184
186
|
}
|
|
185
187
|
|
|
186
|
-
.is-checkradio[type="checkbox"].ac-checkbox
|
|
188
|
+
.is-checkradio[type="checkbox"].ac-checkbox+label::after {
|
|
187
189
|
left: 5px;
|
|
188
190
|
}
|
|
189
191
|
}
|
|
@@ -197,7 +199,7 @@
|
|
|
197
199
|
}
|
|
198
200
|
}
|
|
199
201
|
|
|
200
|
-
.ac-single-radio .is-checkradio[type="radio"]:checked
|
|
202
|
+
.ac-single-radio .is-checkradio[type="radio"]:checked+label {
|
|
201
203
|
color: $primary;
|
|
202
204
|
}
|
|
203
205
|
|
|
@@ -357,7 +359,7 @@
|
|
|
357
359
|
}
|
|
358
360
|
|
|
359
361
|
.ac-single-radio {
|
|
360
|
-
.is-checkradio[type="radio"]
|
|
362
|
+
.is-checkradio[type="radio"]+label {
|
|
361
363
|
padding-left: 25px;
|
|
362
364
|
|
|
363
365
|
&:before {
|
|
@@ -376,7 +378,7 @@
|
|
|
376
378
|
|
|
377
379
|
.ac-single-checkbox {
|
|
378
380
|
.is-checkradio[type="checkbox"] {
|
|
379
|
-
&.ac-checkbox
|
|
381
|
+
&.ac-checkbox+label {
|
|
380
382
|
font-family: $font-heading;
|
|
381
383
|
font-style: normal;
|
|
382
384
|
font-weight: 500;
|
|
@@ -391,470 +393,466 @@
|
|
|
391
393
|
// select card end
|
|
392
394
|
|
|
393
395
|
// final state start
|
|
394
|
-
.ac-final-state {
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
}
|
|
436
|
-
|
|
437
|
-
.button {
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
}
|
|
396
|
+
// .ac-final-state {
|
|
397
|
+
// margin-bottom: 10px;
|
|
398
|
+
|
|
399
|
+
// &:last-child {
|
|
400
|
+
// margin-bottom: 0;
|
|
401
|
+
// }
|
|
402
|
+
|
|
403
|
+
// .state-left {
|
|
404
|
+
// h5 {
|
|
405
|
+
// font-family: $font-paragraph;
|
|
406
|
+
// font-style: normal;
|
|
407
|
+
// font-weight: 500;
|
|
408
|
+
// font-size: 14px;
|
|
409
|
+
// line-height: 19px;
|
|
410
|
+
// color: $primary-10;
|
|
411
|
+
// }
|
|
412
|
+
|
|
413
|
+
// img {
|
|
414
|
+
// width: 16px;
|
|
415
|
+
// margin-left: 10px;
|
|
416
|
+
// }
|
|
417
|
+
|
|
418
|
+
// button {
|
|
419
|
+
// &.ac-button {
|
|
420
|
+
// opacity: 0;
|
|
421
|
+
// visibility: hidden;
|
|
422
|
+
// transition: 0.3s ease-in-out;
|
|
423
|
+
// }
|
|
424
|
+
// }
|
|
425
|
+
// }
|
|
426
|
+
|
|
427
|
+
// &:hover {
|
|
428
|
+
// .state-left {
|
|
429
|
+
// button {
|
|
430
|
+
// &.ac-button {
|
|
431
|
+
// opacity: 1;
|
|
432
|
+
// visibility: visible;
|
|
433
|
+
// }
|
|
434
|
+
// }
|
|
435
|
+
// }
|
|
436
|
+
// }
|
|
437
|
+
// }
|
|
438
|
+
|
|
439
|
+
// .button {
|
|
440
|
+
// &.ac-button {
|
|
441
|
+
// &.is-hovered-underline {
|
|
442
|
+
// transition: 0.3s ease-in-out;
|
|
443
|
+
|
|
444
|
+
// &:hover {
|
|
445
|
+
// text-decoration: underline;
|
|
446
|
+
// }
|
|
447
|
+
// }
|
|
448
|
+
// }
|
|
449
|
+
// }
|
|
448
450
|
|
|
449
451
|
// final state end
|
|
450
452
|
|
|
451
|
-
.circle-list-shape {
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
}
|
|
459
|
-
|
|
460
|
-
.ac-selected-item {
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
}
|
|
453
|
+
// .circle-list-shape {
|
|
454
|
+
// border: 3px solid $primary-10;
|
|
455
|
+
// border-radius: 50%;
|
|
456
|
+
// width: 10px;
|
|
457
|
+
// height: 10px;
|
|
458
|
+
// margin-right: 10px;
|
|
459
|
+
// display: inline-block;
|
|
460
|
+
// }
|
|
461
|
+
|
|
462
|
+
// .ac-selected-item {
|
|
463
|
+
// .selected-left {
|
|
464
|
+
// .item-name {
|
|
465
|
+
// font-family: $font-paragraph;
|
|
466
|
+
// font-style: normal;
|
|
467
|
+
// font-weight: 500;
|
|
468
|
+
// font-size: 13px;
|
|
469
|
+
// line-height: 16px;
|
|
470
|
+
// color: $primary-10;
|
|
471
|
+
// }
|
|
472
|
+
|
|
473
|
+
// button {
|
|
474
|
+
// &.ac-button {
|
|
475
|
+
// opacity: 0;
|
|
476
|
+
// visibility: hidden;
|
|
477
|
+
// transition: 0.3s ease-in-out;
|
|
478
|
+
// }
|
|
479
|
+
// }
|
|
480
|
+
// }
|
|
481
|
+
|
|
482
|
+
// &:hover {
|
|
483
|
+
// .selected-left {
|
|
484
|
+
// button {
|
|
485
|
+
// &.ac-button {
|
|
486
|
+
// opacity: 1;
|
|
487
|
+
// visibility: visible;
|
|
488
|
+
// }
|
|
489
|
+
// }
|
|
490
|
+
// }
|
|
491
|
+
// }
|
|
492
|
+
// }
|
|
491
493
|
|
|
492
494
|
// key button start
|
|
493
|
-
.key-button {
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
}
|
|
495
|
+
// .key-button {
|
|
496
|
+
// display: grid;
|
|
497
|
+
// grid-template-columns: calc(100% - 135px) 120px;
|
|
498
|
+
// grid-gap: 15px;
|
|
499
|
+
// }
|
|
498
500
|
|
|
499
501
|
// key button end
|
|
500
502
|
|
|
501
503
|
// certificate section start
|
|
502
|
-
.ac-certificate-area {
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
}
|
|
543
|
-
|
|
544
|
-
.ac-certificate-info {
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
}
|
|
594
|
-
|
|
595
|
-
.ac-unordered-list-items {
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
}
|
|
504
|
+
// .ac-certificate-area {
|
|
505
|
+
// box-shadow: $ac-shadow-1;
|
|
506
|
+
// border-radius: 4px;
|
|
507
|
+
// background-color: $white-100;
|
|
508
|
+
|
|
509
|
+
// .list-items {
|
|
510
|
+
// padding: 10px;
|
|
511
|
+
// border-bottom: 1px solid $primary-90;
|
|
512
|
+
|
|
513
|
+
// &:last-child {
|
|
514
|
+
// border-bottom: none;
|
|
515
|
+
// }
|
|
516
|
+
|
|
517
|
+
// &.t-title {
|
|
518
|
+
// background-color: $table-header;
|
|
519
|
+
// border-radius: 4px 4px 0px 0px;
|
|
520
|
+
// border-bottom: none;
|
|
521
|
+
|
|
522
|
+
// li {
|
|
523
|
+
// font-weight: 500;
|
|
524
|
+
// color: $primary-5;
|
|
525
|
+
// }
|
|
526
|
+
// }
|
|
527
|
+
|
|
528
|
+
// li {
|
|
529
|
+
// width: 20%;
|
|
530
|
+
// font-family: $font-paragraph;
|
|
531
|
+
// font-style: normal;
|
|
532
|
+
// font-weight: normal;
|
|
533
|
+
// font-size: 13px;
|
|
534
|
+
// line-height: 16px;
|
|
535
|
+
// color: $primary-10;
|
|
536
|
+
// display: flex;
|
|
537
|
+
// align-items: center;
|
|
538
|
+
|
|
539
|
+
// &:last-child {
|
|
540
|
+
// justify-content: flex-end;
|
|
541
|
+
// }
|
|
542
|
+
// }
|
|
543
|
+
// }
|
|
544
|
+
// }
|
|
545
|
+
|
|
546
|
+
// .ac-certificate-info {
|
|
547
|
+
// padding: 10px 15px;
|
|
548
|
+
// background-color: $black-60;
|
|
549
|
+
// border-radius: 4px;
|
|
550
|
+
|
|
551
|
+
// .single-name-title {
|
|
552
|
+
// margin-bottom: 25px;
|
|
553
|
+
// width: calc(100% - 140px);
|
|
554
|
+
|
|
555
|
+
// &.has-single-button {
|
|
556
|
+
// width: calc(100% - 50px);
|
|
557
|
+
// }
|
|
558
|
+
|
|
559
|
+
// &:last-child {
|
|
560
|
+
// margin-bottom: 0;
|
|
561
|
+
// }
|
|
562
|
+
|
|
563
|
+
// label:not(.wizard-title) {
|
|
564
|
+
// font-family: $font-paragraph;
|
|
565
|
+
// font-style: normal;
|
|
566
|
+
// font-weight: normal;
|
|
567
|
+
// font-size: 13px;
|
|
568
|
+
// line-height: 18px;
|
|
569
|
+
// display: block;
|
|
570
|
+
// color: $primary-10;
|
|
571
|
+
// margin-bottom: 5px;
|
|
572
|
+
// }
|
|
573
|
+
// }
|
|
574
|
+
|
|
575
|
+
// .wizard-title,
|
|
576
|
+
// .wizard-title.has-line {
|
|
577
|
+
// span {
|
|
578
|
+
// background-color: $ac-label-text;
|
|
579
|
+
// }
|
|
580
|
+
// }
|
|
581
|
+
|
|
582
|
+
// button.button.ac-button.is-square.is-white {
|
|
583
|
+
// background-color: $white-100;
|
|
584
|
+
|
|
585
|
+
// &:hover {
|
|
586
|
+
// background-color: $primary-90;
|
|
587
|
+
// }
|
|
588
|
+
// }
|
|
589
|
+
|
|
590
|
+
// .line-title {
|
|
591
|
+
// span {
|
|
592
|
+
// background-color: $black-60;
|
|
593
|
+
// }
|
|
594
|
+
// }
|
|
595
|
+
// }
|
|
596
|
+
|
|
597
|
+
// .ac-unordered-list-items {
|
|
598
|
+
// li {
|
|
599
|
+
// display: flex;
|
|
600
|
+
// align-items: center;
|
|
601
|
+
// margin-bottom: 10px;
|
|
602
|
+
|
|
603
|
+
// &:last-child {
|
|
604
|
+
// margin-bottom: 0;
|
|
605
|
+
// }
|
|
606
|
+
|
|
607
|
+
// strong {
|
|
608
|
+
// font-family: $font-paragraph;
|
|
609
|
+
// font-style: normal;
|
|
610
|
+
// font-weight: 500;
|
|
611
|
+
// font-size: 13px;
|
|
612
|
+
// line-height: 16px;
|
|
613
|
+
// display: flex;
|
|
614
|
+
// align-items: center;
|
|
615
|
+
|
|
616
|
+
// /* Gray 1 */
|
|
617
|
+
|
|
618
|
+
// color: $primary-10;
|
|
619
|
+
// }
|
|
620
|
+
// }
|
|
621
|
+
// }
|
|
620
622
|
|
|
621
623
|
// certificate section end
|
|
622
624
|
|
|
623
625
|
// wizard title start
|
|
624
|
-
h1,
|
|
625
|
-
h2,
|
|
626
|
-
h3,
|
|
627
|
-
h4,
|
|
628
|
-
h5,
|
|
629
|
-
h6,
|
|
630
|
-
label {
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
}
|
|
701
|
-
|
|
702
|
-
button {
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
}
|
|
718
|
-
|
|
719
|
-
h5 {
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
}
|
|
626
|
+
// h1,
|
|
627
|
+
// h2,
|
|
628
|
+
// h3,
|
|
629
|
+
// h4,
|
|
630
|
+
// h5,
|
|
631
|
+
// h6,
|
|
632
|
+
// label {
|
|
633
|
+
// &.wizard-title {
|
|
634
|
+
// margin-bottom: 15px;
|
|
635
|
+
// position: relative;
|
|
636
|
+
// z-index: 1;
|
|
637
|
+
// display: inline-block;
|
|
638
|
+
|
|
639
|
+
// &.has-line {
|
|
640
|
+
// position: relative;
|
|
641
|
+
// z-index: 1;
|
|
642
|
+
// display: block;
|
|
643
|
+
|
|
644
|
+
// span {
|
|
645
|
+
// background-color: $white-100;
|
|
646
|
+
// padding-right: 8px;
|
|
647
|
+
// }
|
|
648
|
+
|
|
649
|
+
// &:after {
|
|
650
|
+
// position: absolute;
|
|
651
|
+
// content: "";
|
|
652
|
+
// left: 0;
|
|
653
|
+
// top: 50%;
|
|
654
|
+
// margin-top: -0.5px;
|
|
655
|
+
// width: 100%;
|
|
656
|
+
// height: 1px;
|
|
657
|
+
// background-color: $info-light;
|
|
658
|
+
// z-index: -1;
|
|
659
|
+
// }
|
|
660
|
+
// }
|
|
661
|
+
|
|
662
|
+
// span.inline-description {
|
|
663
|
+
// font-family: $font-paragraph;
|
|
664
|
+
// font-style: normal;
|
|
665
|
+
// font-weight: normal;
|
|
666
|
+
// font-size: 12px;
|
|
667
|
+
// line-height: 160%;
|
|
668
|
+
// color: $primary-10;
|
|
669
|
+
// transform: translate(5px, -2px);
|
|
670
|
+
// display: inline-block;
|
|
671
|
+
// }
|
|
672
|
+
|
|
673
|
+
// .is-required {
|
|
674
|
+
// display: inline-block;
|
|
675
|
+
// width: 10px;
|
|
676
|
+
// text-align: center;
|
|
677
|
+
// line-height: 4px;
|
|
678
|
+
// transform: translateY(-3px);
|
|
679
|
+
// }
|
|
680
|
+
|
|
681
|
+
// .button {
|
|
682
|
+
// &.is-information {
|
|
683
|
+
// background-color: transparent;
|
|
684
|
+
// padding: 0;
|
|
685
|
+
// height: auto;
|
|
686
|
+
// padding: 4px;
|
|
687
|
+
// border: none;
|
|
688
|
+
// z-index: 99;
|
|
689
|
+
// height: 30px;
|
|
690
|
+
// width: 30px;
|
|
691
|
+
// margin-top: -4px;
|
|
692
|
+
|
|
693
|
+
// &:focus {
|
|
694
|
+
// box-shadow: none;
|
|
695
|
+
// box-shadow: none;
|
|
696
|
+
// background-color: #cbe3f8;
|
|
697
|
+
// border-radius: 50%;
|
|
698
|
+
// }
|
|
699
|
+
// }
|
|
700
|
+
// }
|
|
701
|
+
// }
|
|
702
|
+
// }
|
|
703
|
+
|
|
704
|
+
// button {
|
|
705
|
+
// &.is-information {
|
|
706
|
+
// padding: 4px;
|
|
707
|
+
// height: 30px;
|
|
708
|
+
// width: 30px;
|
|
709
|
+
// margin-left: 5px;
|
|
710
|
+
// margin-top: -4px;
|
|
711
|
+
|
|
712
|
+
// &:focus {
|
|
713
|
+
// border: none;
|
|
714
|
+
// box-shadow: none;
|
|
715
|
+
// background-color: #cbe3f8;
|
|
716
|
+
// border-radius: 50%;
|
|
717
|
+
// }
|
|
718
|
+
// }
|
|
719
|
+
// }
|
|
720
|
+
|
|
721
|
+
// h5 {
|
|
722
|
+
// &.wizard-title {
|
|
723
|
+
// color: $primary-10;
|
|
724
|
+
|
|
725
|
+
// .is-required {
|
|
726
|
+
// transform: translateY(-2px);
|
|
727
|
+
// }
|
|
728
|
+
// }
|
|
729
|
+
// }
|
|
728
730
|
|
|
729
731
|
// wizard title end
|
|
730
732
|
|
|
731
733
|
// checkbox card start
|
|
732
|
-
.card-checkbox {
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
}
|
|
734
|
+
// .card-checkbox {
|
|
735
|
+
// width: 358px;
|
|
736
|
+
// height: 115px;
|
|
737
|
+
// border: 1px solid $ac-label-text;
|
|
738
|
+
// }
|
|
737
739
|
|
|
738
740
|
// checkbox card end
|
|
739
741
|
|
|
740
742
|
// card radio box start
|
|
741
|
-
.multiple-radio {
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
}
|
|
743
|
+
// .multiple-radio {
|
|
744
|
+
// height: auto;
|
|
745
|
+
|
|
746
|
+
// h5 {
|
|
747
|
+
// margin-bottom: 10px;
|
|
748
|
+
// font-family: $font-paragraph;
|
|
749
|
+
// font-style: normal;
|
|
750
|
+
// font-weight: 500;
|
|
751
|
+
// color: $primary-5;
|
|
752
|
+
// }
|
|
753
|
+
// }
|
|
752
754
|
|
|
753
755
|
// card radio box end
|
|
754
756
|
|
|
755
757
|
// Wizard Notification Area Start
|
|
756
|
-
.wizard-notification-area {
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
}
|
|
758
|
+
// .wizard-notification-area {
|
|
759
|
+
// background-color: $black-80;
|
|
760
|
+
// border-radius: 10px;
|
|
761
|
+
// padding: 10px;
|
|
762
|
+
// width: 100%;
|
|
763
|
+
|
|
764
|
+
// p {
|
|
765
|
+
// font-family: $font-paragraph;
|
|
766
|
+
// font-style: normal;
|
|
767
|
+
// font-size: 13px;
|
|
768
|
+
// line-height: 18px;
|
|
769
|
+
// color: $white-100;
|
|
770
|
+
// font-weight: 400;
|
|
771
|
+
|
|
772
|
+
// b {
|
|
773
|
+
// font-weight: 500;
|
|
774
|
+
|
|
775
|
+
// &.star-dots {
|
|
776
|
+
// font-family: $font-paragraph;
|
|
777
|
+
// font-style: normal;
|
|
778
|
+
// font-weight: bold;
|
|
779
|
+
// font-size: 20px;
|
|
780
|
+
// line-height: 23px;
|
|
781
|
+
// letter-spacing: 8px;
|
|
782
|
+
// color: $white-100;
|
|
783
|
+
// margin-top: 10px;
|
|
784
|
+
// display: block;
|
|
785
|
+
// }
|
|
786
|
+
// }
|
|
787
|
+
// }
|
|
788
|
+
// }
|
|
787
789
|
|
|
788
790
|
// Wizard Notification Area end
|
|
789
791
|
|
|
790
792
|
// inline input start
|
|
791
|
-
.ac-inline-input {
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
}
|
|
793
|
+
// .ac-inline-input {
|
|
794
|
+
// &.are-width-100 {
|
|
795
|
+
// .ac-counter {
|
|
796
|
+
// width: 100px;
|
|
797
|
+
// }
|
|
798
|
+
// }
|
|
799
|
+
|
|
800
|
+
// .ac-counter {
|
|
801
|
+
// border: 1px solid $primary-90;
|
|
802
|
+
// padding: 10px 5px;
|
|
803
|
+
// height: 40px;
|
|
804
|
+
// width: 60px;
|
|
805
|
+
// background-color: transparent;
|
|
806
|
+
// border-radius: 4px;
|
|
807
|
+
// text-align: center;
|
|
808
|
+
// font-family: $font-paragraph;
|
|
809
|
+
// font-weight: 500;
|
|
810
|
+
// font-size: 13px;
|
|
811
|
+
// line-height: 19px;
|
|
812
|
+
// color: $primary-10;
|
|
813
|
+
// margin: 0 10px 10px 0;
|
|
814
|
+
|
|
815
|
+
// &:focus {
|
|
816
|
+
// outline: none;
|
|
817
|
+
// border: 1px solid $primary;
|
|
818
|
+
// }
|
|
819
|
+
|
|
820
|
+
// &.is-selected {
|
|
821
|
+
// border: 1px solid $primary;
|
|
822
|
+
// background-color: $primary;
|
|
823
|
+
// color: $white-100;
|
|
824
|
+
// }
|
|
825
|
+
// }
|
|
826
|
+
// }
|
|
825
827
|
|
|
826
828
|
// inline input end
|
|
827
829
|
|
|
828
830
|
// dark theme start
|
|
829
|
-
.is-dark-theme {
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
831
|
+
// .is-dark-theme {
|
|
832
|
+
// h6.wizard-title.has-line:after {
|
|
833
|
+
// --ac-blue-light: $primary-20;
|
|
834
|
+
// }
|
|
835
|
+
|
|
836
|
+
// .ac-certificate-info {
|
|
837
|
+
// --ac-bg-light-gray: var(--dark-bg-light);
|
|
838
|
+
// }
|
|
839
|
+
// }
|
|
833
840
|
|
|
834
|
-
.ac-certificate-info {
|
|
835
|
-
--ac-bg-light-gray: var(--dark-bg-light);
|
|
836
|
-
}
|
|
837
|
-
}
|
|
838
841
|
// dark theme end
|
|
839
842
|
/****************************************
|
|
840
843
|
Responsive Classes
|
|
841
844
|
*****************************************/
|
|
842
845
|
// Extra small devices (portrait phones, less than 576px)
|
|
843
|
-
@media (max-width: 575.98px) {
|
|
844
|
-
}
|
|
846
|
+
@media (max-width: 575.98px) {}
|
|
845
847
|
|
|
846
848
|
// Small devices (landscape phones, 576px and up)
|
|
847
|
-
@media (min-width: 576px) and (max-width: 767.98px) {
|
|
848
|
-
}
|
|
849
|
+
@media (min-width: 576px) and (max-width: 767.98px) {}
|
|
849
850
|
|
|
850
851
|
// Medium devices (tablets, 768px and up)
|
|
851
|
-
@media (min-width: 768px) and (max-width: 991.98px) {
|
|
852
|
-
}
|
|
852
|
+
@media (min-width: 768px) and (max-width: 991.98px) {}
|
|
853
853
|
|
|
854
854
|
// Large devices (desktops, 992px and up)
|
|
855
|
-
@media (min-width: 992px) and (max-width: 1199.98px) {
|
|
856
|
-
}
|
|
855
|
+
@media (min-width: 992px) and (max-width: 1199.98px) {}
|
|
857
856
|
|
|
858
857
|
// Extra large devices (large desktops, 1200px and up)
|
|
859
|
-
@media (min-width: 1200px) {
|
|
860
|
-
}
|
|
858
|
+
@media (min-width: 1200px) {}
|