@agorapulse/ui-theme 20.1.4 → 20.1.6
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/agorapulse-ui-theme-20.1.6.tgz +0 -0
- package/assets/desktop_variables.css +11 -1
- package/assets/mobile_variables.css +11 -1
- package/assets/style/_helpers.scss +4 -4
- package/assets/style/_mat-typography.scss +3 -3
- package/assets/style/_variables.scss +26 -25
- package/assets/style/components-custom-style/_alert.scss +9 -8
- package/assets/style/components-custom-style/_clickable-text.scss +3 -2
- package/assets/style/components-custom-style/_input-error.scss +5 -4
- package/assets/style/components-custom-style/_mat-button-toggle-group.scss +15 -14
- package/assets/style/components-custom-style/_mat-button.scss +102 -101
- package/assets/style/components-custom-style/_mat-dialog.scss +9 -9
- package/assets/style/components-custom-style/_mat-divider.scss +4 -1
- package/assets/style/components-custom-style/_mat-expansion-panel.scss +3 -3
- package/assets/style/components-custom-style/_mat-list.scss +4 -4
- package/assets/style/components-custom-style/_mat-menu.scss +21 -20
- package/assets/style/components-custom-style/_mat-snack-bar.scss +17 -16
- package/assets/style/components-custom-style/_ng-select.scss +29 -28
- package/assets/style/components-custom-style/_notification.scss +22 -21
- package/assets/style/components-custom-style/_reduction.scss +8 -7
- package/assets/style/components-custom-style/_select.scss +8 -8
- package/assets/style/components-custom-style/_sign.scss +5 -4
- package/assets/style/theme.scss +66 -57
- package/package.json +1 -1
- package/src/tokens/components/tabs.json +0 -5
- package/src/tokens/system/settings.json +65 -0
- package/agorapulse-ui-theme-20.1.4.tgz +0 -0
|
@@ -1,14 +1,15 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use '../variables' as vars;
|
|
2
|
+
@use 'sass:map';
|
|
2
3
|
|
|
3
4
|
%ap-button {
|
|
4
|
-
color:
|
|
5
|
+
color: map.get(vars.$colors-grey, 80);
|
|
5
6
|
font-weight: bold;
|
|
6
7
|
min-width: 100px;
|
|
7
8
|
line-height: 16px;
|
|
8
|
-
padding: 10px
|
|
9
|
+
padding: 10px vars.$padding-m;
|
|
9
10
|
height: 36px;
|
|
10
11
|
&.active {
|
|
11
|
-
color:
|
|
12
|
+
color: map.get(vars.$colors-electric-blue, 100);
|
|
12
13
|
}
|
|
13
14
|
|
|
14
15
|
.mat-button-wrapper {
|
|
@@ -18,10 +19,10 @@
|
|
|
18
19
|
ap-symbol {
|
|
19
20
|
display: inline-block;
|
|
20
21
|
&.left-symbol {
|
|
21
|
-
margin-right:
|
|
22
|
+
margin-right: vars.$padding-s;
|
|
22
23
|
}
|
|
23
24
|
&.right-symbol {
|
|
24
|
-
margin-left:
|
|
25
|
+
margin-left: vars.$padding-s;
|
|
25
26
|
}
|
|
26
27
|
height: 16px;
|
|
27
28
|
width: 16px;
|
|
@@ -51,15 +52,15 @@
|
|
|
51
52
|
font-size: 12px;
|
|
52
53
|
line-height: 12px;
|
|
53
54
|
height: 28px;
|
|
54
|
-
padding:
|
|
55
|
+
padding: vars.$padding-s;
|
|
55
56
|
ap-symbol {
|
|
56
57
|
height: 12px;
|
|
57
58
|
width: 12px;
|
|
58
59
|
&.left-symbol {
|
|
59
|
-
margin-right:
|
|
60
|
+
margin-right: vars.$padding-sl;
|
|
60
61
|
}
|
|
61
62
|
&.right-symbol {
|
|
62
|
-
margin-left:
|
|
63
|
+
margin-left: vars.$padding-sl;
|
|
63
64
|
}
|
|
64
65
|
}
|
|
65
66
|
}
|
|
@@ -67,7 +68,7 @@
|
|
|
67
68
|
font-size: 14px;
|
|
68
69
|
line-height: 14px;
|
|
69
70
|
height: 32px;
|
|
70
|
-
padding: 9px
|
|
71
|
+
padding: 9px vars.$padding-ml;
|
|
71
72
|
ap-symbol {
|
|
72
73
|
height: 14px;
|
|
73
74
|
width: 14px;
|
|
@@ -83,15 +84,15 @@
|
|
|
83
84
|
font-size: 16px;
|
|
84
85
|
line-height: 16px;
|
|
85
86
|
height: 44px;
|
|
86
|
-
padding: 14px
|
|
87
|
+
padding: 14px vars.$padding-l;
|
|
87
88
|
ap-symbol {
|
|
88
89
|
height: 16px;
|
|
89
90
|
width: 16px;
|
|
90
91
|
&.left-symbol {
|
|
91
|
-
margin-right:
|
|
92
|
+
margin-right: vars.$padding-s;
|
|
92
93
|
}
|
|
93
94
|
&.right-symbol {
|
|
94
|
-
margin-left:
|
|
95
|
+
margin-left: vars.$padding-s;
|
|
95
96
|
}
|
|
96
97
|
}
|
|
97
98
|
}
|
|
@@ -117,17 +118,17 @@
|
|
|
117
118
|
}
|
|
118
119
|
&.active {
|
|
119
120
|
ap-symbol {
|
|
120
|
-
color:
|
|
121
|
+
color: map.get(vars.$colors-electric-blue, 100);
|
|
121
122
|
}
|
|
122
123
|
}
|
|
123
124
|
&:not(.mat-accent):not(.mat-primary):not(.mat-success):not(.mat-warn):not(.mat-secondary):not(.mat-facebook):not(
|
|
124
125
|
.mat-instagram
|
|
125
126
|
):not(.mat-linkedin):not(.mat-twitter):not(.mat-youtube):not(.active):not(.locked) {
|
|
126
127
|
ap-symbol {
|
|
127
|
-
color:
|
|
128
|
+
color: map.get(vars.$colors-grey, 60);
|
|
128
129
|
}
|
|
129
130
|
&.animated ap-symbol {
|
|
130
|
-
color:
|
|
131
|
+
color: map.get(vars.$colors-electric-blue, 100);
|
|
131
132
|
}
|
|
132
133
|
}
|
|
133
134
|
}
|
|
@@ -168,8 +169,8 @@
|
|
|
168
169
|
height: 16px;
|
|
169
170
|
box-sizing: border-box;
|
|
170
171
|
border-radius: 50%;
|
|
171
|
-
border-top: 2px solid
|
|
172
|
-
border-right: 2px solid
|
|
172
|
+
border-top: 2px solid map.get(vars.$colors-electric-blue, 100);
|
|
173
|
+
border-right: 2px solid map.get(vars.$colors-electric-blue, 100);
|
|
173
174
|
animation:
|
|
174
175
|
spin 1s linear infinite,
|
|
175
176
|
fadein 0.4s linear 1 forwards;
|
|
@@ -191,7 +192,7 @@
|
|
|
191
192
|
&:not(.circle):not(.square) .animation {
|
|
192
193
|
position: absolute;
|
|
193
194
|
bottom: 0;
|
|
194
|
-
background-color:
|
|
195
|
+
background-color: map.get(vars.$colors-orange, 100);
|
|
195
196
|
height: 5px;
|
|
196
197
|
width: 50%;
|
|
197
198
|
border-radius: 6px;
|
|
@@ -272,21 +273,21 @@ button.mat-flat-button {
|
|
|
272
273
|
background-color: transparent;
|
|
273
274
|
&:not([disabled]):hover,
|
|
274
275
|
&.force-hover {
|
|
275
|
-
background-color:
|
|
276
|
+
background-color: map.get(vars.$colors-grey, 5);
|
|
276
277
|
&.active {
|
|
277
|
-
background-color:
|
|
278
|
+
background-color: map.get(vars.$colors-electric-blue, 10);
|
|
278
279
|
}
|
|
279
280
|
}
|
|
280
281
|
&:not([disabled]):active {
|
|
281
|
-
background-color:
|
|
282
|
+
background-color: map.get(vars.$colors-grey, 10);
|
|
282
283
|
&.active {
|
|
283
|
-
background-color:
|
|
284
|
+
background-color: map.get(vars.$colors-electric-blue, 20);
|
|
284
285
|
}
|
|
285
286
|
}
|
|
286
287
|
&[disabled],
|
|
287
288
|
&[disabled][disabled] {
|
|
288
289
|
background: none;
|
|
289
|
-
color:
|
|
290
|
+
color: map.get(vars.$colors-grey, 20);
|
|
290
291
|
}
|
|
291
292
|
&.mat-accent[disabled],
|
|
292
293
|
&.mat-primary[disabled],
|
|
@@ -299,43 +300,43 @@ button.mat-flat-button {
|
|
|
299
300
|
&.mat-twitter[disabled],
|
|
300
301
|
&.mat-youtube[disabled],
|
|
301
302
|
&.mat-google[disabled] {
|
|
302
|
-
background-color:
|
|
303
|
+
background-color: map.get(vars.$colors-grey, 20);
|
|
303
304
|
color: #fff;
|
|
304
305
|
}
|
|
305
306
|
&.mat-accent {
|
|
306
307
|
@include flat-button-color(
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
308
|
+
map.get(vars.$colors-electric-blue, 100),
|
|
309
|
+
map.get(vars.$colors-electric-blue, 85),
|
|
310
|
+
map.get(vars.$colors-electric-blue, 60)
|
|
310
311
|
);
|
|
311
312
|
}
|
|
312
313
|
&.mat-primary {
|
|
313
|
-
@include flat-button-color(
|
|
314
|
+
@include flat-button-color(map.get(vars.$colors-orange, 100), map.get(vars.$colors-orange, 85), map.get(vars.$colors-orange, 60));
|
|
314
315
|
}
|
|
315
316
|
&.mat-success {
|
|
316
|
-
@include flat-button-color(
|
|
317
|
+
@include flat-button-color(map.get(vars.$colors-green, 100), map.get(vars.$colors-green, 85), map.get(vars.$colors-green, 60));
|
|
317
318
|
}
|
|
318
319
|
&.mat-warn {
|
|
319
|
-
@include flat-button-color(
|
|
320
|
+
@include flat-button-color(map.get(vars.$colors-red, 100), map.get(vars.$colors-red, 85), map.get(vars.$colors-red, 60));
|
|
320
321
|
}
|
|
321
322
|
// Social networks
|
|
322
323
|
&.mat-facebook {
|
|
323
|
-
@include flat-button-color(
|
|
324
|
+
@include flat-button-color(vars.$color-facebook, vars.$color-facebook, vars.$color-facebook);
|
|
324
325
|
}
|
|
325
326
|
&.mat-instagram {
|
|
326
|
-
@include flat-button-color(
|
|
327
|
+
@include flat-button-color(vars.$color-instagram, vars.$color-instagram, vars.$color-instagram);
|
|
327
328
|
}
|
|
328
329
|
&.mat-linkedin {
|
|
329
|
-
@include flat-button-color(
|
|
330
|
+
@include flat-button-color(vars.$color-linkedin, vars.$color-linkedin, vars.$color-linkedin);
|
|
330
331
|
}
|
|
331
332
|
&.mat-twitter {
|
|
332
|
-
@include flat-button-color(
|
|
333
|
+
@include flat-button-color(vars.$color-twitter, vars.$color-twitter, vars.$color-twitter);
|
|
333
334
|
}
|
|
334
335
|
&.mat-youtube {
|
|
335
|
-
@include flat-button-color(
|
|
336
|
+
@include flat-button-color(vars.$color-youtube, vars.$color-youtube, vars.$color-youtube);
|
|
336
337
|
}
|
|
337
338
|
&.mat-google {
|
|
338
|
-
@include flat-button-color(
|
|
339
|
+
@include flat-button-color(vars.$color-google, vars.$color-google, vars.$color-google);
|
|
339
340
|
}
|
|
340
341
|
}
|
|
341
342
|
|
|
@@ -393,26 +394,26 @@ button.mat-flat-button {
|
|
|
393
394
|
button.mat-stroked-button {
|
|
394
395
|
&.ghost {
|
|
395
396
|
border: none;
|
|
396
|
-
color:
|
|
397
|
+
color: map.get(vars.$colors-grey, 80);
|
|
397
398
|
ap-symbol {
|
|
398
|
-
color:
|
|
399
|
+
color: map.get(vars.$colors-grey, 60);
|
|
399
400
|
}
|
|
400
401
|
&:hover,
|
|
401
402
|
&.force-hover {
|
|
402
|
-
background-color:
|
|
403
|
+
background-color: map.get(vars.$colors-grey, 10);
|
|
403
404
|
}
|
|
404
405
|
&:active {
|
|
405
|
-
background-color:
|
|
406
|
+
background-color: map.get(vars.$colors-grey, 20);
|
|
406
407
|
}
|
|
407
408
|
&[disabled] {
|
|
408
409
|
background-color: transparent;
|
|
409
|
-
color:
|
|
410
|
+
color: map.get(vars.$colors-grey, 20);
|
|
410
411
|
}
|
|
411
412
|
}
|
|
412
413
|
&.locked {
|
|
413
|
-
background-color:
|
|
414
|
-
border: 1px solid
|
|
415
|
-
color:
|
|
414
|
+
background-color: map.get(vars.$colors-purple, 10);
|
|
415
|
+
border: 1px solid map.get(vars.$colors-purple, 20);
|
|
416
|
+
color: map.get(vars.$colors-purple, 100);
|
|
416
417
|
position: relative;
|
|
417
418
|
|
|
418
419
|
&:after {
|
|
@@ -427,132 +428,132 @@ button.mat-stroked-button {
|
|
|
427
428
|
content: url("data:image/svg+xml;charset=UTF-8, <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 0a12 12 0 1 0 12 12A12.015 12.014 0 0 0 12 0Zm5.34 17.693a.912.912 0 0 1-1.297 1.14l-3.852-2.168a.386.387 0 0 0-.38 0L7.96 18.833a.911.911 0 0 1-1.298-1.14l1.567-3.603a.384.384 0 0 0-.083-.43l-2.83-2.787a.85.84 0 0 1 .598-1.487h3.232a.385.385 0 0 0 .351-.223l1.685-3.628a.92.92 0 0 1 1.637 0l1.684 3.628a.386.386 0 0 0 .352.223h3.23a.851.851 0 0 1 .602 1.487l-2.829 2.787a.384.384 0 0 0-.084.43l1.567 3.603Z' fill='%236554C0'/></svg>");
|
|
428
429
|
}
|
|
429
430
|
&:hover {
|
|
430
|
-
background-color:
|
|
431
|
-
border: 1px solid
|
|
431
|
+
background-color: map.get(vars.$colors-purple, 20);
|
|
432
|
+
border: 1px solid map.get(vars.$colors-purple, 40);
|
|
432
433
|
}
|
|
433
434
|
&:focus-visible {
|
|
434
|
-
background-color:
|
|
435
|
-
border: 1px solid
|
|
435
|
+
background-color: map.get(vars.$colors-purple, 20);
|
|
436
|
+
border: 1px solid map.get(vars.$colors-purple, 20);
|
|
436
437
|
box-shadow:
|
|
437
|
-
0 0 0 1px
|
|
438
|
-
0 0 0 3px
|
|
438
|
+
0 0 0 1px vars.$color-white,
|
|
439
|
+
0 0 0 3px map.get(vars.$colors-electric-blue, 100);
|
|
439
440
|
}
|
|
440
441
|
&:active {
|
|
441
|
-
background:
|
|
442
|
-
border: 1px solid
|
|
442
|
+
background: map.get(vars.$colors-purple, 40);
|
|
443
|
+
border: 1px solid map.get(vars.$colors-purple, 60);
|
|
443
444
|
}
|
|
444
445
|
}
|
|
445
446
|
|
|
446
447
|
@extend %ap-button;
|
|
447
448
|
&.background-grey {
|
|
448
|
-
background-color:
|
|
449
|
+
background-color: vars.$color-grey-background;
|
|
449
450
|
}
|
|
450
451
|
&.background-white {
|
|
451
|
-
background-color:
|
|
452
|
+
background-color: vars.$color-white;
|
|
452
453
|
}
|
|
453
454
|
&:not([disabled]),
|
|
454
455
|
&:not(.locked) {
|
|
455
|
-
border-color:
|
|
456
|
+
border-color: map.get(vars.$colors-grey, 20);
|
|
456
457
|
&.active {
|
|
457
|
-
border-color:
|
|
458
|
+
border-color: map.get(vars.$colors-electric-blue, 100);
|
|
458
459
|
}
|
|
459
460
|
}
|
|
460
461
|
&:not([disabled]):hover,
|
|
461
462
|
&.force-hover {
|
|
462
|
-
border-color:
|
|
463
|
+
border-color: map.get(vars.$colors-grey, 40);
|
|
463
464
|
&.active {
|
|
464
|
-
border-color:
|
|
465
|
+
border-color: map.get(vars.$colors-electric-blue, 85);
|
|
465
466
|
}
|
|
466
467
|
}
|
|
467
468
|
&:not([disabled]):active {
|
|
468
|
-
border-color:
|
|
469
|
+
border-color: map.get(vars.$colors-grey, 60);
|
|
469
470
|
&.active {
|
|
470
|
-
border-color:
|
|
471
|
+
border-color: map.get(vars.$colors-electric-blue, 100);
|
|
471
472
|
}
|
|
472
473
|
}
|
|
473
474
|
&[disabled],
|
|
474
475
|
&[disabled][disabled] {
|
|
475
|
-
border-color:
|
|
476
|
-
color:
|
|
476
|
+
border-color: map.get(vars.$colors-grey, 20);
|
|
477
|
+
color: map.get(vars.$colors-grey, 20);
|
|
477
478
|
}
|
|
478
479
|
|
|
479
480
|
&.mat-accent {
|
|
480
481
|
@include stroked-button-color(
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
482
|
+
map.get(vars.$colors-electric-blue, 100),
|
|
483
|
+
map.get(vars.$colors-electric-blue, 60),
|
|
484
|
+
map.get(vars.$colors-electric-blue, 85)
|
|
484
485
|
);
|
|
485
486
|
}
|
|
486
487
|
&.mat-primary {
|
|
487
|
-
@include stroked-button-color(
|
|
488
|
+
@include stroked-button-color(map.get(vars.$colors-orange, 100), map.get(vars.$colors-orange, 60), map.get(vars.$colors-orange, 85));
|
|
488
489
|
}
|
|
489
490
|
&.mat-success {
|
|
490
|
-
@include stroked-button-color(
|
|
491
|
+
@include stroked-button-color(map.get(vars.$colors-green, 100), map.get(vars.$colors-green, 60), map.get(vars.$colors-green, 85));
|
|
491
492
|
}
|
|
492
493
|
&.mat-warn {
|
|
493
|
-
@include stroked-button-color(
|
|
494
|
+
@include stroked-button-color(map.get(vars.$colors-red, 100), map.get(vars.$colors-red, 60), map.get(vars.$colors-red, 85));
|
|
494
495
|
}
|
|
495
496
|
&.mat-warn.ghost {
|
|
496
|
-
@include ghost-button-color(
|
|
497
|
+
@include ghost-button-color(map.get(vars.$colors-red, 100), map.get(vars.$colors-red, 10), map.get(vars.$colors-red, 20));
|
|
497
498
|
&[disabled] {
|
|
498
499
|
background-color: transparent;
|
|
499
|
-
color:
|
|
500
|
+
color: map.get(vars.$colors-red, 20);
|
|
500
501
|
ap-symbol {
|
|
501
|
-
color:
|
|
502
|
+
color: map.get(vars.$colors-red, 20);
|
|
502
503
|
}
|
|
503
504
|
}
|
|
504
505
|
}
|
|
505
506
|
&.mat-primary.ghost {
|
|
506
|
-
@include ghost-button-color(
|
|
507
|
+
@include ghost-button-color(map.get(vars.$colors-orange, 100), map.get(vars.$colors-orange, 60), map.get(vars.$colors-orange, 85));
|
|
507
508
|
&[disabled] {
|
|
508
509
|
background-color: transparent;
|
|
509
|
-
color:
|
|
510
|
+
color: map.get(vars.$colors-orange, 85);
|
|
510
511
|
ap-symbol {
|
|
511
|
-
color:
|
|
512
|
+
color: map.get(vars.$colors-orange, 85);
|
|
512
513
|
}
|
|
513
514
|
}
|
|
514
515
|
}
|
|
515
516
|
&.mat-accent.ghost {
|
|
516
517
|
@include ghost-button-color(
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
518
|
+
map.get(vars.$colors-electric-blue, 100),
|
|
519
|
+
map.get(vars.$colors-electric-blue, 60),
|
|
520
|
+
map.get(vars.$colors-electric-blue, 85)
|
|
520
521
|
);
|
|
521
522
|
&[disabled] {
|
|
522
523
|
background-color: transparent;
|
|
523
|
-
color:
|
|
524
|
+
color: map.get(vars.$colors-electric-blue, 85);
|
|
524
525
|
ap-symbol {
|
|
525
|
-
color:
|
|
526
|
+
color: map.get(vars.$colors-electric-blue, 85);
|
|
526
527
|
}
|
|
527
528
|
}
|
|
528
529
|
}
|
|
529
530
|
&.mat-success.ghost {
|
|
530
|
-
@include ghost-button-color(
|
|
531
|
+
@include ghost-button-color(map.get(vars.$colors-green, 100), map.get(vars.$colors-green, 60), map.get(vars.$colors-green, 85));
|
|
531
532
|
&[disabled] {
|
|
532
533
|
background-color: transparent;
|
|
533
|
-
color:
|
|
534
|
+
color: map.get(vars.$colors-green, 85);
|
|
534
535
|
ap-symbol {
|
|
535
|
-
color:
|
|
536
|
+
color: map.get(vars.$colors-green, 85);
|
|
536
537
|
}
|
|
537
538
|
}
|
|
538
539
|
}
|
|
539
540
|
&.mat-facebook {
|
|
540
|
-
@include stroked-button-color(
|
|
541
|
+
@include stroked-button-color(vars.$color-facebook, vars.$color-facebook, 'none');
|
|
541
542
|
}
|
|
542
543
|
&.mat-instagram {
|
|
543
|
-
@include stroked-button-color(
|
|
544
|
+
@include stroked-button-color(vars.$color-instagram, vars.$color-instagram, 'none');
|
|
544
545
|
}
|
|
545
546
|
&.mat-linkedin {
|
|
546
|
-
@include stroked-button-color(
|
|
547
|
+
@include stroked-button-color(vars.$color-linkedin, vars.$color-linkedin, 'none');
|
|
547
548
|
}
|
|
548
549
|
&.mat-twitter {
|
|
549
|
-
@include stroked-button-color(
|
|
550
|
+
@include stroked-button-color(vars.$color-twitter, vars.$color-twitter, 'none');
|
|
550
551
|
}
|
|
551
552
|
&.mat-youtube {
|
|
552
|
-
@include stroked-button-color(
|
|
553
|
+
@include stroked-button-color(vars.$color-youtube, vars.$color-youtube, 'none');
|
|
553
554
|
}
|
|
554
555
|
&.mat-google {
|
|
555
|
-
@include stroked-button-color(
|
|
556
|
+
@include stroked-button-color(vars.$color-google, vars.$color-google, 'none');
|
|
556
557
|
}
|
|
557
558
|
}
|
|
558
559
|
|
|
@@ -576,11 +577,11 @@ button.mat-stroked-button {
|
|
|
576
577
|
background-color: $background-color;
|
|
577
578
|
color: $text-color;
|
|
578
579
|
border: none;
|
|
579
|
-
border-radius:
|
|
580
|
+
border-radius: vars.$border-radius;
|
|
580
581
|
padding: 10px 16px;
|
|
581
|
-
font-family:
|
|
582
|
-
font-size:
|
|
583
|
-
font-weight:
|
|
582
|
+
font-family: vars.$font-family;
|
|
583
|
+
font-size: vars.$font-size;
|
|
584
|
+
font-weight: vars.$font-weight-bold;
|
|
584
585
|
|
|
585
586
|
ap-symbol {
|
|
586
587
|
color: $text-color !important;
|
|
@@ -603,10 +604,10 @@ button.mat-stroked-button {
|
|
|
603
604
|
|
|
604
605
|
button.ap-button-secondary-orange {
|
|
605
606
|
@include flat-secondary-button-color(
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
607
|
+
map.get(vars.$colors-orange, 100),
|
|
608
|
+
map.get(vars.$colors-orange, 10),
|
|
609
|
+
map.get(vars.$colors-orange, 20),
|
|
610
|
+
map.get(vars.$colors-orange, 40)
|
|
610
611
|
);
|
|
611
612
|
|
|
612
613
|
&.ap-one-line {
|
|
@@ -616,10 +617,10 @@ button.ap-button-secondary-orange {
|
|
|
616
617
|
|
|
617
618
|
button.ap-button-secondary-blue {
|
|
618
619
|
@include flat-secondary-button-color(
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
620
|
+
map.get(vars.$colors-electric-blue, 100),
|
|
621
|
+
map.get(vars.$colors-electric-blue, 10),
|
|
622
|
+
map.get(vars.$colors-electric-blue, 20),
|
|
623
|
+
map.get(vars.$colors-electric-blue, 40)
|
|
623
624
|
);
|
|
624
625
|
|
|
625
626
|
&.ap-one-line {
|
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use '../variables' as vars;
|
|
2
2
|
|
|
3
3
|
.mat-dialog-actions {
|
|
4
|
-
background-color:
|
|
5
|
-
border-top: 1px solid
|
|
6
|
-
margin-top:
|
|
7
|
-
padding:
|
|
4
|
+
background-color: vars.$color-grey-white;
|
|
5
|
+
border-top: 1px solid vars.$color-silver;
|
|
6
|
+
margin-top: vars.$padding-l;
|
|
7
|
+
padding: vars.$padding-l;
|
|
8
8
|
|
|
9
9
|
&.ap-space-between {
|
|
10
|
-
margin-left:
|
|
11
|
-
margin-right:
|
|
10
|
+
margin-left: -(vars.$padding-l);
|
|
11
|
+
margin-right: -(vars.$padding-l);
|
|
12
12
|
justify-content: space-between;
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
div:first-child {
|
|
16
|
-
margin-left:
|
|
16
|
+
margin-left: vars.$padding-l;
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
div:last-child {
|
|
20
|
-
margin-right:
|
|
20
|
+
margin-right: vars.$padding-l;
|
|
21
21
|
}
|
|
22
22
|
}
|
|
23
23
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use '../variables' as vars;
|
|
2
2
|
|
|
3
3
|
.mat-accordion {
|
|
4
4
|
.mat-expansion-panel-spacing {
|
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
.mat-action-row {
|
|
9
|
-
background-color:
|
|
10
|
-
padding:
|
|
9
|
+
background-color: vars.$color-grey-white;
|
|
10
|
+
padding: vars.$padding-l;
|
|
11
11
|
&.ap-space-between {
|
|
12
12
|
justify-content: space-between;
|
|
13
13
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use '../variables' as vars;
|
|
2
2
|
|
|
3
3
|
.mat-mdc-list-option {
|
|
4
4
|
.mat-mdc-pseudo-checkbox {
|
|
5
|
-
border-color:
|
|
6
|
-
border-radius:
|
|
5
|
+
border-color: vars.$color-silver;
|
|
6
|
+
border-radius: vars.$border-radius;
|
|
7
7
|
border-width: 1px;
|
|
8
8
|
&.mat-mdc-pseudo-checkbox-checked {
|
|
9
|
-
background:
|
|
9
|
+
background: vars.$color-success;
|
|
10
10
|
&::after {
|
|
11
11
|
left: 2px;
|
|
12
12
|
}
|
|
@@ -1,44 +1,45 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use '../variables' as vars;
|
|
2
|
+
@use 'sass:map';
|
|
2
3
|
|
|
3
4
|
.mat-mdc-menu-panel:not(.pop-menu) {
|
|
4
5
|
box-shadow: 0 7px 50px rgba(0, 0, 0, 0.08);
|
|
5
6
|
min-width: unset !important;
|
|
6
7
|
border-radius: 4px;
|
|
7
|
-
background-color:
|
|
8
|
+
background-color: vars.$color-white;
|
|
8
9
|
|
|
9
10
|
.mat-mdc-menu-item {
|
|
10
|
-
color:
|
|
11
|
+
color: map.get(vars.$colors-grey, 100);
|
|
11
12
|
height: unset;
|
|
12
|
-
padding:
|
|
13
|
+
padding: vars.$padding-s vars.$padding-m;
|
|
13
14
|
display: flex;
|
|
14
15
|
background: none;
|
|
15
16
|
min-height: unset;
|
|
16
17
|
|
|
17
18
|
span {
|
|
18
|
-
line-height:
|
|
19
|
-
font-size:
|
|
19
|
+
line-height: vars.$font-line-height;
|
|
20
|
+
font-size: vars.$font-size;
|
|
20
21
|
display: flex;
|
|
21
22
|
}
|
|
22
23
|
|
|
23
24
|
&::after {
|
|
24
|
-
color:
|
|
25
|
+
color: map.get(vars.$colors-grey, 100);
|
|
25
26
|
}
|
|
26
27
|
|
|
27
28
|
&:hover:not([disabled]),
|
|
28
29
|
&.mat-mdc-menu-item-highlighted:not([disabled]) {
|
|
29
|
-
background-color:
|
|
30
|
-
color:
|
|
30
|
+
background-color: map.get(vars.$colors-electric-blue, 10);
|
|
31
|
+
color: map.get(vars.$colors-electric-blue, 100);
|
|
31
32
|
&::after {
|
|
32
|
-
color:
|
|
33
|
+
color: map.get(vars.$colors-electric-blue, 100);
|
|
33
34
|
}
|
|
34
35
|
ap-symbol .svg {
|
|
35
|
-
fill:
|
|
36
|
+
fill: map.get(vars.$colors-electric-blue, 100) !important;
|
|
36
37
|
}
|
|
37
38
|
}
|
|
38
39
|
|
|
39
40
|
ap-symbol {
|
|
40
|
-
padding-right:
|
|
41
|
-
color:
|
|
41
|
+
padding-right: vars.$padding-s;
|
|
42
|
+
color: map.get(vars.$colors-grey, 60);
|
|
42
43
|
}
|
|
43
44
|
}
|
|
44
45
|
}
|
|
@@ -88,9 +89,9 @@
|
|
|
88
89
|
position: relative;
|
|
89
90
|
|
|
90
91
|
.arrow-before {
|
|
91
|
-
background-color:
|
|
92
|
+
background-color: vars.$color-pale-grey;
|
|
92
93
|
/*border: 5px solid black;
|
|
93
|
-
border-color: transparent transparent
|
|
94
|
+
border-color: transparent transparent vars.$color-white vars.$color-white;*/
|
|
94
95
|
//box-shadow: -3px 3px 3px 0 rgba(0, 0, 0, 0.05);
|
|
95
96
|
content: '';
|
|
96
97
|
display: block;
|
|
@@ -131,7 +132,7 @@
|
|
|
131
132
|
position: absolute;
|
|
132
133
|
width: inherit;
|
|
133
134
|
height: inherit;
|
|
134
|
-
background-color:
|
|
135
|
+
background-color: vars.$color-white;
|
|
135
136
|
content: ' ';
|
|
136
137
|
}
|
|
137
138
|
|
|
@@ -168,24 +169,24 @@
|
|
|
168
169
|
}
|
|
169
170
|
|
|
170
171
|
.mat-mdc-menu-panel.button-dropdown {
|
|
171
|
-
margin-bottom:
|
|
172
|
+
margin-bottom: vars.$padding-sm;
|
|
172
173
|
.mat-mdc-menu-item {
|
|
173
174
|
.mat-mdc-menu-item-text {
|
|
174
175
|
display: flex;
|
|
175
176
|
flex-direction: column;
|
|
176
|
-
font-weight:
|
|
177
|
+
font-weight: vars.$font-weight-bold;
|
|
177
178
|
width: 100%;
|
|
178
179
|
|
|
179
180
|
.caption {
|
|
180
181
|
font-weight: normal;
|
|
181
|
-
color:
|
|
182
|
+
color: map.get(vars.$colors-grey, 60);
|
|
182
183
|
margin-top: 0px;
|
|
183
184
|
}
|
|
184
185
|
}
|
|
185
186
|
|
|
186
187
|
&:hover {
|
|
187
188
|
.caption {
|
|
188
|
-
color:
|
|
189
|
+
color: map.get(vars.$colors-electric-blue, 85);
|
|
189
190
|
}
|
|
190
191
|
}
|
|
191
192
|
}
|