@appscode/design-system 1.0.43-alpha.8 → 1.0.43-alpha.83
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/base/utilities/_default.scss +277 -20
- package/base/utilities/_derived-variables.scss +0 -13
- package/base/utilities/_initial-variables.scss +78 -56
- package/base/utilities/_mixin.scss +10 -17
- package/base/utilities/_typography.scss +20 -7
- package/base/utilities/dark-theme.scss +25 -0
- package/components/_ac-accordion.scss +1 -0
- package/components/_ac-alert-box.scss +16 -9
- package/components/_ac-card.scss +54 -19
- package/components/_ac-code-highlight.scss +7 -1
- package/components/_ac-content-layout.scss +4 -4
- package/components/_ac-drag.scss +6 -6
- package/components/_ac-input.scss +68 -38
- package/components/_ac-modal.scss +5 -4
- package/components/_ac-multi-select.scss +196 -14
- package/components/_ac-options.scss +24 -13
- package/components/_ac-select-box.scss +15 -5
- package/components/_ac-table.scss +42 -33
- package/components/_ac-tabs.scss +72 -23
- package/components/_ac-tags.scss +2 -2
- package/components/_ac-terminal.scss +248 -0
- package/components/_app-drawer.scss +6 -6
- package/components/_breadcumb.scss +7 -2
- package/components/_buttons.scss +53 -27
- package/components/_card-body-wrapper.scss +3 -3
- package/components/_dashboard-header.scss +1 -1
- package/components/_direct-deploy.scss +69 -0
- package/components/_go-to-top.scss +1 -1
- package/components/_image-upload.scss +6 -4
- package/components/_left-sidebar-menu.scss +198 -46
- package/components/_monaco-editor.scss +1 -1
- package/components/_navbar.scss +103 -26
- package/components/_overview-info.scss +4 -4
- package/components/_overview-page.scss +1 -2
- package/components/_pagination.scss +10 -2
- package/components/_payment-card.scss +28 -12
- package/components/_preview-modal.scss +8 -8
- package/components/_pricing-table.scss +1 -1
- package/components/_progress-bar.scss +5 -5
- package/components/_subscription-card.scss +15 -8
- package/components/_table-of-content.scss +1 -1
- package/components/_tfa.scss +69 -0
- package/components/_widget-menu.scss +9 -9
- package/components/_wizard.scss +32 -20
- package/components/ac-toaster/_ac-toasted.scss +40 -8
- package/components/bbum/_card-team.scss +17 -9
- package/components/bbum/_information-center.scss +19 -5
- package/components/bbum/_mobile-desktop.scss +6 -6
- package/components/bbum/_post.scss +5 -4
- package/components/bbum/_sign-up-notification.scss +6 -6
- package/components/bbum/_single-post-preview.scss +9 -9
- package/components/bbum/_user-profile.scss +98 -90
- package/components/ui-builder/_ui-builder.scss +23 -9
- package/components/ui-builder/_vue-open-api.scss +98 -0
- package/layouts/_404.scss +2 -1
- package/layouts/_code-preview.scss +14 -7
- package/main.scss +2 -0
- package/package.json +1 -1
- package/plugins/theme.js +142 -0
- package/plugins/vue-toaster.js +6 -6
- package/vue-components/v2/card/PaymentCards.vue +11 -2
- package/vue-components/v2/editor/Editor.vue +37 -17
- package/vue-components/v2/modal/Modal.vue +10 -1
- package/vue-components/v2/navbar/Appdrawer.vue +10 -9
- package/vue-components/v2/navbar/ThemeMode.vue +120 -0
- package/vue-components/v2/preloader/Preloader.vue +5 -5
- package/vue-components/v2/sidebar/ClusterSwitcher.vue +126 -0
- package/vue-components/v2/table/TableRow.vue +1 -1
- package/vue-components/v2/table/table-cell/CellValue.vue +10 -1
- package/vue-components/v2/tabs/EditorTabs.vue +1 -1
- package/vue-components/v3/dropdown/DropdownMenu.vue +1 -1
- package/vue-components/v3/editor/Editor.vue +39 -19
- package/vue-components/v3/modal/Modal.vue +10 -1
- package/vue-components/v3/navbar/Appdrawer.vue +12 -7
- package/vue-components/v3/navbar/ThemeMode.vue +128 -0
- package/vue-components/v3/sidebar/ClusterSwitcher.vue +133 -0
- package/vue-components/v3/table/TableRow.vue +1 -1
- package/vue-components/v3/table/table-cell/CellValue.vue +9 -0
- package/vue-components/v3/tabs/EditorTabs.vue +1 -1
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
.ac-content-layout {
|
|
2
|
-
background: transparent;
|
|
2
|
+
background-color: transparent;
|
|
3
3
|
padding: 0;
|
|
4
4
|
border-radius: 0;
|
|
5
5
|
height: 100%;
|
|
6
6
|
border: none;
|
|
7
7
|
|
|
8
8
|
&.style-2 {
|
|
9
|
-
border: 1px solid $
|
|
9
|
+
border: 1px solid $ac-white-light;
|
|
10
10
|
box-shadow: none;
|
|
11
11
|
padding: 0;
|
|
12
12
|
border-radius: 4px;
|
|
13
13
|
|
|
14
14
|
.ac-content-header {
|
|
15
|
-
background: $
|
|
15
|
+
background-color: $ac-white-light;
|
|
16
16
|
|
|
17
17
|
&.is-bg-white {
|
|
18
18
|
.ac-cheader-left {
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
&.is-dark {
|
|
39
|
-
background-color: $ac-
|
|
39
|
+
background-color: $ac-color-heading;
|
|
40
40
|
|
|
41
41
|
.ac-content-header {
|
|
42
42
|
&.drag-n-drop {
|
package/components/_ac-drag.scss
CHANGED
|
@@ -19,13 +19,13 @@
|
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
.dragable-list-items {
|
|
22
|
-
background: $ac-
|
|
22
|
+
background-color: $ac-white-lighter;
|
|
23
23
|
border-radius: 4px;
|
|
24
24
|
max-height: 400px;
|
|
25
25
|
|
|
26
26
|
.is-highlight {
|
|
27
27
|
background-color: $ac-white;
|
|
28
|
-
border: 1px dashed $ac-
|
|
28
|
+
border: 1px dashed $ac-gray-lightest;
|
|
29
29
|
border-radius: 4px;
|
|
30
30
|
margin: 4px 0;
|
|
31
31
|
overflow: hidden;
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
padding-left: 40px;
|
|
37
37
|
|
|
38
38
|
&.is-not-change {
|
|
39
|
-
background-color: $ac-
|
|
39
|
+
background-color: $ac-white-lighter;
|
|
40
40
|
margin-left: -40px !important;
|
|
41
41
|
padding-left: 80px;
|
|
42
42
|
}
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
margin-left: -35px;
|
|
67
67
|
|
|
68
68
|
&:hover {
|
|
69
|
-
background: $ac-white;
|
|
69
|
+
background-color: $ac-white;
|
|
70
70
|
box-shadow: $ac-shadow-1;
|
|
71
71
|
cursor: move;
|
|
72
72
|
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
}
|
|
83
83
|
|
|
84
84
|
input[type="text"] {
|
|
85
|
-
background: $ac-white-light;
|
|
85
|
+
background-color: $ac-white-light;
|
|
86
86
|
border: none;
|
|
87
87
|
font-weight: 500;
|
|
88
88
|
padding: 4px 5px;
|
|
@@ -113,7 +113,7 @@
|
|
|
113
113
|
|
|
114
114
|
button {
|
|
115
115
|
border: none;
|
|
116
|
-
background: transparent;
|
|
116
|
+
background-color: transparent;
|
|
117
117
|
display: block;
|
|
118
118
|
cursor: pointer;
|
|
119
119
|
padding: 0 5px;
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
font-size: $font-size-small;
|
|
73
73
|
padding: 4px 7px;
|
|
74
74
|
height: 30px;
|
|
75
|
-
background: $ac-white;
|
|
75
|
+
background-color: $ac-white;
|
|
76
76
|
padding-right: 30px;
|
|
77
77
|
|
|
78
78
|
&[type="password"] {
|
|
@@ -123,8 +123,10 @@
|
|
|
123
123
|
|
|
124
124
|
&.show-label {
|
|
125
125
|
font-size: 12px;
|
|
126
|
+
color: $ac-color-value;
|
|
126
127
|
top: -9px;
|
|
127
128
|
font-weight: 500;
|
|
129
|
+
background-color: $ac-white;
|
|
128
130
|
}
|
|
129
131
|
}
|
|
130
132
|
|
|
@@ -166,11 +168,15 @@
|
|
|
166
168
|
label {
|
|
167
169
|
top: 8px;
|
|
168
170
|
font-size: $font-size-small;
|
|
171
|
+
&.switch-label {
|
|
172
|
+
top: 0;
|
|
173
|
+
}
|
|
169
174
|
|
|
170
175
|
&.show-label {
|
|
171
176
|
font-size: 12px;
|
|
172
177
|
top: -9px;
|
|
173
178
|
font-weight: 500;
|
|
179
|
+
color: $ac-color-value;
|
|
174
180
|
}
|
|
175
181
|
}
|
|
176
182
|
|
|
@@ -212,6 +218,9 @@
|
|
|
212
218
|
label {
|
|
213
219
|
top: 8px;
|
|
214
220
|
font-size: $font-size-small;
|
|
221
|
+
&.switch-label {
|
|
222
|
+
top: 0;
|
|
223
|
+
}
|
|
215
224
|
|
|
216
225
|
&.show-label {
|
|
217
226
|
font-size: 12px;
|
|
@@ -236,7 +245,7 @@
|
|
|
236
245
|
|
|
237
246
|
&.is-dark {
|
|
238
247
|
input {
|
|
239
|
-
background: $ac-
|
|
248
|
+
background-color: $ac-color-heading;
|
|
240
249
|
border-color: transparent;
|
|
241
250
|
color: $ac-white;
|
|
242
251
|
|
|
@@ -257,7 +266,7 @@
|
|
|
257
266
|
left: 15px;
|
|
258
267
|
top: 11px;
|
|
259
268
|
cursor: text;
|
|
260
|
-
color: $ac-
|
|
269
|
+
color: $ac-label-text;
|
|
261
270
|
position: absolute;
|
|
262
271
|
z-index: 2;
|
|
263
272
|
transition: 0.3s ease-in-out;
|
|
@@ -277,14 +286,14 @@
|
|
|
277
286
|
left: 10px;
|
|
278
287
|
padding: 0 5px;
|
|
279
288
|
font-size: $font-size-small;
|
|
280
|
-
color: $ac-
|
|
289
|
+
color: $ac-color-value;
|
|
281
290
|
|
|
282
291
|
&:after {
|
|
283
292
|
position: absolute;
|
|
284
293
|
content: "";
|
|
285
294
|
left: 0;
|
|
286
295
|
top: 50%;
|
|
287
|
-
background: $ac-white;
|
|
296
|
+
background-color: $ac-white;
|
|
288
297
|
width: 100%;
|
|
289
298
|
height: 2px;
|
|
290
299
|
margin-top: -1px;
|
|
@@ -301,7 +310,7 @@
|
|
|
301
310
|
|
|
302
311
|
.button {
|
|
303
312
|
&.is-information {
|
|
304
|
-
background: transparent;
|
|
313
|
+
background-color: transparent;
|
|
305
314
|
border: none;
|
|
306
315
|
position: absolute;
|
|
307
316
|
right: 0;
|
|
@@ -312,14 +321,14 @@
|
|
|
312
321
|
&:focus {
|
|
313
322
|
outline: none;
|
|
314
323
|
box-shadow: none;
|
|
315
|
-
background: #e4e8ef;
|
|
324
|
+
background-color: #e4e8ef;
|
|
316
325
|
transform: scale(0.8);
|
|
317
326
|
}
|
|
318
327
|
}
|
|
319
328
|
}
|
|
320
329
|
|
|
321
330
|
.ac-search-button {
|
|
322
|
-
background: transparent;
|
|
331
|
+
background-color: transparent;
|
|
323
332
|
border: none;
|
|
324
333
|
position: absolute;
|
|
325
334
|
left: 0;
|
|
@@ -327,13 +336,13 @@
|
|
|
327
336
|
width: 35px;
|
|
328
337
|
height: 100%;
|
|
329
338
|
margin-top: -22.5px;
|
|
330
|
-
color: $ac-
|
|
339
|
+
color: $ac-label-text;
|
|
331
340
|
cursor: pointer;
|
|
332
341
|
}
|
|
333
342
|
|
|
334
343
|
.ac-dropdown-content {
|
|
335
344
|
position: absolute;
|
|
336
|
-
background: $ac-
|
|
345
|
+
background-color: $ac-blue-light;
|
|
337
346
|
width: 100%;
|
|
338
347
|
height: auto;
|
|
339
348
|
box-shadow: 0px 4px 16px rgba(132, 147, 168, 0.6);
|
|
@@ -350,7 +359,7 @@
|
|
|
350
359
|
transition: 0.3s;
|
|
351
360
|
|
|
352
361
|
&:hover {
|
|
353
|
-
background: hsla(
|
|
362
|
+
background-color: hsla(
|
|
354
363
|
var(--hsl-hue),
|
|
355
364
|
var(--hsl-saturation),
|
|
356
365
|
var(--hsl-lightness),
|
|
@@ -364,25 +373,24 @@
|
|
|
364
373
|
}
|
|
365
374
|
|
|
366
375
|
.ac-textarea {
|
|
367
|
-
border: 1px solid $ac-
|
|
368
|
-
border-radius: 4px;
|
|
369
|
-
padding: 10px 0 5px 0;
|
|
370
|
-
// background-color: $ac-
|
|
371
|
-
transition: background-color 0.3s ease-in-out;
|
|
376
|
+
// border: 1px solid $ac-label-text;
|
|
377
|
+
// border-radius: 4px;
|
|
378
|
+
// padding: 10px 0 5px 0;
|
|
379
|
+
// // background-color: $ac-blue-light;
|
|
380
|
+
// transition: background-color 0.3s ease-in-out;
|
|
372
381
|
|
|
373
382
|
textarea {
|
|
374
|
-
border:
|
|
383
|
+
border: 1px solid $ac-label-text;
|
|
375
384
|
background-color: transparent;
|
|
376
|
-
padding
|
|
377
|
-
|
|
378
|
-
|
|
385
|
+
padding: 10px 15px;
|
|
386
|
+
min-height: 50px;
|
|
379
387
|
&.bg-white {
|
|
380
388
|
background-color: transparent;
|
|
381
389
|
}
|
|
382
390
|
|
|
383
391
|
&:focus {
|
|
384
392
|
outline: none;
|
|
385
|
-
border:
|
|
393
|
+
border: 1px solid $ac-primary;
|
|
386
394
|
}
|
|
387
395
|
}
|
|
388
396
|
}
|
|
@@ -391,22 +399,25 @@
|
|
|
391
399
|
.ac-card,
|
|
392
400
|
textarea {
|
|
393
401
|
background-color: $ac-white;
|
|
402
|
+
color: $ac-color-text;
|
|
394
403
|
height: 45px;
|
|
395
404
|
font-weight: 400;
|
|
396
405
|
width: 100%;
|
|
397
406
|
border-radius: 4px;
|
|
398
|
-
border: 1px solid $ac-
|
|
407
|
+
border: 1px solid $ac-label-text;
|
|
399
408
|
padding: 8px 15px;
|
|
400
409
|
font-size: $font-size-small;
|
|
401
410
|
|
|
402
411
|
&:hover {
|
|
403
|
-
border-color: $ac-
|
|
412
|
+
border-color: $ac-gray-lightest;
|
|
404
413
|
}
|
|
405
414
|
|
|
406
415
|
&.bg-white {
|
|
407
416
|
background-color: $ac-white;
|
|
408
417
|
}
|
|
409
|
-
|
|
418
|
+
&.StripeElement--focus {
|
|
419
|
+
border: 1px solid $ac-primary;
|
|
420
|
+
}
|
|
410
421
|
&:focus {
|
|
411
422
|
border: 1px solid $ac-primary;
|
|
412
423
|
outline: none;
|
|
@@ -443,11 +454,12 @@
|
|
|
443
454
|
|
|
444
455
|
span.eye {
|
|
445
456
|
i.fa {
|
|
446
|
-
color: $ac-
|
|
457
|
+
color: $ac-label-text;
|
|
447
458
|
position: absolute;
|
|
448
459
|
cursor: pointer;
|
|
449
460
|
padding: 15px;
|
|
450
461
|
right: 0;
|
|
462
|
+
top: 0;
|
|
451
463
|
}
|
|
452
464
|
}
|
|
453
465
|
|
|
@@ -482,7 +494,7 @@
|
|
|
482
494
|
top: 10px;
|
|
483
495
|
z-index: 1;
|
|
484
496
|
font-size: $font-size-small;
|
|
485
|
-
color: $ac-
|
|
497
|
+
color: $ac-label-text;
|
|
486
498
|
font-weight: 400;
|
|
487
499
|
}
|
|
488
500
|
}
|
|
@@ -502,11 +514,11 @@
|
|
|
502
514
|
}
|
|
503
515
|
|
|
504
516
|
label {
|
|
505
|
-
background-color:
|
|
517
|
+
background-color: transparent;
|
|
506
518
|
height: 36px;
|
|
507
519
|
font-weight: 400;
|
|
508
520
|
border-radius: 4px;
|
|
509
|
-
border: 1px solid $ac-
|
|
521
|
+
border: 1px solid $ac-label-text;
|
|
510
522
|
font-size: $font-size-small;
|
|
511
523
|
|
|
512
524
|
.file-cta {
|
|
@@ -515,7 +527,7 @@
|
|
|
515
527
|
}
|
|
516
528
|
|
|
517
529
|
&:hover {
|
|
518
|
-
border-color: $ac-
|
|
530
|
+
border-color: $ac-gray-lightest;
|
|
519
531
|
}
|
|
520
532
|
|
|
521
533
|
&.bg-white {
|
|
@@ -531,19 +543,19 @@
|
|
|
531
543
|
}
|
|
532
544
|
|
|
533
545
|
input#captcha {
|
|
534
|
-
background-color:
|
|
546
|
+
background-color: $ac-white;
|
|
535
547
|
height: 36px;
|
|
536
548
|
font-weight: 400;
|
|
537
549
|
width: 100%;
|
|
538
550
|
border-radius: 4px;
|
|
539
|
-
border: 1px solid
|
|
551
|
+
border: 1px solid $ac-white-light;
|
|
540
552
|
padding: 8px 15px;
|
|
541
553
|
font-size: 13px;
|
|
542
554
|
transition: background-color 0.3s ease-in-out;
|
|
543
555
|
|
|
544
556
|
&:focus {
|
|
545
557
|
outline: none;
|
|
546
|
-
border-bottom: 1px solid $ac-
|
|
558
|
+
border-bottom: 1px solid $ac-label-text;
|
|
547
559
|
}
|
|
548
560
|
}
|
|
549
561
|
|
|
@@ -567,7 +579,7 @@ input#captcha {
|
|
|
567
579
|
.is-checkradio[type="checkbox"].ac-checkbox + label::after {
|
|
568
580
|
top: 6px;
|
|
569
581
|
left: 6px;
|
|
570
|
-
border-color:
|
|
582
|
+
border-color: $ac-gray-lightest;
|
|
571
583
|
width: 0.3rem;
|
|
572
584
|
height: 0.5rem;
|
|
573
585
|
}
|
|
@@ -577,7 +589,7 @@ input#captcha {
|
|
|
577
589
|
}
|
|
578
590
|
|
|
579
591
|
.is-checkradio[type="checkbox"].ac-checkbox + label {
|
|
580
|
-
color: $ac-
|
|
592
|
+
color: $ac-color-text;
|
|
581
593
|
font-size: 13px !important;
|
|
582
594
|
padding-left: 25px;
|
|
583
595
|
user-select: none;
|
|
@@ -588,7 +600,7 @@ input#captcha {
|
|
|
588
600
|
}
|
|
589
601
|
|
|
590
602
|
.is-checkradio[type="checkbox"].ac-checkbox + label {
|
|
591
|
-
color: $ac-
|
|
603
|
+
color: $ac-color-text;
|
|
592
604
|
font-size: 13px;
|
|
593
605
|
padding-left: 25px;
|
|
594
606
|
user-select: none;
|
|
@@ -619,6 +631,7 @@ input#captcha {
|
|
|
619
631
|
user-select: none;
|
|
620
632
|
font-size: 13px;
|
|
621
633
|
font-weight: 400;
|
|
634
|
+
color: $ac-color-text;
|
|
622
635
|
|
|
623
636
|
&::before {
|
|
624
637
|
background-color: #cad3df;
|
|
@@ -661,6 +674,9 @@ input#captcha {
|
|
|
661
674
|
.switch {
|
|
662
675
|
&[type="checkbox"] + label {
|
|
663
676
|
padding-top: 3px;
|
|
677
|
+
&::before {
|
|
678
|
+
background-color: $ac-gray-light;
|
|
679
|
+
}
|
|
664
680
|
}
|
|
665
681
|
|
|
666
682
|
&.ac-switch {
|
|
@@ -703,17 +719,17 @@ input#captcha {
|
|
|
703
719
|
|
|
704
720
|
input {
|
|
705
721
|
border: none;
|
|
706
|
-
background: transparent;
|
|
722
|
+
background-color: transparent;
|
|
707
723
|
font-size: 18px;
|
|
708
724
|
font-weight: 400;
|
|
709
725
|
font-family: $ac-family-heading;
|
|
710
|
-
color:
|
|
726
|
+
color: $ac-color-value;
|
|
711
727
|
width: 100%;
|
|
712
728
|
padding: 5px 0;
|
|
713
729
|
|
|
714
730
|
&:focus {
|
|
715
731
|
outline: none;
|
|
716
|
-
border-bottom: 1px solid $ac-
|
|
732
|
+
border-bottom: 1px solid $ac-label-text;
|
|
717
733
|
}
|
|
718
734
|
}
|
|
719
735
|
}
|
|
@@ -762,7 +778,21 @@ input#captcha {
|
|
|
762
778
|
}
|
|
763
779
|
}
|
|
764
780
|
}
|
|
781
|
+
// dark theme start
|
|
782
|
+
.is-dark-theme {
|
|
783
|
+
.ac-single-input {
|
|
784
|
+
input,
|
|
785
|
+
.file-input,
|
|
786
|
+
.ac-dropdown-content {
|
|
787
|
+
background-color: transparent;
|
|
788
|
+
}
|
|
765
789
|
|
|
790
|
+
label {
|
|
791
|
+
color: $ac-label-text;
|
|
792
|
+
}
|
|
793
|
+
}
|
|
794
|
+
}
|
|
795
|
+
// dark theme end
|
|
766
796
|
/****************************************
|
|
767
797
|
Responsive Classes
|
|
768
798
|
*****************************************/
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
top: 0;
|
|
16
16
|
width: 100%;
|
|
17
17
|
height: 100%;
|
|
18
|
-
background:
|
|
18
|
+
background-color: $ac-black;
|
|
19
19
|
z-index: -1;
|
|
20
20
|
opacity: 0.5;
|
|
21
21
|
}
|
|
@@ -47,13 +47,13 @@
|
|
|
47
47
|
|
|
48
48
|
.ac-modal-inner {
|
|
49
49
|
margin: 0 auto;
|
|
50
|
-
background: $ac-white;
|
|
50
|
+
background-color: $ac-white;
|
|
51
51
|
border-radius: 4px;
|
|
52
52
|
overflow: hidden;
|
|
53
53
|
box-shadow: 12px 26px 118px rgba(0, 0, 0, 0.16);
|
|
54
54
|
|
|
55
55
|
.ac-modal-header {
|
|
56
|
-
background: $ac-white;
|
|
56
|
+
background-color: $ac-white;
|
|
57
57
|
padding: 10px 20px;
|
|
58
58
|
display: flex;
|
|
59
59
|
align-items: center;
|
|
@@ -96,6 +96,7 @@
|
|
|
96
96
|
&.is-description {
|
|
97
97
|
font-family: $ac-family-heading;
|
|
98
98
|
font-weight: 400;
|
|
99
|
+
color: $ac-color-value;
|
|
99
100
|
|
|
100
101
|
strong {
|
|
101
102
|
font-weight: 500;
|
|
@@ -107,7 +108,7 @@
|
|
|
107
108
|
}
|
|
108
109
|
|
|
109
110
|
.ac-modal-footer {
|
|
110
|
-
border-top: 1px solid $ac-
|
|
111
|
+
border-top: 1px solid $ac-white-light;
|
|
111
112
|
padding: 10px 20px;
|
|
112
113
|
}
|
|
113
114
|
}
|