@softheon/armature 10.28.1 → 10.29.3
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/assets/styles/sof-styles.scss +493 -32
- package/bundles/softheon-armature.umd.js +182 -92
- package/bundles/softheon-armature.umd.js.map +1 -1
- package/bundles/softheon-armature.umd.min.js +2 -2
- package/bundles/softheon-armature.umd.min.js.map +1 -1
- package/esm2015/lib/base-components/base-component-api.js +2 -1
- package/esm2015/lib/base-components/base-component.module.js +22 -3
- package/esm2015/lib/base-components/sof-alert/sof-alert.component.js +24 -4
- package/esm2015/lib/base-components/sof-modal/sof-modal.component.js +49 -0
- package/fesm2015/softheon-armature.js +165 -85
- package/fesm2015/softheon-armature.js.map +1 -1
- package/lib/base-components/base-component-api.d.ts +1 -0
- package/lib/base-components/sof-alert/sof-alert.component.d.ts +8 -0
- package/lib/base-components/sof-modal/sof-modal.component.d.ts +46 -0
- package/package.json +1 -1
- package/softheon-armature.metadata.json +1 -1
|
@@ -158,17 +158,21 @@ mat-form-field {
|
|
|
158
158
|
}
|
|
159
159
|
|
|
160
160
|
.color-primary {
|
|
161
|
-
color: mat-color($arm-primary);
|
|
161
|
+
color: mat-color($arm-primary, 500);
|
|
162
162
|
}
|
|
163
163
|
|
|
164
164
|
.input-icon {
|
|
165
165
|
font-size: 1.5em !important;
|
|
166
166
|
}
|
|
167
167
|
|
|
168
|
+
.full-width {
|
|
169
|
+
width: 100% !important;
|
|
170
|
+
}
|
|
171
|
+
|
|
168
172
|
.delete-icon {
|
|
169
173
|
cursor: pointer;
|
|
170
174
|
font-size: 1.5em;
|
|
171
|
-
color: mat-color($arm-warn);
|
|
175
|
+
color: mat-color($arm-warn, 500);
|
|
172
176
|
}
|
|
173
177
|
|
|
174
178
|
.tooltip {
|
|
@@ -231,7 +235,7 @@ button.mat-flat-button {
|
|
|
231
235
|
text-transform: uppercase !important;
|
|
232
236
|
|
|
233
237
|
&.fixed-width {
|
|
234
|
-
width: 200px !important; // Use
|
|
238
|
+
width: 200px !important; // Use this is to match specific sizing
|
|
235
239
|
}
|
|
236
240
|
|
|
237
241
|
&.full-width {
|
|
@@ -241,7 +245,7 @@ button.mat-flat-button {
|
|
|
241
245
|
&:enabled {
|
|
242
246
|
color: #ffffff !important;
|
|
243
247
|
&.mat-primary {
|
|
244
|
-
background: mat-color($arm-primary);
|
|
248
|
+
background: mat-color($arm-primary, 500);
|
|
245
249
|
&:hover {
|
|
246
250
|
background-color: mat-color($arm-primary, 700);
|
|
247
251
|
}
|
|
@@ -250,7 +254,7 @@ button.mat-flat-button {
|
|
|
250
254
|
}
|
|
251
255
|
}
|
|
252
256
|
&.mat-accent {
|
|
253
|
-
background: mat-color($arm-accent);
|
|
257
|
+
background: mat-color($arm-accent, 500);
|
|
254
258
|
&:hover {
|
|
255
259
|
background-color: mat-color($arm-accent, 700);
|
|
256
260
|
}
|
|
@@ -259,7 +263,111 @@ button.mat-flat-button {
|
|
|
259
263
|
}
|
|
260
264
|
}
|
|
261
265
|
&.mat-warn {
|
|
262
|
-
background: mat-color($arm-warn);
|
|
266
|
+
background: mat-color($arm-warn, 500);
|
|
267
|
+
&:hover {
|
|
268
|
+
background-color: mat-color($arm-warn, 700);
|
|
269
|
+
}
|
|
270
|
+
&:focus {
|
|
271
|
+
background-color: mat-color($arm-warn, 900);
|
|
272
|
+
}
|
|
273
|
+
}
|
|
274
|
+
i {
|
|
275
|
+
color: #ffffff !important;
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
&:disabled {
|
|
280
|
+
background: #f7f7f7 !important;
|
|
281
|
+
color: rgba(0, 0, 0, 0.6) !important;
|
|
282
|
+
opacity: 1 !important;
|
|
283
|
+
}
|
|
284
|
+
}
|
|
285
|
+
&.sof-flat-button-large {
|
|
286
|
+
padding: 0px 24px !important;
|
|
287
|
+
height: 56px !important;
|
|
288
|
+
border-radius: 6px !important;
|
|
289
|
+
font-family: Poppins !important;
|
|
290
|
+
font-style: normal !important;
|
|
291
|
+
font-weight: 600 !important;
|
|
292
|
+
font-size: 16px !important;
|
|
293
|
+
line-height: 24px !important;
|
|
294
|
+
letter-spacing: 0.05em !important;
|
|
295
|
+
text-transform: uppercase !important;
|
|
296
|
+
|
|
297
|
+
&:enabled {
|
|
298
|
+
color: #ffffff !important;
|
|
299
|
+
&.mat-primary {
|
|
300
|
+
background: mat-color($arm-primary, 500);
|
|
301
|
+
&:hover {
|
|
302
|
+
background-color: mat-color($arm-primary, 700);
|
|
303
|
+
}
|
|
304
|
+
&:focus {
|
|
305
|
+
background-color: mat-color($arm-primary, 900);
|
|
306
|
+
}
|
|
307
|
+
}
|
|
308
|
+
&.mat-accent {
|
|
309
|
+
background: mat-color($arm-accent, 500);
|
|
310
|
+
&:hover {
|
|
311
|
+
background-color: mat-color($arm-accent, 700);
|
|
312
|
+
}
|
|
313
|
+
&:focus {
|
|
314
|
+
background-color: mat-color($arm-accent, 900);
|
|
315
|
+
}
|
|
316
|
+
}
|
|
317
|
+
&.mat-warn {
|
|
318
|
+
background: mat-color($arm-warn, 500);
|
|
319
|
+
&:hover {
|
|
320
|
+
background-color: mat-color($arm-warn, 700);
|
|
321
|
+
}
|
|
322
|
+
&:focus {
|
|
323
|
+
background-color: mat-color($arm-warn, 900);
|
|
324
|
+
}
|
|
325
|
+
}
|
|
326
|
+
i {
|
|
327
|
+
color: #ffffff !important;
|
|
328
|
+
}
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
&:disabled {
|
|
332
|
+
background: #f7f7f7 !important;
|
|
333
|
+
color: rgba(0, 0, 0, 0.6) !important;
|
|
334
|
+
opacity: 1 !important;
|
|
335
|
+
}
|
|
336
|
+
}
|
|
337
|
+
&.sof-flat-button-medium {
|
|
338
|
+
padding: 0px 24px !important;
|
|
339
|
+
height: 48px !important;
|
|
340
|
+
border-radius: 6px !important;
|
|
341
|
+
font-family: Poppins !important;
|
|
342
|
+
font-style: normal !important;
|
|
343
|
+
font-weight: 600 !important;
|
|
344
|
+
font-size: 16px !important;
|
|
345
|
+
line-height: 24px !important;
|
|
346
|
+
letter-spacing: 0.05em !important;
|
|
347
|
+
text-transform: uppercase !important;
|
|
348
|
+
|
|
349
|
+
&:enabled {
|
|
350
|
+
color: #ffffff !important;
|
|
351
|
+
&.mat-primary {
|
|
352
|
+
background: mat-color($arm-primary, 500);
|
|
353
|
+
&:hover {
|
|
354
|
+
background-color: mat-color($arm-primary, 700);
|
|
355
|
+
}
|
|
356
|
+
&:focus {
|
|
357
|
+
background-color: mat-color($arm-primary, 900);
|
|
358
|
+
}
|
|
359
|
+
}
|
|
360
|
+
&.mat-accent {
|
|
361
|
+
background: mat-color($arm-accent, 500);
|
|
362
|
+
&:hover {
|
|
363
|
+
background-color: mat-color($arm-accent, 700);
|
|
364
|
+
}
|
|
365
|
+
&:focus {
|
|
366
|
+
background-color: mat-color($arm-accent, 900);
|
|
367
|
+
}
|
|
368
|
+
}
|
|
369
|
+
&.mat-warn {
|
|
370
|
+
background: mat-color($arm-warn, 500);
|
|
263
371
|
&:hover {
|
|
264
372
|
background-color: mat-color($arm-warn, 700);
|
|
265
373
|
}
|
|
@@ -293,7 +401,7 @@ button.mat-flat-button {
|
|
|
293
401
|
&:enabled {
|
|
294
402
|
color: #ffffff !important;
|
|
295
403
|
&.mat-primary {
|
|
296
|
-
background: mat-color($arm-primary);
|
|
404
|
+
background: mat-color($arm-primary, 500);
|
|
297
405
|
&:hover {
|
|
298
406
|
background-color: mat-color($arm-primary, 700);
|
|
299
407
|
}
|
|
@@ -302,7 +410,7 @@ button.mat-flat-button {
|
|
|
302
410
|
}
|
|
303
411
|
}
|
|
304
412
|
&.mat-accent {
|
|
305
|
-
background: mat-color($arm-accent);
|
|
413
|
+
background: mat-color($arm-accent, 500);
|
|
306
414
|
&:hover {
|
|
307
415
|
background-color: mat-color($arm-accent, 700);
|
|
308
416
|
}
|
|
@@ -311,7 +419,7 @@ button.mat-flat-button {
|
|
|
311
419
|
}
|
|
312
420
|
}
|
|
313
421
|
&.mat-warn {
|
|
314
|
-
background: mat-color($arm-warn);
|
|
422
|
+
background: mat-color($arm-warn, 500);
|
|
315
423
|
&:hover {
|
|
316
424
|
background-color: mat-color($arm-warn, 700);
|
|
317
425
|
}
|
|
@@ -347,7 +455,7 @@ button.mat-stroked-button {
|
|
|
347
455
|
text-transform: uppercase !important;
|
|
348
456
|
|
|
349
457
|
&.fixed-width {
|
|
350
|
-
width: 200px !important; // Use
|
|
458
|
+
width: 200px !important; // Use this is to match specific sizing
|
|
351
459
|
}
|
|
352
460
|
|
|
353
461
|
&.full-width {
|
|
@@ -357,9 +465,9 @@ button.mat-stroked-button {
|
|
|
357
465
|
&:enabled {
|
|
358
466
|
&.mat-primary {
|
|
359
467
|
background-color: mat-color($arm-primary, 50) !important;
|
|
360
|
-
color: mat-color($arm-primary) !important;
|
|
468
|
+
color: mat-color($arm-primary, 500) !important;
|
|
361
469
|
i {
|
|
362
|
-
color: mat-color($arm-primary) !important;
|
|
470
|
+
color: mat-color($arm-primary, 500) !important;
|
|
363
471
|
}
|
|
364
472
|
&:hover {
|
|
365
473
|
background-color: mat-color($arm-primary, 100) !important;
|
|
@@ -378,9 +486,9 @@ button.mat-stroked-button {
|
|
|
378
486
|
}
|
|
379
487
|
&.mat-accent {
|
|
380
488
|
background-color: mat-color($arm-accent, 50) !important;
|
|
381
|
-
color: mat-color($arm-accent) !important;
|
|
489
|
+
color: mat-color($arm-accent, 500) !important;
|
|
382
490
|
i {
|
|
383
|
-
color: mat-color($arm-accent) !important;
|
|
491
|
+
color: mat-color($arm-accent, 500) !important;
|
|
384
492
|
}
|
|
385
493
|
&:hover {
|
|
386
494
|
background-color: mat-color($arm-accent, 100) !important;
|
|
@@ -399,9 +507,9 @@ button.mat-stroked-button {
|
|
|
399
507
|
}
|
|
400
508
|
&.mat-warn {
|
|
401
509
|
background-color: mat-color($arm-warn, 50) !important;
|
|
402
|
-
color: mat-color($arm-warn) !important;
|
|
510
|
+
color: mat-color($arm-warn, 500) !important;
|
|
403
511
|
i {
|
|
404
|
-
color: mat-color($arm-warn) !important;
|
|
512
|
+
color: mat-color($arm-warn, 500) !important;
|
|
405
513
|
}
|
|
406
514
|
&:hover {
|
|
407
515
|
background-color: mat-color($arm-warn, 100) !important;
|
|
@@ -426,7 +534,92 @@ button.mat-stroked-button {
|
|
|
426
534
|
opacity: 1 !important;
|
|
427
535
|
}
|
|
428
536
|
}
|
|
429
|
-
&.sof-stroked-button-
|
|
537
|
+
&.sof-stroked-button-large {
|
|
538
|
+
padding: 0px 24px !important;
|
|
539
|
+
height: 56px !important;
|
|
540
|
+
border: none !important;
|
|
541
|
+
border-radius: 6px !important;
|
|
542
|
+
font-family: Poppins !important;
|
|
543
|
+
font-style: normal !important;
|
|
544
|
+
font-weight: 600 !important;
|
|
545
|
+
font-size: 16px !important;
|
|
546
|
+
line-height: 24px !important;
|
|
547
|
+
letter-spacing: 0.05em !important;
|
|
548
|
+
text-transform: uppercase !important;
|
|
549
|
+
|
|
550
|
+
&:enabled {
|
|
551
|
+
&.mat-primary {
|
|
552
|
+
background-color: mat-color($arm-primary, 50) !important;
|
|
553
|
+
color: mat-color($arm-primary, 500) !important;
|
|
554
|
+
i {
|
|
555
|
+
color: mat-color($arm-primary, 500) !important;
|
|
556
|
+
}
|
|
557
|
+
&:hover {
|
|
558
|
+
background-color: mat-color($arm-primary, 100) !important;
|
|
559
|
+
color: white !important;
|
|
560
|
+
i {
|
|
561
|
+
color: white !important;
|
|
562
|
+
}
|
|
563
|
+
}
|
|
564
|
+
&:focus {
|
|
565
|
+
background-color: mat-color($arm-primary, 200) !important;
|
|
566
|
+
color: white !important;
|
|
567
|
+
i {
|
|
568
|
+
color: white !important;
|
|
569
|
+
}
|
|
570
|
+
}
|
|
571
|
+
}
|
|
572
|
+
&.mat-accent {
|
|
573
|
+
background-color: mat-color($arm-accent, 50) !important;
|
|
574
|
+
color: mat-color($arm-accent, 500) !important;
|
|
575
|
+
i {
|
|
576
|
+
color: mat-color($arm-accent, 500) !important;
|
|
577
|
+
}
|
|
578
|
+
&:hover {
|
|
579
|
+
background-color: mat-color($arm-accent, 100) !important;
|
|
580
|
+
color: white !important;
|
|
581
|
+
i {
|
|
582
|
+
color: white !important;
|
|
583
|
+
}
|
|
584
|
+
}
|
|
585
|
+
&:focus {
|
|
586
|
+
background-color: mat-color($arm-accent, 200) !important;
|
|
587
|
+
color: white !important;
|
|
588
|
+
i {
|
|
589
|
+
color: white !important;
|
|
590
|
+
}
|
|
591
|
+
}
|
|
592
|
+
}
|
|
593
|
+
&.mat-warn {
|
|
594
|
+
background-color: mat-color($arm-warn, 50) !important;
|
|
595
|
+
color: mat-color($arm-warn, 500) !important;
|
|
596
|
+
i {
|
|
597
|
+
color: mat-color($arm-warn, 500) !important;
|
|
598
|
+
}
|
|
599
|
+
&:hover {
|
|
600
|
+
background-color: mat-color($arm-warn, 100) !important;
|
|
601
|
+
color: white !important;
|
|
602
|
+
i {
|
|
603
|
+
color: white !important;
|
|
604
|
+
}
|
|
605
|
+
}
|
|
606
|
+
&:focus {
|
|
607
|
+
background-color: mat-color($arm-warn, 200) !important;
|
|
608
|
+
color: white !important;
|
|
609
|
+
i {
|
|
610
|
+
color: white !important;
|
|
611
|
+
}
|
|
612
|
+
}
|
|
613
|
+
}
|
|
614
|
+
}
|
|
615
|
+
|
|
616
|
+
&:disabled {
|
|
617
|
+
background: #f7f7f7 !important;
|
|
618
|
+
color: rgba(0, 0, 0, 0.6) !important;
|
|
619
|
+
opacity: 1 !important;
|
|
620
|
+
}
|
|
621
|
+
}
|
|
622
|
+
&.sof-stroked-button-medium {
|
|
430
623
|
padding: 0px 24px !important;
|
|
431
624
|
height: 48px !important;
|
|
432
625
|
border: none !important;
|
|
@@ -442,9 +635,94 @@ button.mat-stroked-button {
|
|
|
442
635
|
&:enabled {
|
|
443
636
|
&.mat-primary {
|
|
444
637
|
background-color: mat-color($arm-primary, 50) !important;
|
|
445
|
-
color: mat-color($arm-primary) !important;
|
|
638
|
+
color: mat-color($arm-primary, 500) !important;
|
|
639
|
+
i {
|
|
640
|
+
color: mat-color($arm-primary, 500) !important;
|
|
641
|
+
}
|
|
642
|
+
&:hover {
|
|
643
|
+
background-color: mat-color($arm-primary, 100) !important;
|
|
644
|
+
color: white !important;
|
|
645
|
+
i {
|
|
646
|
+
color: white !important;
|
|
647
|
+
}
|
|
648
|
+
}
|
|
649
|
+
&:focus {
|
|
650
|
+
background-color: mat-color($arm-primary, 200) !important;
|
|
651
|
+
color: white !important;
|
|
652
|
+
i {
|
|
653
|
+
color: white !important;
|
|
654
|
+
}
|
|
655
|
+
}
|
|
656
|
+
}
|
|
657
|
+
&.mat-accent {
|
|
658
|
+
background-color: mat-color($arm-accent, 50) !important;
|
|
659
|
+
color: mat-color($arm-accent, 500) !important;
|
|
660
|
+
i {
|
|
661
|
+
color: mat-color($arm-accent, 500) !important;
|
|
662
|
+
}
|
|
663
|
+
&:hover {
|
|
664
|
+
background-color: mat-color($arm-accent, 100) !important;
|
|
665
|
+
color: white !important;
|
|
666
|
+
i {
|
|
667
|
+
color: white !important;
|
|
668
|
+
}
|
|
669
|
+
}
|
|
670
|
+
&:focus {
|
|
671
|
+
background-color: mat-color($arm-accent, 200) !important;
|
|
672
|
+
color: white !important;
|
|
673
|
+
i {
|
|
674
|
+
color: white !important;
|
|
675
|
+
}
|
|
676
|
+
}
|
|
677
|
+
}
|
|
678
|
+
&.mat-warn {
|
|
679
|
+
background-color: mat-color($arm-warn, 50) !important;
|
|
680
|
+
color: mat-color($arm-warn, 500) !important;
|
|
681
|
+
i {
|
|
682
|
+
color: mat-color($arm-warn, 500) !important;
|
|
683
|
+
}
|
|
684
|
+
&:hover {
|
|
685
|
+
background-color: mat-color($arm-warn, 100) !important;
|
|
686
|
+
color: white !important;
|
|
687
|
+
i {
|
|
688
|
+
color: white !important;
|
|
689
|
+
}
|
|
690
|
+
}
|
|
691
|
+
&:focus {
|
|
692
|
+
background-color: mat-color($arm-warn, 200) !important;
|
|
693
|
+
color: white !important;
|
|
694
|
+
i {
|
|
695
|
+
color: white !important;
|
|
696
|
+
}
|
|
697
|
+
}
|
|
698
|
+
}
|
|
699
|
+
}
|
|
700
|
+
|
|
701
|
+
&:disabled {
|
|
702
|
+
background: #f7f7f7 !important;
|
|
703
|
+
color: rgba(0, 0, 0, 0.6) !important;
|
|
704
|
+
opacity: 1 !important;
|
|
705
|
+
}
|
|
706
|
+
}
|
|
707
|
+
&.sof-stroked-button-small {
|
|
708
|
+
padding: 0px 24px !important;
|
|
709
|
+
height: 36px !important;
|
|
710
|
+
border: none !important;
|
|
711
|
+
border-radius: 6px !important;
|
|
712
|
+
font-family: Poppins !important;
|
|
713
|
+
font-style: normal !important;
|
|
714
|
+
font-weight: 600 !important;
|
|
715
|
+
font-size: 16px !important;
|
|
716
|
+
line-height: 24px !important;
|
|
717
|
+
letter-spacing: 0.05em !important;
|
|
718
|
+
text-transform: uppercase !important;
|
|
719
|
+
|
|
720
|
+
&:enabled {
|
|
721
|
+
&.mat-primary {
|
|
722
|
+
background-color: mat-color($arm-primary, 50) !important;
|
|
723
|
+
color: mat-color($arm-primary, 500) !important;
|
|
446
724
|
i {
|
|
447
|
-
color: mat-color($arm-primary) !important;
|
|
725
|
+
color: mat-color($arm-primary, 500) !important;
|
|
448
726
|
}
|
|
449
727
|
&:hover {
|
|
450
728
|
background-color: mat-color($arm-primary, 100) !important;
|
|
@@ -463,9 +741,9 @@ button.mat-stroked-button {
|
|
|
463
741
|
}
|
|
464
742
|
&.mat-accent {
|
|
465
743
|
background-color: mat-color($arm-accent, 50) !important;
|
|
466
|
-
color: mat-color($arm-accent) !important;
|
|
744
|
+
color: mat-color($arm-accent, 500) !important;
|
|
467
745
|
i {
|
|
468
|
-
color: mat-color($arm-accent) !important;
|
|
746
|
+
color: mat-color($arm-accent, 500) !important;
|
|
469
747
|
}
|
|
470
748
|
&:hover {
|
|
471
749
|
background-color: mat-color($arm-accent, 100) !important;
|
|
@@ -484,9 +762,9 @@ button.mat-stroked-button {
|
|
|
484
762
|
}
|
|
485
763
|
&.mat-warn {
|
|
486
764
|
background-color: mat-color($arm-warn, 50) !important;
|
|
487
|
-
color: mat-color($arm-warn) !important;
|
|
765
|
+
color: mat-color($arm-warn, 500) !important;
|
|
488
766
|
i {
|
|
489
|
-
color: mat-color($arm-warn) !important;
|
|
767
|
+
color: mat-color($arm-warn, 500) !important;
|
|
490
768
|
}
|
|
491
769
|
&:hover {
|
|
492
770
|
background-color: mat-color($arm-warn, 100) !important;
|
|
@@ -511,6 +789,189 @@ button.mat-stroked-button {
|
|
|
511
789
|
opacity: 1 !important;
|
|
512
790
|
}
|
|
513
791
|
}
|
|
792
|
+
&.sof-stroked-button-large-outline {
|
|
793
|
+
padding: 0px 24px !important;
|
|
794
|
+
height: 56px !important;
|
|
795
|
+
background: #ffffff !important;
|
|
796
|
+
border-radius: 6px !important;
|
|
797
|
+
font-family: Poppins !important;
|
|
798
|
+
font-style: normal !important;
|
|
799
|
+
font-weight: 600 !important;
|
|
800
|
+
font-size: 16px !important;
|
|
801
|
+
line-height: 24px !important;
|
|
802
|
+
letter-spacing: 0.05em !important;
|
|
803
|
+
text-transform: uppercase !important;
|
|
804
|
+
|
|
805
|
+
&:enabled {
|
|
806
|
+
&.mat-primary {
|
|
807
|
+
border: 2px solid mat-color($arm-primary, 500) !important;
|
|
808
|
+
color: mat-color($arm-primary, 500) !important;
|
|
809
|
+
i {
|
|
810
|
+
color: mat-color($arm-primary, 500) !important;
|
|
811
|
+
}
|
|
812
|
+
&:hover {
|
|
813
|
+
background-color: mat-color($arm-primary, 100) !important;
|
|
814
|
+
}
|
|
815
|
+
&:focus {
|
|
816
|
+
background-color: mat-color($arm-primary, 200) !important;
|
|
817
|
+
}
|
|
818
|
+
}
|
|
819
|
+
&.mat-accent {
|
|
820
|
+
border: 2px solid mat-color($arm-accent, 500) !important;
|
|
821
|
+
color: mat-color($arm-accent, 500) !important;
|
|
822
|
+
i {
|
|
823
|
+
color: mat-color($arm-accent, 500) !important;
|
|
824
|
+
}
|
|
825
|
+
&:hover {
|
|
826
|
+
background-color: mat-color($arm-accent, 100) !important;
|
|
827
|
+
}
|
|
828
|
+
&:focus {
|
|
829
|
+
background-color: mat-color($arm-accent, 200) !important;
|
|
830
|
+
}
|
|
831
|
+
}
|
|
832
|
+
&.mat-warn {
|
|
833
|
+
border: 2px solid mat-color($arm-warn, 500) !important;
|
|
834
|
+
color: mat-color($arm-warn, 500) !important;
|
|
835
|
+
i {
|
|
836
|
+
color: mat-color($arm-warn, 500) !important;
|
|
837
|
+
}
|
|
838
|
+
&:hover {
|
|
839
|
+
background-color: mat-color($arm-warn, 100) !important;
|
|
840
|
+
}
|
|
841
|
+
&:focus {
|
|
842
|
+
background-color: mat-color($arm-warn, 200) !important;
|
|
843
|
+
}
|
|
844
|
+
}
|
|
845
|
+
}
|
|
846
|
+
|
|
847
|
+
&:disabled {
|
|
848
|
+
background: #f7f7f7 !important;
|
|
849
|
+
color: rgba(0, 0, 0, 0.6) !important;
|
|
850
|
+
opacity: 1 !important;
|
|
851
|
+
}
|
|
852
|
+
}
|
|
853
|
+
&.sof-stroked-button-medium-outline {
|
|
854
|
+
padding: 0px 24px !important;
|
|
855
|
+
height: 48px !important;
|
|
856
|
+
background: #ffffff !important;
|
|
857
|
+
border-radius: 6px !important;
|
|
858
|
+
font-family: Poppins !important;
|
|
859
|
+
font-style: normal !important;
|
|
860
|
+
font-weight: 600 !important;
|
|
861
|
+
font-size: 16px !important;
|
|
862
|
+
line-height: 24px !important;
|
|
863
|
+
letter-spacing: 0.05em !important;
|
|
864
|
+
text-transform: uppercase !important;
|
|
865
|
+
|
|
866
|
+
&:enabled {
|
|
867
|
+
&.mat-primary {
|
|
868
|
+
border: 2px solid mat-color($arm-primary, 500) !important;
|
|
869
|
+
color: mat-color($arm-primary, 500) !important;
|
|
870
|
+
i {
|
|
871
|
+
color: mat-color($arm-primary, 500) !important;
|
|
872
|
+
}
|
|
873
|
+
&:hover {
|
|
874
|
+
background-color: mat-color($arm-primary, 100) !important;
|
|
875
|
+
}
|
|
876
|
+
&:focus {
|
|
877
|
+
background-color: mat-color($arm-primary, 200) !important;
|
|
878
|
+
}
|
|
879
|
+
}
|
|
880
|
+
&.mat-accent {
|
|
881
|
+
border: 2px solid mat-color($arm-accent, 500) !important;
|
|
882
|
+
color: mat-color($arm-accent, 500) !important;
|
|
883
|
+
i {
|
|
884
|
+
color: mat-color($arm-accent, 500) !important;
|
|
885
|
+
}
|
|
886
|
+
&:hover {
|
|
887
|
+
background-color: mat-color($arm-accent, 100) !important;
|
|
888
|
+
}
|
|
889
|
+
&:focus {
|
|
890
|
+
background-color: mat-color($arm-accent, 200) !important;
|
|
891
|
+
}
|
|
892
|
+
}
|
|
893
|
+
&.mat-warn {
|
|
894
|
+
border: 2px solid mat-color($arm-warn, 500) !important;
|
|
895
|
+
color: mat-color($arm-warn, 500) !important;
|
|
896
|
+
i {
|
|
897
|
+
color: mat-color($arm-warn, 500) !important;
|
|
898
|
+
}
|
|
899
|
+
&:hover {
|
|
900
|
+
background-color: mat-color($arm-warn, 100) !important;
|
|
901
|
+
}
|
|
902
|
+
&:focus {
|
|
903
|
+
background-color: mat-color($arm-warn, 200) !important;
|
|
904
|
+
}
|
|
905
|
+
}
|
|
906
|
+
}
|
|
907
|
+
|
|
908
|
+
&:disabled {
|
|
909
|
+
background: #f7f7f7 !important;
|
|
910
|
+
color: rgba(0, 0, 0, 0.6) !important;
|
|
911
|
+
opacity: 1 !important;
|
|
912
|
+
}
|
|
913
|
+
}
|
|
914
|
+
&.sof-stroked-button-small-outline {
|
|
915
|
+
padding: 0px 24px !important;
|
|
916
|
+
height: 36px !important;
|
|
917
|
+
background: #ffffff !important;
|
|
918
|
+
border-radius: 6px !important;
|
|
919
|
+
font-family: Poppins !important;
|
|
920
|
+
font-style: normal !important;
|
|
921
|
+
font-weight: 600 !important;
|
|
922
|
+
font-size: 16px !important;
|
|
923
|
+
line-height: 24px !important;
|
|
924
|
+
letter-spacing: 0.05em !important;
|
|
925
|
+
text-transform: uppercase !important;
|
|
926
|
+
|
|
927
|
+
&:enabled {
|
|
928
|
+
&.mat-primary {
|
|
929
|
+
border: 2px solid mat-color($arm-primary, 500) !important;
|
|
930
|
+
color: mat-color($arm-primary, 500) !important;
|
|
931
|
+
i {
|
|
932
|
+
color: mat-color($arm-primary, 500) !important;
|
|
933
|
+
}
|
|
934
|
+
&:hover {
|
|
935
|
+
background-color: mat-color($arm-primary, 100) !important;
|
|
936
|
+
}
|
|
937
|
+
&:focus {
|
|
938
|
+
background-color: mat-color($arm-primary, 200) !important;
|
|
939
|
+
}
|
|
940
|
+
}
|
|
941
|
+
&.mat-accent {
|
|
942
|
+
border: 2px solid mat-color($arm-accent, 500) !important;
|
|
943
|
+
color: mat-color($arm-accent, 500) !important;
|
|
944
|
+
i {
|
|
945
|
+
color: mat-color($arm-accent, 500) !important;
|
|
946
|
+
}
|
|
947
|
+
&:hover {
|
|
948
|
+
background-color: mat-color($arm-accent, 100) !important;
|
|
949
|
+
}
|
|
950
|
+
&:focus {
|
|
951
|
+
background-color: mat-color($arm-accent, 200) !important;
|
|
952
|
+
}
|
|
953
|
+
}
|
|
954
|
+
&.mat-warn {
|
|
955
|
+
border: 2px solid mat-color($arm-warn, 500) !important;
|
|
956
|
+
color: mat-color($arm-warn, 500) !important;
|
|
957
|
+
i {
|
|
958
|
+
color: mat-color($arm-warn, 500) !important;
|
|
959
|
+
}
|
|
960
|
+
&:hover {
|
|
961
|
+
background-color: mat-color($arm-warn, 100) !important;
|
|
962
|
+
}
|
|
963
|
+
&:focus {
|
|
964
|
+
background-color: mat-color($arm-warn, 200) !important;
|
|
965
|
+
}
|
|
966
|
+
}
|
|
967
|
+
}
|
|
968
|
+
|
|
969
|
+
&:disabled {
|
|
970
|
+
background: #f7f7f7 !important;
|
|
971
|
+
color: rgba(0, 0, 0, 0.6) !important;
|
|
972
|
+
opacity: 1 !important;
|
|
973
|
+
}
|
|
974
|
+
}
|
|
514
975
|
&.action-btn {
|
|
515
976
|
font-family: Poppins !important;
|
|
516
977
|
font-style: normal !important;
|
|
@@ -531,24 +992,24 @@ button.mat-stroked-button {
|
|
|
531
992
|
color: black !important;
|
|
532
993
|
}
|
|
533
994
|
&.mat-primary {
|
|
534
|
-
color: mat-color($arm-primary) !important;
|
|
535
|
-
border: 2px solid mat-color($arm-primary) !important;
|
|
995
|
+
color: mat-color($arm-primary, 500) !important;
|
|
996
|
+
border: 2px solid mat-color($arm-primary, 500) !important;
|
|
536
997
|
i {
|
|
537
|
-
color: mat-color($arm-primary) !important;
|
|
998
|
+
color: mat-color($arm-primary, 500) !important;
|
|
538
999
|
}
|
|
539
1000
|
}
|
|
540
1001
|
&.mat-accent {
|
|
541
|
-
color: mat-color($arm-accent) !important;
|
|
542
|
-
border: 2px solid mat-color($arm-accent) !important;
|
|
1002
|
+
color: mat-color($arm-accent, 500) !important;
|
|
1003
|
+
border: 2px solid mat-color($arm-accent, 500) !important;
|
|
543
1004
|
i {
|
|
544
|
-
color: mat-color($arm-accent) !important;
|
|
1005
|
+
color: mat-color($arm-accent, 500) !important;
|
|
545
1006
|
}
|
|
546
1007
|
}
|
|
547
1008
|
&.mat-warn {
|
|
548
|
-
color: mat-color($arm-warn) !important;
|
|
549
|
-
border: 2px solid mat-color($arm-warn) !important;
|
|
1009
|
+
color: mat-color($arm-warn, 500) !important;
|
|
1010
|
+
border: 2px solid mat-color($arm-warn, 500) !important;
|
|
550
1011
|
i {
|
|
551
|
-
color: mat-color($arm-warn) !important;
|
|
1012
|
+
color: mat-color($arm-warn, 500) !important;
|
|
552
1013
|
}
|
|
553
1014
|
}
|
|
554
1015
|
}
|