@utahdts/utah-design-system-header 3.0.4 → 4.0.0-beta.0
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/dist/index.d.ts +1 -1
- package/dist/style.css +143 -94
- package/dist/utah-design-system-header.es.js +1863 -1756
- package/dist/utah-design-system-header.umd.js +59 -57
- package/package.json +9 -9
package/dist/index.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ declare module "@utahdts/utah-design-system-header" {
|
|
|
8
8
|
export type Environments = "none" | "a1" | "a2" | "a3" | "custom" | "unittest";
|
|
9
9
|
export type Events = "utahHeaderLoaded" | "utahHeaderUnloaded";
|
|
10
10
|
export type HeaderApplicationTypes = 'wordpress' | 'static site' | 'salesforce' | 'custom application' | 'microsoft power apps' | 'servicenow';
|
|
11
|
-
export type PopupPlacement = "
|
|
11
|
+
export type PopupPlacement = "bottom" | "bottom-start" | "bottom-end" | "left" | "left-start" | "left-end" | "right" | "right-start" | "right-end" | "top" | "top-start" | "top-end";
|
|
12
12
|
export type Size = "SMALL" | "MEDIUM" | "LARGE";
|
|
13
13
|
export type UtahIdFetchStyle = "Automatic" | "None" | "Provided";
|
|
14
14
|
export type MainMenuItem = {
|
package/dist/style.css
CHANGED
|
@@ -440,8 +440,7 @@ variables and settings
|
|
|
440
440
|
*/
|
|
441
441
|
@font-face {
|
|
442
442
|
font-family: "utah design system";
|
|
443
|
-
src: url("https://cdn.utah.gov/design-system/fonts/utah-design-system.
|
|
444
|
-
src: url("https://cdn.utah.gov/design-system/fonts/utah-design-system.eot?#iefix") format("embedded-opentype"), url("https://cdn.utah.gov/design-system/fonts/utah-design-system.woff") format("woff"), url("https://cdn.utah.gov/design-system/fonts/utah-design-system.ttf") format("truetype"), url("https://cdn.utah.gov/design-system/fonts/utah-design-system.svg#utah-design-system") format("svg");
|
|
443
|
+
src: url("https://cdn.utah.gov/design-system/fonts/v2/utah-design-system.woff") format("woff"), url("https://cdn.utah.gov/design-system/fonts/v2/utah-design-system.ttf") format("truetype"), url("https://cdn.utah.gov/design-system/fonts/v2/utah-design-system.svg#utah-design-system") format("svg");
|
|
445
444
|
font-weight: normal;
|
|
446
445
|
font-style: normal;
|
|
447
446
|
font-display: block;
|
|
@@ -450,6 +449,9 @@ variables and settings
|
|
|
450
449
|
--icon-check-mark-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 12.15'%3E%3Cg%3E%3Cpath d='M6.185,12.15L0,5.966,2.335,3.631l3.85,3.849L13.665,0l2.335,2.335L6.185,12.15Z' style='fill: %23fff;'/%3E%3C/g%3E%3C/svg%3E");
|
|
451
450
|
--icon-chevron-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cg%3E%3Crect width='14' height='14' style='fill: none;'/%3E%3Cpath d='M3.142,5l3.716,3.71,3.717-3.71,1.142,1.142-4.859,4.858L2,6.142l1.142-1.142Z' style='fill: %23474747;'/%3E%3C/g%3E%3C/svg%3E");
|
|
452
451
|
}
|
|
452
|
+
.utah-design-system .uds-icon {
|
|
453
|
+
font-family: "utah design system";
|
|
454
|
+
}
|
|
453
455
|
.utah-design-system [class*=utds-icon-before-],
|
|
454
456
|
.utah-design-system [class*=utds-icon-after-] {
|
|
455
457
|
display: inline-flex;
|
|
@@ -479,252 +481,260 @@ variables and settings
|
|
|
479
481
|
}
|
|
480
482
|
.utah-design-system .utds-icon-before-external-link::before,
|
|
481
483
|
.utah-design-system .utds-icon-after-external-link::after {
|
|
482
|
-
content: "
|
|
484
|
+
content: "\e900";
|
|
483
485
|
font-size: 0.65em;
|
|
484
486
|
}
|
|
485
487
|
.utah-design-system .utds-icon-before-waffle::before,
|
|
486
488
|
.utah-design-system .utds-icon-after-waffle::after {
|
|
487
|
-
content: "
|
|
489
|
+
content: "\e901";
|
|
488
490
|
}
|
|
489
491
|
.utah-design-system .utds-icon-before-alert::before,
|
|
490
492
|
.utah-design-system .utds-icon-after-alert::after {
|
|
491
|
-
content: "
|
|
493
|
+
content: "\e902";
|
|
492
494
|
}
|
|
493
495
|
.utah-design-system .utds-icon-before-help::before,
|
|
494
496
|
.utah-design-system .utds-icon-after-help::after {
|
|
495
|
-
content: "
|
|
497
|
+
content: "\e903";
|
|
496
498
|
}
|
|
497
499
|
.utah-design-system .utds-icon-before-bookmark::before,
|
|
498
500
|
.utah-design-system .utds-icon-after-bookmark::after {
|
|
499
|
-
content: "
|
|
501
|
+
content: "\e904";
|
|
500
502
|
}
|
|
501
503
|
.utah-design-system .utds-icon-before-search::before,
|
|
502
504
|
.utah-design-system .utds-icon-after-search::after {
|
|
503
|
-
content: "
|
|
505
|
+
content: "\e905";
|
|
504
506
|
}
|
|
505
507
|
.utah-design-system .utds-icon-before-check::before,
|
|
506
508
|
.utah-design-system .utds-icon-after-check::after {
|
|
507
|
-
content: "
|
|
509
|
+
content: "\e906";
|
|
508
510
|
}
|
|
509
511
|
.utah-design-system .utds-icon-before-star::before,
|
|
510
512
|
.utah-design-system .utds-icon-after-star::after {
|
|
511
|
-
content: "
|
|
513
|
+
content: "\e907";
|
|
512
514
|
}
|
|
513
515
|
.utah-design-system .utds-icon-before-info::before,
|
|
514
516
|
.utah-design-system .utds-icon-after-info::after {
|
|
515
|
-
content: "
|
|
517
|
+
content: "\e908";
|
|
516
518
|
}
|
|
517
519
|
.utah-design-system .utds-icon-before-unfold-less::before,
|
|
518
520
|
.utah-design-system .utds-icon-after-unfold-less::after {
|
|
519
|
-
content: "
|
|
521
|
+
content: "\e909";
|
|
520
522
|
}
|
|
521
523
|
.utah-design-system .utds-icon-before-unfold-more::before,
|
|
522
524
|
.utah-design-system .utds-icon-after-unfold-more::after {
|
|
523
|
-
content: "
|
|
525
|
+
content: "\e90a";
|
|
524
526
|
}
|
|
525
527
|
.utah-design-system .utds-icon-before-circle-chevron-down::before,
|
|
526
528
|
.utah-design-system .utds-icon-after-circle-chevron-down::after {
|
|
527
|
-
content: "
|
|
529
|
+
content: "\e90b";
|
|
528
530
|
}
|
|
529
531
|
.utah-design-system .utds-icon-before-circle-chevron-up::before,
|
|
530
532
|
.utah-design-system .utds-icon-after-circle-chevron-up::after {
|
|
531
|
-
content: "
|
|
533
|
+
content: "\e90c";
|
|
532
534
|
}
|
|
533
535
|
.utah-design-system .utds-icon-before-chevron-up::before,
|
|
534
536
|
.utah-design-system .utds-icon-after-chevron-up::after {
|
|
535
|
-
content: "
|
|
537
|
+
content: "\e90d";
|
|
536
538
|
}
|
|
537
539
|
.utah-design-system .utds-icon-before-chevron-right::before,
|
|
538
540
|
.utah-design-system .utds-icon-after-chevron-right::after {
|
|
539
|
-
content: "
|
|
541
|
+
content: "\e90e";
|
|
540
542
|
}
|
|
541
543
|
.utah-design-system .utds-icon-before-chevron-down::before,
|
|
542
544
|
.utah-design-system .utds-icon-after-chevron-down::after {
|
|
543
|
-
content: "
|
|
545
|
+
content: "\e90f";
|
|
544
546
|
}
|
|
545
547
|
.utah-design-system .utds-icon-before-chevron-left::before,
|
|
546
548
|
.utah-design-system .utds-icon-after-chevron-left::after {
|
|
547
|
-
content: "
|
|
549
|
+
content: "\e910";
|
|
548
550
|
}
|
|
549
551
|
.utah-design-system .utds-icon-before-arrow-up::before,
|
|
550
552
|
.utah-design-system .utds-icon-after-arrow-up::after {
|
|
551
|
-
content: "
|
|
553
|
+
content: "\e911";
|
|
552
554
|
}
|
|
553
555
|
.utah-design-system .utds-icon-before-arrow-right::before,
|
|
554
556
|
.utah-design-system .utds-icon-after-arrow-right::after {
|
|
555
|
-
content: "
|
|
557
|
+
content: "\e912";
|
|
556
558
|
}
|
|
557
559
|
.utah-design-system .utds-icon-before-arrow-down::before,
|
|
558
560
|
.utah-design-system .utds-icon-after-arrow-down::after {
|
|
559
|
-
content: "
|
|
561
|
+
content: "\e913";
|
|
560
562
|
}
|
|
561
563
|
.utah-design-system .utds-icon-before-arrow-left::before,
|
|
562
564
|
.utah-design-system .utds-icon-after-arrow-left::after {
|
|
563
|
-
content: "
|
|
565
|
+
content: "\e914";
|
|
564
566
|
}
|
|
565
567
|
.utah-design-system .utds-icon-before-plus::before,
|
|
566
568
|
.utah-design-system .utds-icon-after-plus::after {
|
|
567
|
-
content: "
|
|
569
|
+
content: "\e915";
|
|
568
570
|
}
|
|
569
571
|
.utah-design-system .utds-icon-before-minus::before,
|
|
570
572
|
.utah-design-system .utds-icon-after-minus::after {
|
|
571
|
-
content: "
|
|
573
|
+
content: "\e916";
|
|
572
574
|
}
|
|
573
575
|
.utah-design-system .utds-icon-before-x-icon::before,
|
|
574
576
|
.utah-design-system .utds-icon-after-x-icon::after {
|
|
575
|
-
content: "
|
|
577
|
+
content: "\e917";
|
|
576
578
|
}
|
|
577
579
|
.utah-design-system .utds-icon-before-edit::before,
|
|
578
580
|
.utah-design-system .utds-icon-after-edit::after {
|
|
579
|
-
content: "
|
|
581
|
+
content: "\e918";
|
|
580
582
|
}
|
|
581
583
|
.utah-design-system .utds-icon-before-edit-box::before,
|
|
582
584
|
.utah-design-system .utds-icon-after-edit-box::after {
|
|
583
|
-
content: "
|
|
585
|
+
content: "\e919";
|
|
584
586
|
}
|
|
585
587
|
.utah-design-system .utds-icon-before-verified::before,
|
|
586
588
|
.utah-design-system .utds-icon-after-verified::after {
|
|
587
|
-
content: "
|
|
589
|
+
content: "\e91a";
|
|
588
590
|
}
|
|
589
591
|
.utah-design-system .utds-icon-before-gear::before,
|
|
590
592
|
.utah-design-system .utds-icon-after-gear::after {
|
|
591
|
-
content: "
|
|
593
|
+
content: "\e91b";
|
|
592
594
|
}
|
|
593
595
|
.utah-design-system .utds-icon-before-doc::before,
|
|
594
596
|
.utah-design-system .utds-icon-after-doc::after {
|
|
595
|
-
content: "
|
|
597
|
+
content: "\e91c";
|
|
596
598
|
}
|
|
597
599
|
.utah-design-system .utds-icon-before-doc-square::before,
|
|
598
600
|
.utah-design-system .utds-icon-after-doc-square::after {
|
|
599
|
-
content: "
|
|
601
|
+
content: "\e91d";
|
|
600
602
|
}
|
|
601
603
|
.utah-design-system .utds-icon-before-warning::before,
|
|
602
604
|
.utah-design-system .utds-icon-after-warning::after {
|
|
603
|
-
content: "
|
|
605
|
+
content: "\e91e";
|
|
604
606
|
}
|
|
605
607
|
.utah-design-system .utds-icon-before-error::before,
|
|
606
608
|
.utah-design-system .utds-icon-after-error::after {
|
|
607
|
-
content: "
|
|
609
|
+
content: "\e91f";
|
|
608
610
|
}
|
|
609
611
|
.utah-design-system .utds-icon-before-copy::before,
|
|
610
612
|
.utah-design-system .utds-icon-after-copy::after {
|
|
611
|
-
content: "
|
|
613
|
+
content: "\e920";
|
|
612
614
|
}
|
|
613
615
|
.utah-design-system .utds-icon-before-home-menu::before,
|
|
614
616
|
.utah-design-system .utds-icon-after-home-menu::after {
|
|
615
|
-
content: "
|
|
617
|
+
content: "\e921";
|
|
616
618
|
}
|
|
617
619
|
.utah-design-system .utds-icon-before-hamburger::before,
|
|
618
620
|
.utah-design-system .utds-icon-after-hamburger::after {
|
|
619
|
-
content: "
|
|
621
|
+
content: "\e922";
|
|
620
622
|
}
|
|
621
623
|
.utah-design-system .utds-icon-before-account::before,
|
|
622
624
|
.utah-design-system .utds-icon-after-account::after {
|
|
623
|
-
content: "
|
|
625
|
+
content: "\e923";
|
|
624
626
|
}
|
|
625
627
|
.utah-design-system .utds-icon-before-lock::before,
|
|
626
628
|
.utah-design-system .utds-icon-after-lock::after {
|
|
627
|
-
content: "
|
|
629
|
+
content: "\e924";
|
|
628
630
|
}
|
|
629
631
|
.utah-design-system .utds-icon-before-more-vertical::before,
|
|
630
632
|
.utah-design-system .utds-icon-after-more-vertical::after {
|
|
631
|
-
content: "
|
|
633
|
+
content: "\e925";
|
|
632
634
|
}
|
|
633
635
|
.utah-design-system .utds-icon-before-more-horizontal::before,
|
|
634
636
|
.utah-design-system .utds-icon-after-more-horizontal::after {
|
|
635
|
-
content: "
|
|
637
|
+
content: "\e926";
|
|
636
638
|
}
|
|
637
639
|
.utah-design-system .utds-icon-before-download::before,
|
|
638
640
|
.utah-design-system .utds-icon-after-download::after {
|
|
639
|
-
content: "
|
|
641
|
+
content: "\e927";
|
|
640
642
|
}
|
|
641
643
|
.utah-design-system .utds-icon-before-upload::before,
|
|
642
644
|
.utah-design-system .utds-icon-after-upload::after {
|
|
643
|
-
content: "
|
|
645
|
+
content: "\e928";
|
|
644
646
|
}
|
|
645
647
|
.utah-design-system .utds-icon-before-favorite::before,
|
|
646
648
|
.utah-design-system .utds-icon-after-favorite::after {
|
|
647
|
-
content: "
|
|
649
|
+
content: "\e929";
|
|
648
650
|
}
|
|
649
651
|
.utah-design-system .utds-icon-before-visibility::before,
|
|
650
652
|
.utah-design-system .utds-icon-after-visibility::after {
|
|
651
|
-
content: "
|
|
653
|
+
content: "\e92a";
|
|
652
654
|
}
|
|
653
655
|
.utah-design-system .utds-icon-before-visibility-off::before,
|
|
654
656
|
.utah-design-system .utds-icon-after-visibility-off::after {
|
|
655
|
-
content: "
|
|
657
|
+
content: "\e92b";
|
|
656
658
|
}
|
|
657
659
|
.utah-design-system .utds-icon-before-trash::before,
|
|
658
660
|
.utah-design-system .utds-icon-after-trash::after {
|
|
659
|
-
content: "
|
|
661
|
+
content: "\e92c";
|
|
660
662
|
}
|
|
661
663
|
.utah-design-system .utds-icon-before-calendar::before,
|
|
662
664
|
.utah-design-system .utds-icon-after-calendar::after {
|
|
663
|
-
content: "
|
|
665
|
+
content: "\e92d";
|
|
664
666
|
}
|
|
665
667
|
.utah-design-system .utds-icon-before-clock::before,
|
|
666
668
|
.utah-design-system .utds-icon-after-clock::after {
|
|
667
|
-
content: "
|
|
669
|
+
content: "\e92e";
|
|
668
670
|
}
|
|
669
671
|
.utah-design-system .utds-icon-before-double-arrow-up::before,
|
|
670
672
|
.utah-design-system .utds-icon-after-double-arrow-up::after {
|
|
671
|
-
content: "
|
|
673
|
+
content: "\e92f";
|
|
672
674
|
}
|
|
673
675
|
.utah-design-system .utds-icon-before-double-arrow-right::before,
|
|
674
676
|
.utah-design-system .utds-icon-after-double-arrow-right::after {
|
|
675
|
-
content: "
|
|
677
|
+
content: "\e930";
|
|
676
678
|
}
|
|
677
679
|
.utah-design-system .utds-icon-before-double-arrow-down::before,
|
|
678
680
|
.utah-design-system .utds-icon-after-double-arrow-down::after {
|
|
679
|
-
content: "
|
|
681
|
+
content: "\e931";
|
|
680
682
|
}
|
|
681
683
|
.utah-design-system .utds-icon-before-double-arrow-left::before,
|
|
682
684
|
.utah-design-system .utds-icon-after-double-arrow-left::after {
|
|
683
|
-
content: "
|
|
685
|
+
content: "\e932";
|
|
684
686
|
}
|
|
685
687
|
.utah-design-system .utds-icon-before-filter::before,
|
|
686
688
|
.utah-design-system .utds-icon-after-filter::after {
|
|
687
|
-
content: "
|
|
689
|
+
content: "\e933";
|
|
688
690
|
}
|
|
689
691
|
.utah-design-system .utds-icon-before-restart::before,
|
|
690
692
|
.utah-design-system .utds-icon-after-restart::after {
|
|
691
|
-
content: "
|
|
693
|
+
content: "\e934";
|
|
692
694
|
}
|
|
693
695
|
.utah-design-system .utds-icon-before-sync::before,
|
|
694
696
|
.utah-design-system .utds-icon-after-sync::after {
|
|
695
|
-
content: "
|
|
697
|
+
content: "\e935";
|
|
696
698
|
}
|
|
697
699
|
.utah-design-system .utds-icon-before-refresh::before,
|
|
698
700
|
.utah-design-system .utds-icon-after-refresh::after {
|
|
699
|
-
content: "
|
|
701
|
+
content: "\e936";
|
|
700
702
|
}
|
|
701
703
|
.utah-design-system .utds-icon-before-light-mode::before,
|
|
702
704
|
.utah-design-system .utds-icon-after-light-mode::after {
|
|
703
|
-
content: "
|
|
705
|
+
content: "\e937";
|
|
704
706
|
}
|
|
705
707
|
.utah-design-system .utds-icon-before-dark-mode::before,
|
|
706
708
|
.utah-design-system .utds-icon-after-dark-mode::after {
|
|
707
|
-
content: "
|
|
709
|
+
content: "\e938";
|
|
708
710
|
}
|
|
709
711
|
.utah-design-system .utds-icon-before-mail::before,
|
|
710
712
|
.utah-design-system .utds-icon-after-mail::after {
|
|
711
|
-
content: "
|
|
713
|
+
content: "\e939";
|
|
712
714
|
}
|
|
713
715
|
.utah-design-system .utds-icon-before-share::before,
|
|
714
716
|
.utah-design-system .utds-icon-after-share::after {
|
|
715
|
-
content: "
|
|
717
|
+
content: "\e93a";
|
|
716
718
|
}
|
|
717
719
|
.utah-design-system .utds-icon-before-policy::before,
|
|
718
720
|
.utah-design-system .utds-icon-after-policy::after {
|
|
719
|
-
content: "
|
|
721
|
+
content: "\e93b";
|
|
720
722
|
}
|
|
721
723
|
.utah-design-system .utds-icon-before-login::before,
|
|
722
724
|
.utah-design-system .utds-icon-after-login::after {
|
|
723
|
-
content: "
|
|
725
|
+
content: "\e93c";
|
|
724
726
|
}
|
|
725
727
|
.utah-design-system .utds-icon-before-logout::before,
|
|
726
728
|
.utah-design-system .utds-icon-after-logout::after {
|
|
727
|
-
content: "
|
|
729
|
+
content: "\e93d";
|
|
730
|
+
}
|
|
731
|
+
.utah-design-system .utds-icon-before-circle-check::before,
|
|
732
|
+
.utah-design-system .utds-icon-after-circle-check::after {
|
|
733
|
+
content: "\e93e";
|
|
734
|
+
}
|
|
735
|
+
.utah-design-system .utds-icon-before-mail-open::before,
|
|
736
|
+
.utah-design-system .utds-icon-after-mail-open::after {
|
|
737
|
+
content: "\e93f";
|
|
728
738
|
}
|
|
729
739
|
/*
|
|
730
740
|
############ _media-size-vars.scss ############
|
|
@@ -2275,6 +2285,11 @@ component specific, BEM (Block, Element, Modifier)
|
|
|
2275
2285
|
.utah-design-system .footer-agency-information a[href] {
|
|
2276
2286
|
color: white;
|
|
2277
2287
|
}
|
|
2288
|
+
.utah-design-system .footer-agency-information a[href]:focus-visible {
|
|
2289
|
+
outline: 2px solid #FFF;
|
|
2290
|
+
outline-offset: 2px;
|
|
2291
|
+
border-radius: var(--radius-small1x);
|
|
2292
|
+
}
|
|
2278
2293
|
.utah-design-system .footer-agency-information__title {
|
|
2279
2294
|
font-size: var(--font-size-l);
|
|
2280
2295
|
font-weight: var(--font-weight-semi-bold);
|
|
@@ -2493,6 +2508,35 @@ component specific, BEM (Block, Element, Modifier)
|
|
|
2493
2508
|
.utah-design-system .text-input__clear-button[disabled]:active {
|
|
2494
2509
|
transform: translateY(-50%);
|
|
2495
2510
|
}
|
|
2511
|
+
.utah-design-system .search-input__wrapper {
|
|
2512
|
+
position: relative;
|
|
2513
|
+
}
|
|
2514
|
+
.utah-design-system .search-input__wrapper input[type=text] {
|
|
2515
|
+
border-radius: var(--radius-circle);
|
|
2516
|
+
padding: var(--spacing-s) 170px var(--spacing-s) var(--spacing-3xl);
|
|
2517
|
+
}
|
|
2518
|
+
.utah-design-system .search-input__button-wrapper {
|
|
2519
|
+
position: absolute;
|
|
2520
|
+
right: var(--spacing-xs);
|
|
2521
|
+
}
|
|
2522
|
+
.utah-design-system .search-input__button-wrapper:has(button:focus) {
|
|
2523
|
+
clip: unset;
|
|
2524
|
+
height: unset;
|
|
2525
|
+
margin: unset;
|
|
2526
|
+
overflow: unset;
|
|
2527
|
+
padding: unset;
|
|
2528
|
+
position: absolute;
|
|
2529
|
+
width: unset;
|
|
2530
|
+
}
|
|
2531
|
+
.utah-design-system .search-input__icon-search {
|
|
2532
|
+
position: absolute;
|
|
2533
|
+
top: calc(50% + 2px);
|
|
2534
|
+
left: var(--spacing);
|
|
2535
|
+
}
|
|
2536
|
+
.utah-design-system .search-input__icon-search[class*=utds-icon-before-]::before {
|
|
2537
|
+
display: block;
|
|
2538
|
+
font-size: 1.2rem;
|
|
2539
|
+
}
|
|
2496
2540
|
.utah-design-system .combo-box-input[type=text] {
|
|
2497
2541
|
padding: 0 var(--spacing-xl) 0 var(--spacing-xs);
|
|
2498
2542
|
}
|
|
@@ -2948,6 +2992,9 @@ component specific, BEM (Block, Element, Modifier)
|
|
|
2948
2992
|
.utah-design-system select.select-input--clear-icon-visible {
|
|
2949
2993
|
padding: 0 var(--spacing-3xl) 0 var(--spacing-xs);
|
|
2950
2994
|
}
|
|
2995
|
+
.utah-design-system select.select-input--placeholder {
|
|
2996
|
+
color: var(--form-ele-placeholder-color);
|
|
2997
|
+
}
|
|
2951
2998
|
.utah-design-system select[aria-invalid=true] {
|
|
2952
2999
|
border: 2px solid var(--danger-color);
|
|
2953
3000
|
}
|
|
@@ -4034,43 +4081,43 @@ BEM standard: Block, Element, Modifier
|
|
|
4034
4081
|
content: "";
|
|
4035
4082
|
transform: rotate(45deg);
|
|
4036
4083
|
}
|
|
4037
|
-
.utah-design-system .popup__wrapper[data-
|
|
4084
|
+
.utah-design-system .popup__wrapper[data-popup-placement^=top] .popup__content {
|
|
4038
4085
|
transform-origin: bottom;
|
|
4039
4086
|
}
|
|
4040
|
-
.utah-design-system .popup__wrapper[data-
|
|
4087
|
+
.utah-design-system .popup__wrapper[data-popup-placement^=top] .popup__arrow {
|
|
4041
4088
|
bottom: -5px;
|
|
4042
4089
|
}
|
|
4043
|
-
.utah-design-system .popup__wrapper[data-
|
|
4090
|
+
.utah-design-system .popup__wrapper[data-popup-placement^=top] .popup__arrow::before {
|
|
4044
4091
|
border-bottom: 1px solid var(--gray-3-1-contrast);
|
|
4045
4092
|
border-right: 1px solid var(--gray-3-1-contrast);
|
|
4046
4093
|
}
|
|
4047
|
-
.utah-design-system .popup__wrapper[data-
|
|
4094
|
+
.utah-design-system .popup__wrapper[data-popup-placement^=bottom] .popup__content {
|
|
4048
4095
|
transform-origin: top;
|
|
4049
4096
|
}
|
|
4050
|
-
.utah-design-system .popup__wrapper[data-
|
|
4097
|
+
.utah-design-system .popup__wrapper[data-popup-placement^=bottom] .popup__arrow {
|
|
4051
4098
|
top: -6px;
|
|
4052
4099
|
}
|
|
4053
|
-
.utah-design-system .popup__wrapper[data-
|
|
4100
|
+
.utah-design-system .popup__wrapper[data-popup-placement^=bottom] .popup__arrow::before {
|
|
4054
4101
|
border-top: 1px solid var(--gray-3-1-contrast);
|
|
4055
4102
|
border-left: 1px solid var(--gray-3-1-contrast);
|
|
4056
4103
|
}
|
|
4057
|
-
.utah-design-system .popup__wrapper[data-
|
|
4104
|
+
.utah-design-system .popup__wrapper[data-popup-placement^=left] .popup__content {
|
|
4058
4105
|
transform-origin: right;
|
|
4059
4106
|
}
|
|
4060
|
-
.utah-design-system .popup__wrapper[data-
|
|
4107
|
+
.utah-design-system .popup__wrapper[data-popup-placement^=left] .popup__arrow {
|
|
4061
4108
|
right: -5px;
|
|
4062
4109
|
}
|
|
4063
|
-
.utah-design-system .popup__wrapper[data-
|
|
4110
|
+
.utah-design-system .popup__wrapper[data-popup-placement^=left] .popup__arrow::before {
|
|
4064
4111
|
border-top: 1px solid var(--gray-3-1-contrast);
|
|
4065
4112
|
border-right: 1px solid var(--gray-3-1-contrast);
|
|
4066
4113
|
}
|
|
4067
|
-
.utah-design-system .popup__wrapper[data-
|
|
4114
|
+
.utah-design-system .popup__wrapper[data-popup-placement^=right] .popup__content {
|
|
4068
4115
|
transform-origin: left;
|
|
4069
4116
|
}
|
|
4070
|
-
.utah-design-system .popup__wrapper[data-
|
|
4117
|
+
.utah-design-system .popup__wrapper[data-popup-placement^=right] .popup__arrow {
|
|
4071
4118
|
left: -6px;
|
|
4072
4119
|
}
|
|
4073
|
-
.utah-design-system .popup__wrapper[data-
|
|
4120
|
+
.utah-design-system .popup__wrapper[data-popup-placement^=right] .popup__arrow::before {
|
|
4074
4121
|
border-bottom: 1px solid var(--gray-3-1-contrast);
|
|
4075
4122
|
border-left: 1px solid var(--gray-3-1-contrast);
|
|
4076
4123
|
}
|
|
@@ -4141,28 +4188,28 @@ BEM standard: Block, Element, Modifier
|
|
|
4141
4188
|
left: 50%;
|
|
4142
4189
|
transform: translateX(-50%) rotate(45deg);
|
|
4143
4190
|
}
|
|
4144
|
-
.utah-design-system .tooltip__wrapper[data-
|
|
4191
|
+
.utah-design-system .tooltip__wrapper[data-popup-placement^=top] .tooltip__content {
|
|
4145
4192
|
transform-origin: bottom;
|
|
4146
4193
|
}
|
|
4147
|
-
.utah-design-system .tooltip__wrapper[data-
|
|
4194
|
+
.utah-design-system .tooltip__wrapper[data-popup-placement^=top] .tooltip__arrow {
|
|
4148
4195
|
bottom: -2px;
|
|
4149
4196
|
}
|
|
4150
|
-
.utah-design-system .tooltip__wrapper[data-
|
|
4197
|
+
.utah-design-system .tooltip__wrapper[data-popup-placement^=bottom] .tooltip__content {
|
|
4151
4198
|
transform-origin: top;
|
|
4152
4199
|
}
|
|
4153
|
-
.utah-design-system .tooltip__wrapper[data-
|
|
4200
|
+
.utah-design-system .tooltip__wrapper[data-popup-placement^=bottom] .tooltip__arrow {
|
|
4154
4201
|
top: -3px;
|
|
4155
4202
|
}
|
|
4156
|
-
.utah-design-system .tooltip__wrapper[data-
|
|
4203
|
+
.utah-design-system .tooltip__wrapper[data-popup-placement^=left] .tooltip__content {
|
|
4157
4204
|
transform-origin: right;
|
|
4158
4205
|
}
|
|
4159
|
-
.utah-design-system .tooltip__wrapper[data-
|
|
4206
|
+
.utah-design-system .tooltip__wrapper[data-popup-placement^=left] .tooltip__arrow {
|
|
4160
4207
|
right: -2px;
|
|
4161
4208
|
}
|
|
4162
|
-
.utah-design-system .tooltip__wrapper[data-
|
|
4209
|
+
.utah-design-system .tooltip__wrapper[data-popup-placement^=right] .tooltip__content {
|
|
4163
4210
|
transform-origin: left;
|
|
4164
4211
|
}
|
|
4165
|
-
.utah-design-system .tooltip__wrapper[data-
|
|
4212
|
+
.utah-design-system .tooltip__wrapper[data-popup-placement^=right] .tooltip__arrow {
|
|
4166
4213
|
left: -3px;
|
|
4167
4214
|
}
|
|
4168
4215
|
/*
|
|
@@ -4189,6 +4236,7 @@ BEM standard: Block, Element, Modifier
|
|
|
4189
4236
|
top: 0;
|
|
4190
4237
|
left: 0;
|
|
4191
4238
|
z-index: 4000;
|
|
4239
|
+
overflow: auto;
|
|
4192
4240
|
}
|
|
4193
4241
|
.utah-design-system .modal__wrapper {
|
|
4194
4242
|
animation: 400ms ease-in-out 100ms drop-in both;
|
|
@@ -4198,7 +4246,7 @@ BEM standard: Block, Element, Modifier
|
|
|
4198
4246
|
width: calc(100% - var(--spacing-3xl));
|
|
4199
4247
|
border-radius: var(--radius-medium);
|
|
4200
4248
|
left: 50%;
|
|
4201
|
-
margin: var(--spacing-4xl)
|
|
4249
|
+
margin: var(--spacing-4xl) 0;
|
|
4202
4250
|
overflow: hidden;
|
|
4203
4251
|
padding: 0;
|
|
4204
4252
|
position: absolute;
|
|
@@ -4212,7 +4260,6 @@ BEM standard: Block, Element, Modifier
|
|
|
4212
4260
|
padding: var(--spacing-xs) calc(var(--spacing) + 1.4rem) var(--spacing-xs) var(--spacing-l);
|
|
4213
4261
|
}
|
|
4214
4262
|
.utah-design-system .modal__content {
|
|
4215
|
-
line-height: 1.6rem;
|
|
4216
4263
|
padding: var(--spacing-xs) var(--spacing-l);
|
|
4217
4264
|
}
|
|
4218
4265
|
.utah-design-system .modal__footer {
|
|
@@ -4284,13 +4331,7 @@ BEM standard: Block, Element, Modifier
|
|
|
4284
4331
|
.utah-design-system .search-modal__close-button:hover [class*=utds-icon-before-]::before {
|
|
4285
4332
|
color: var(--gray-color);
|
|
4286
4333
|
}
|
|
4287
|
-
.utah-design-system .search-modal__icon-search {
|
|
4288
|
-
position: absolute;
|
|
4289
|
-
top: calc(50% + 2px);
|
|
4290
|
-
left: var(--spacing);
|
|
4291
|
-
}
|
|
4292
4334
|
.utah-design-system .search-modal__icon-search[class*=utds-icon-before-]::before {
|
|
4293
|
-
display: block;
|
|
4294
4335
|
font-size: 1.3rem;
|
|
4295
4336
|
}
|
|
4296
4337
|
.utah-design-system .documentation-template {
|
|
@@ -5177,7 +5218,7 @@ BEM standard: Block, Element, Modifier
|
|
|
5177
5218
|
top: 106px;
|
|
5178
5219
|
left: 0;
|
|
5179
5220
|
width: 100%;
|
|
5180
|
-
height: 100
|
|
5221
|
+
height: calc(100% - 106px);
|
|
5181
5222
|
z-index: 1000;
|
|
5182
5223
|
background-color: transparent;
|
|
5183
5224
|
}
|
|
@@ -5265,6 +5306,11 @@ BEM standard: Block, Element, Modifier
|
|
|
5265
5306
|
box-sizing: border-box;
|
|
5266
5307
|
width: 100%;
|
|
5267
5308
|
}
|
|
5309
|
+
.utah-design-system.utds-footer a:focus-visible {
|
|
5310
|
+
outline: 2px solid #FFF;
|
|
5311
|
+
outline-offset: 2px;
|
|
5312
|
+
border-radius: var(--radius-small1x);
|
|
5313
|
+
}
|
|
5268
5314
|
.utds-footer__horizontal-divider {
|
|
5269
5315
|
position: absolute;
|
|
5270
5316
|
width: calc(100% - 2 * var(--spacing-xl));
|
|
@@ -5360,7 +5406,10 @@ BEM standard: Block, Element, Modifier
|
|
|
5360
5406
|
.utds-footer__vertical-divider {
|
|
5361
5407
|
display: none;
|
|
5362
5408
|
}
|
|
5363
|
-
.utds-footer__official-site
|
|
5409
|
+
.utds-footer__official-site {
|
|
5410
|
+
text-align: center;
|
|
5411
|
+
}
|
|
5412
|
+
.utds-footer__official-site-site-wrapper {
|
|
5364
5413
|
flex: 1 0 100%;
|
|
5365
5414
|
display: flex;
|
|
5366
5415
|
align-items: center;
|