@utahdts/utah-design-system 4.3.0 → 5.0.1

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.
Files changed (27) hide show
  1. package/css/1-settings/_color-swatches.scss +74 -0
  2. package/css/1-settings/_font-stuff.scss +52 -2
  3. package/css/1-settings/_settings-index.scss +91 -12
  4. package/css/6-components/base-components/containers/_drawer.scss +1 -1
  5. package/css/6-components/base-components/containers/_tab-group.scss +3 -0
  6. package/css/6-components/base-components/footer/_utah-footer.scss +4 -1
  7. package/css/6-components/base-components/forms/_text-input.scss +1 -0
  8. package/css/6-components/base-components/navigation/_main-menu.scss +8 -3
  9. package/css/6-components/base-components/navigation/_vertical-menu.scss +1 -0
  10. package/css/6-components/base-components/popups/_search-modal.scss +8 -0
  11. package/css/6-components/base-components/widgetsIndicators/_badge.scss +2 -2
  12. package/css/6-components/project-components/_swatch-list.scss +5 -2
  13. package/css/6-components/utah-header/_badge.scss +2 -2
  14. package/css/6-components/utah-header/_citizen-experience.scss +16 -0
  15. package/css/6-components/utah-header/_logos.scss +22 -6
  16. package/css/6-components/utah-header/_mobile-menu.scss +3 -3
  17. package/css/6-components/utah-header/_notifications.scss +200 -0
  18. package/css/6-components/utah-header/_official-banner.scss +85 -0
  19. package/css/6-components/utah-header/_official-website-popup.scss +3 -2
  20. package/css/6-components/utah-header/_utah-header-wrapper.scss +12 -1
  21. package/css/6-components/utah-header/index.scss +2 -0
  22. package/dist/style.css +435 -38
  23. package/dist/utah-design-system.es.js +7455 -7232
  24. package/dist/utah-design-system.umd.js +7737 -7340
  25. package/package.json +14 -14
  26. package/react/components/table/TableWrapper.jsx +7 -0
  27. package/react/components/table/useCurrentValuesFromStateContext.js +1 -2
package/dist/style.css CHANGED
@@ -350,10 +350,40 @@ variables and settings
350
350
  ############ _font-size.scss ############
351
351
  Font size variables
352
352
  */
353
+ @font-face {
354
+ font-family: "UT Industry";
355
+ src: url("https://cdn.utah.gov/design-system/fonts/ut-industry/woff2/UTIndustry-Regular.woff2") format("woff2"), url("https://cdn.utah.gov/design-system/fonts/ut-industry/woff/UTIndustry-Regular.woff") format("woff"), url("https://cdn.utah.gov/design-system/fonts/ut-industry/otf/UTIndustry-Regular.otf") format("opentype"), url("https://cdn.utah.gov/design-system/fonts/ut-industry/ttf/UTIndustry-Regular.ttf") format("truetype");
356
+ font-weight: 400;
357
+ font-style: normal;
358
+ font-display: block;
359
+ }
360
+ @font-face {
361
+ font-family: "UT Industry";
362
+ src: url("https://cdn.utah.gov/design-system/fonts/ut-industry/woff2/UTIndustry-Medium.woff2") format("woff2"), url("https://cdn.utah.gov/design-system/fonts/ut-industry/woff/UTIndustry-Medium.woff") format("woff"), url("https://cdn.utah.gov/design-system/fonts/ut-industry/otf/UTIndustry-Medium.otf") format("opentype"), url("https://cdn.utah.gov/design-system/fonts/ut-industry/ttf/UTIndustry-Medium.ttf") format("truetype");
363
+ font-weight: 500;
364
+ font-style: normal;
365
+ font-display: block;
366
+ }
367
+ @font-face {
368
+ font-family: "UT Industry";
369
+ src: url("https://cdn.utah.gov/design-system/fonts/ut-industry/woff2/UTIndustry-Bold.woff2") format("woff2"), url("https://cdn.utah.gov/design-system/fonts/ut-industry/woff/UTIndustry-Bold.woff") format("woff"), url("https://cdn.utah.gov/design-system/fonts/ut-industry/otf/UTIndustry-Bold.otf") format("opentype"), url("https://cdn.utah.gov/design-system/fonts/ut-industry/ttf/UTIndustry-Bold.ttf") format("truetype");
370
+ font-weight: 700;
371
+ font-style: normal;
372
+ font-display: block;
373
+ }
374
+ @font-face {
375
+ font-family: "UT Industry";
376
+ src: url("https://cdn.utah.gov/design-system/fonts/ut-industry/woff2/UTIndustry-Heavy.woff2") format("woff2"), url("https://cdn.utah.gov/design-system/fonts/ut-industry/woff/UTIndustry-Heavy.woff") format("woff"), url("https://cdn.utah.gov/design-system/fonts/ut-industry/otf/UTIndustry-Heavy.otf") format("opentype"), url("https://cdn.utah.gov/design-system/fonts/ut-industry/ttf/UTIndustry-Heavy.ttf") format("truetype");
377
+ font-weight: 900;
378
+ font-style: normal;
379
+ font-display: block;
380
+ }
381
+ :root {
382
+ --ut-industry-font-family: 'UT Industry', Georgia, serif;
383
+ }
353
384
  .utah-design-system {
354
385
  --normal-font-family: 'Source Sans 3', 'Source Sans Pro', 'Helvetica Neue', Helvetica, sans-serif;
355
386
  --fixed-width-font-family: 'Source Code Pro', monospace;
356
- --font-size-2xs: .8125rem;
357
387
  --font-size-xs: .875rem;
358
388
  --font-size-s: .9375rem;
359
389
  --font-size: 1rem;
@@ -373,9 +403,6 @@ Font size variables
373
403
  --font-weight-bold: 700;
374
404
  --font-weight-black: 900;
375
405
  }
376
- .utah-design-system .font-size-2xs {
377
- font-size: var(--font-size-2xs);
378
- }
379
406
  .utah-design-system .font-size-xs {
380
407
  font-size: var(--font-size-xs);
381
408
  }
@@ -435,6 +462,9 @@ Font size variables
435
462
  base color swatches for the design system
436
463
  */
437
464
  /*
465
+ branding colors
466
+ */
467
+ /*
438
468
  ############ _settings-index.scss ############
439
469
  variables and settings
440
470
  */
@@ -740,26 +770,95 @@ variables and settings
740
770
  ############ _media-size-vars.scss ############
741
771
  Media Sizes - SCSS Variables
742
772
  */
773
+ :root {
774
+ /* ######## ---------- Branding --------- ######## */
775
+ --utah-brand-primary-color-blue-dark: #071D49;
776
+ --utah-brand-primary-color-blue-medium: #093692;
777
+ --utah-brand-primary-color-blue-light: #81D0F0;
778
+ --utah-brand-primary-color-gold-light: #FFB81D;
779
+ --utah-brand-primary-color-gold-medium: #FF8C03;
780
+ --utah-brand-primary-color-red: #AA0200;
781
+ --utah-brand-secondary-color-clay-00: #E9DCC8;
782
+ --utah-brand-secondary-color-clay-01: #C0B1A1;
783
+ --utah-brand-secondary-color-clay-02: #9C837E;
784
+ --utah-brand-secondary-color-clay-03: #78555A;
785
+ --utah-brand-secondary-color-clay-04: #52393B;
786
+ --utah-brand-secondary-color-clay-05: #2C1E1B;
787
+ --utah-brand-secondary-color-green-00: #C6D0BE;
788
+ --utah-brand-secondary-color-green-01: #94AF87;
789
+ --utah-brand-secondary-color-green-02: #4A9044;
790
+ --utah-brand-secondary-color-green-03: #007000;
791
+ --utah-brand-secondary-color-green-04: #1C4C10;
792
+ --utah-brand-secondary-color-green-05: #092908;
793
+ --utah-brand-secondary-color-teal-00: #A6C4CA;
794
+ --utah-brand-secondary-color-teal-01: #79B1B1;
795
+ --utah-brand-secondary-color-teal-02: #3D9992;
796
+ --utah-brand-secondary-color-teal-03: #008072;
797
+ --utah-brand-secondary-color-teal-04: #165857;
798
+ --utah-brand-secondary-color-teal-05: #0D262E;
799
+ --utah-brand-secondary-color-blue-00: #C1CFE7;
800
+ --utah-brand-secondary-color-blue-01: #89A4D4;
801
+ --utah-brand-secondary-color-blue-02: #467EC8;
802
+ --utah-brand-secondary-color-blue-03: #0258BB;
803
+ --utah-brand-secondary-color-blue-04: #103982;
804
+ --utah-brand-secondary-color-blue-05: #0E1C3B;
805
+ --utah-brand-secondary-color-violet-00: #D6CEDF;
806
+ --utah-brand-secondary-color-violet-01: #9F8DB4;
807
+ --utah-brand-secondary-color-violet-02: #7259AA;
808
+ --utah-brand-secondary-color-violet-03: #3F1EAD;
809
+ --utah-brand-secondary-color-violet-04: #301C5C;
810
+ --utah-brand-secondary-color-violet-05: #1F0A45;
811
+ --utah-brand-secondary-color-raspberry-00: #D0A7BB;
812
+ --utah-brand-secondary-color-raspberry-01: #C9829E;
813
+ --utah-brand-secondary-color-raspberry-02: #C24177;
814
+ --utah-brand-secondary-color-raspberry-03: #BA004F;
815
+ --utah-brand-secondary-color-raspberry-04: #870746;
816
+ --utah-brand-secondary-color-raspberry-05: #530D3C;
817
+ --utah-brand-secondary-color-red-00: #E1ACA1;
818
+ --utah-brand-secondary-color-red-01: #DF897D;
819
+ --utah-brand-secondary-color-red-02: #FF5D5F;
820
+ --utah-brand-secondary-color-red-03: #E70015;
821
+ --utah-brand-secondary-color-red-04: #9B1B15;
822
+ --utah-brand-secondary-color-red-05: #61100A;
823
+ --utah-brand-secondary-color-orange-00: #E9C997;
824
+ --utah-brand-secondary-color-orange-01: #E5A873;
825
+ --utah-brand-secondary-color-orange-02: #E37D49;
826
+ --utah-brand-secondary-color-orange-03: #E2521F;
827
+ --utah-brand-secondary-color-orange-04: #A34818;
828
+ --utah-brand-secondary-color-orange-05: #633D11;
829
+ --utah-brand-secondary-color-yellow-00: #FAFAD4;
830
+ --utah-brand-secondary-color-yellow-01: #F8FAAF;
831
+ --utah-brand-secondary-color-yellow-02: #F5FA7D;
832
+ --utah-brand-secondary-color-yellow-03: #F2FA00;
833
+ --utah-brand-secondary-color-yellow-04: #CBB60C;
834
+ --utah-brand-secondary-color-yellow-05: #A47217;
835
+ /* ######## --------------------------------------------- ######## */
836
+ }
743
837
  .utah-design-system {
744
838
  /* color */
745
839
  /* ######## Pick these colors to match your desired style ######## */
746
- --primary-color: #b2441e;
747
- --primary-color-dark: #71321c;
748
- --primary-color-light: #f9f0ed;
749
- --gray-on-primary-color: #474747;
750
- --secondary-color: #1f89ad;
751
- --secondary-color-dark: #27424b;
752
- --secondary-color-light: #edf5f8;
840
+ --primary-color: var(--utah-brand-primary-color-blue-medium);
841
+ --primary-color-dark: var(--utah-brand-primary-color-blue-dark);
842
+ --primary-color-light: var(--utah-brand-primary-color-blue-light);
843
+ --gray-on-primary-color: white;
844
+ --secondary-color: var(--utah-brand-secondary-color-teal-03);
845
+ --secondary-color-dark: var(--utah-brand-secondary-color-teal-05);
846
+ --secondary-color-light: var(--utah-brand-secondary-color-teal-00);
753
847
  --gray-on-secondary-color: #474747;
754
- --accent-color: #ffb612;
755
- --accent-color-dark: #463d29;
756
- --accent-color-light: #fff9ec;
848
+ --accent-color: var(--utah-brand-primary-color-gold-light);
849
+ --accent-color-dark: var(--utah-brand-primary-color-gold-medium);
850
+ --accent-color-light: var(--utah-brand-secondary-color-yellow-00);
757
851
  --gray-on-accent-color: #474747;
758
852
  --form-ele-color: #2765e4;
759
853
  --form-ele-color-light: #9bb8f2;
854
+ --form-ele-color-dark: #234b9e;
760
855
  --form-ele-disabled-color: #949494;
761
856
  --form-ele-placeholder-color: #757575;
762
- /* ######## --------------------------------------------- ######## */
857
+ --header-primary-color: var(--primary-color);
858
+ --header-primary-color-dark: var(--primary-color-dark);
859
+ --header-title-color: var(--utah-brand-primary-color-blue-dark);
860
+ --notifications-drawer-color: var(--form-ele-color);
861
+ --notifications-drawer-color-dark: var(--form-ele-color-dark);
763
862
  --gray-color: #474747;
764
863
  --gray-medium-color: #616161;
765
864
  --gray-3-1-contrast: #949494;
@@ -1562,7 +1661,7 @@ component specific, BEM (Block, Element, Modifier)
1562
1661
  display: inline-block;
1563
1662
  height: 100%;
1564
1663
  overflow-y: auto;
1565
- padding: var(--spacing);
1664
+ padding: 0;
1566
1665
  }
1567
1666
  .utah-design-system .drawer__inner.drawer--right {
1568
1667
  animation: 200ms ease-in-out 100ms right-in both;
@@ -1641,6 +1740,9 @@ component specific, BEM (Block, Element, Modifier)
1641
1740
  .utah-design-system .tab-group__panel--selected {
1642
1741
  display: block;
1643
1742
  }
1743
+ .utah-design-system .tab-group__panel:focus-visible {
1744
+ outline-offset: 2px;
1745
+ }
1644
1746
  .utah-design-system .tab-group--vertical {
1645
1747
  display: flex;
1646
1748
  }
@@ -2568,6 +2670,7 @@ component specific, BEM (Block, Element, Modifier)
2568
2670
  }
2569
2671
  .utah-design-system .search-input__wrapper input[type=text] {
2570
2672
  border-radius: var(--radius-circle);
2673
+ margin: 0;
2571
2674
  padding: var(--spacing-s) 170px var(--spacing-s) var(--spacing-3xl);
2572
2675
  }
2573
2676
  .utah-design-system .search-input__button-wrapper {
@@ -3429,6 +3532,9 @@ component specific, BEM (Block, Element, Modifier)
3429
3532
  position: relative;
3430
3533
  z-index: 2500;
3431
3534
  }
3535
+ .utah-design-system.main-menu__outer:has(.popup__wrapper:not(.popup__wrapper--hidden)) {
3536
+ z-index: 4000;
3537
+ }
3432
3538
  .utah-design-system .main-menu__wrapper {
3433
3539
  background-color: var(--gray-light-color);
3434
3540
  display: flex;
@@ -3463,7 +3569,7 @@ component specific, BEM (Block, Element, Modifier)
3463
3569
  padding: var(--spacing-3xs) var(--spacing);
3464
3570
  margin: var(--spacing-xs) 0;
3465
3571
  border-radius: 999px;
3466
- transition: all var(--timing-quick) ease-in-out;
3572
+ transition: box-shadow var(--timing-quick) ease-in-out;
3467
3573
  position: relative;
3468
3574
  box-sizing: border-box;
3469
3575
  font-size: var(--font-size);
@@ -3489,7 +3595,7 @@ component specific, BEM (Block, Element, Modifier)
3489
3595
  content: "";
3490
3596
  width: 100%;
3491
3597
  height: var(--spacing-2xs);
3492
- background: var(--primary-color);
3598
+ background: var(--header-primary-color);
3493
3599
  display: block;
3494
3600
  position: absolute;
3495
3601
  top: 0;
@@ -3810,6 +3916,7 @@ component specific, BEM (Block, Element, Modifier)
3810
3916
  padding: var(--spacing-2xs) var(--spacing);
3811
3917
  text-align: left;
3812
3918
  text-decoration: none;
3919
+ transition: background-color var(--timing-quick) ease-in-out;
3813
3920
  width: 100%;
3814
3921
  position: relative;
3815
3922
  }
@@ -4416,6 +4523,14 @@ BEM standard: Block, Element, Modifier
4416
4523
  .utah-design-system .search-modal__icon-search[class*=utds-icon-before-]::before {
4417
4524
  font-size: 1.3rem;
4418
4525
  }
4526
+ .utah-design-system .search-modal .button.button--solid.button--primary-color {
4527
+ background-color: var(--header-primary-color);
4528
+ border-color: var(--header-primary-color);
4529
+ }
4530
+ .utah-design-system .search-modal .button.button--solid.button--primary-color:hover {
4531
+ background-color: var(--header-primary-color-dark);
4532
+ border-color: var(--header-primary-color-dark);
4533
+ }
4419
4534
  .utah-design-system .documentation-template {
4420
4535
  display: flex;
4421
4536
  flex-direction: row;
@@ -4612,9 +4727,9 @@ BEM standard: Block, Element, Modifier
4612
4727
  border-radius: var(--radius-circle);
4613
4728
  box-sizing: border-box;
4614
4729
  color: white;
4615
- font-size: var(--font-size-2xs);
4730
+ font-size: var(--font-size-xs);
4616
4731
  font-weight: var(--font-weight-semi-bold);
4617
- line-height: var(--font-size-2xs);
4732
+ line-height: var(--font-size-xs);
4618
4733
  min-height: var(--spacing-xs);
4619
4734
  min-width: var(--spacing-2xs);
4620
4735
  padding: var(--spacing-3xs) var(--spacing-2xs);
@@ -4973,6 +5088,9 @@ BEM standard: Block, Element, Modifier
4973
5088
  /*
4974
5089
  ############ _popup.scss ############
4975
5090
  */
5091
+ .utah-design-system .swatches {
5092
+ display: inline-block;
5093
+ }
4976
5094
  .utah-design-system .color-family {
4977
5095
  display: flex;
4978
5096
  margin: 0 0 var(--spacing-2xs) 0;
@@ -4999,8 +5117,8 @@ BEM standard: Block, Element, Modifier
4999
5117
  padding: 0;
5000
5118
  }
5001
5119
  .utah-design-system .color-family__swatch {
5002
- width: 20px;
5003
- height: 20px;
5120
+ width: 94px;
5121
+ height: 24px;
5004
5122
  border: none;
5005
5123
  border-radius: 0;
5006
5124
  min-height: auto;
@@ -5028,6 +5146,15 @@ BEM standard: Block, Element, Modifier
5028
5146
  .utds-citizen-experience-wrapper .main-menu__search {
5029
5147
  margin-right: var(--spacing);
5030
5148
  }
5149
+ .utah-design-system .utds-utah-id__button {
5150
+ overflow: hidden;
5151
+ text-overflow: ellipsis;
5152
+ -webkit-line-clamp: 2;
5153
+ line-clamp: 2;
5154
+ display: -webkit-box;
5155
+ -webkit-box-orient: vertical;
5156
+ padding: 0 var(--spacing);
5157
+ }
5031
5158
  .utah-design-system .utds-action-items-wrapper {
5032
5159
  display: flex;
5033
5160
  gap: var(--spacing);
@@ -5064,7 +5191,7 @@ BEM standard: Block, Element, Modifier
5064
5191
  margin-left: var(--spacing-xs);
5065
5192
  }
5066
5193
  .utds-header {
5067
- padding: var(--spacing-s) var(--spacing-l);
5194
+ padding: var(--spacing-s) var(--spacing);
5068
5195
  border-bottom: 1px solid #d7d7d7 !important;
5069
5196
  width: 100%;
5070
5197
  justify-content: flex-start;
@@ -5082,6 +5209,14 @@ BEM standard: Block, Element, Modifier
5082
5209
  .utds-header--small {
5083
5210
  height: 60px;
5084
5211
  }
5212
+ .utds-header + .main-menu__outer .menu-item a[href].menu-item--selected,
5213
+ .utds-header + .main-menu__outer .vertical-menu a[href].vertical-menu__link-title:hover,
5214
+ .utds-header + .main-menu__outer .vertical-menu button.vertical-menu__button-title:hover {
5215
+ color: var(--header-primary-color);
5216
+ }
5217
+ .utds-header + .main-menu__outer .horizontal-menu > ul li a[href].menu-item--selected + span.menu-chiclet::after {
5218
+ background-color: var(--header-primary-color);
5219
+ }
5085
5220
  .utds-header-desktop--hidden {
5086
5221
  display: none !important;
5087
5222
  }
@@ -5100,9 +5235,6 @@ BEM standard: Block, Element, Modifier
5100
5235
  display: block;
5101
5236
  }
5102
5237
  .utah-design-system .utds-title-wrapper {
5103
- font-size: var(--font-size-3xl);
5104
- font-weight: 600;
5105
- color: var(--gray-medium-color);
5106
5238
  display: flex;
5107
5239
  align-items: center;
5108
5240
  flex: 1;
@@ -5134,8 +5266,13 @@ BEM standard: Block, Element, Modifier
5134
5266
  max-width: 100%;
5135
5267
  }
5136
5268
  .utah-design-system .utds-title-wrapper__title {
5269
+ color: var(--header-title-color);
5270
+ font-family: var(--ut-industry-font-family);
5271
+ font-size: 2.7rem;
5272
+ font-weight: 600;
5137
5273
  line-height: 0.8;
5138
- color: var(--gray-medium-color);
5274
+ margin-top: 0.4rem;
5275
+ white-space: nowrap;
5139
5276
  }
5140
5277
  .utah-design-system .utah-logo-wrapper {
5141
5278
  height: 100%;
@@ -5184,12 +5321,89 @@ BEM standard: Block, Element, Modifier
5184
5321
  text-decoration: none;
5185
5322
  }
5186
5323
  @media screen and (max-width: 768px) {
5187
- .utah-design-system .utds-title-wrapper {
5188
- font-size: var(--font-size-xl);
5324
+ .utah-design-system .utds-title-wrapper__title {
5325
+ font-size: 1.9rem;
5189
5326
  }
5190
5327
  }
5191
- .utah-design-system.utds-official-website-popup__wrapper {
5328
+ @media screen and (max-width: 640px) {
5329
+ .utah-design-system .utds-title-wrapper__logo {
5330
+ flex: 1 0 auto;
5331
+ }
5332
+ .utah-design-system .utds-title-wrapper__title {
5333
+ flex: 1 1 auto;
5334
+ white-space: normal;
5335
+ }
5336
+ }
5337
+ .utds-official-website__wrapper button {
5338
+ padding: 0;
5339
+ border: none;
5340
+ display: inline-flex;
5341
+ min-height: 0;
5342
+ background: transparent;
5343
+ color: var(--gray-light-color);
5344
+ font-size: var(--font-size-xs);
5345
+ border-radius: 0;
5346
+ }
5347
+ .utds-official-website__wrapper button span {
5348
+ text-decoration: underline;
5349
+ }
5350
+ .utds-official-website__wrapper button svg {
5351
+ margin-left: var(--spacing-2xs);
5352
+ }
5353
+ .utds-official-website__wrapper button:hover {
5354
+ color: white;
5355
+ }
5356
+ .utds-official-website__wrapper button:active {
5357
+ scale: 1;
5358
+ box-shadow: none;
5359
+ }
5360
+ .utds-official-website__wrapper button[aria-expanded=true] svg {
5361
+ transform: rotate(180deg);
5362
+ }
5363
+ .utds-official-website__wrapper button:focus-visible {
5364
+ outline: 2px solid #FFF;
5365
+ outline-offset: 2px;
5366
+ border-radius: var(--radius-small1x);
5367
+ }
5368
+ .utds-official-website__banner {
5369
+ padding: var(--spacing-3xs) var(--spacing-l);
5192
5370
  background: var(--gray-color);
5371
+ color: var(--gray-light-color);
5372
+ font-size: var(--font-size-xs);
5373
+ }
5374
+ .utds-official-website-popup__wrapper {
5375
+ background: var(--gray-dark-color);
5376
+ }
5377
+ .utds-official-website__button-title--mobile {
5378
+ display: none;
5379
+ }
5380
+ @media screen and (max-width: 990px) {
5381
+ .utah-design-system .utds-official-website-popup__content {
5382
+ flex-wrap: wrap;
5383
+ gap: var(--spacing-l);
5384
+ flex-direction: column;
5385
+ align-items: flex-start;
5386
+ }
5387
+ }
5388
+ @media screen and (max-width: 768px) {
5389
+ .utds-official-website__banner > span:first-child, .utds-official-website__button-title--desktop {
5390
+ display: none;
5391
+ }
5392
+ .utds-official-website__button-title--mobile {
5393
+ display: inline;
5394
+ }
5395
+ .utds-official-website__banner {
5396
+ padding: var(--spacing-3xs) 0;
5397
+ }
5398
+ .utds-official-website__button {
5399
+ width: 100%;
5400
+ outline-offset: 0 !important;
5401
+ justify-content: flex-start !important;
5402
+ padding: 0 var(--spacing-l) !important;
5403
+ }
5404
+ }
5405
+ .utah-design-system.utds-official-website-popup__wrapper {
5406
+ background: var(--gray-dark-color);
5193
5407
  color: white;
5194
5408
  padding: var(--spacing-l);
5195
5409
  position: relative;
@@ -5243,7 +5457,7 @@ BEM standard: Block, Element, Modifier
5243
5457
  margin-top: var(--spacing-xs);
5244
5458
  }
5245
5459
  .utah-design-system .utds-official-website-popup__official-image {
5246
- width: 150px;
5460
+ width: 325px;
5247
5461
  font-family: "Source Sans 3", "Source Sans Pro", Arial, Helvetica, sans-serif;
5248
5462
  font-weight: normal;
5249
5463
  font-size: 14px;
@@ -5252,6 +5466,7 @@ BEM standard: Block, Element, Modifier
5252
5466
  }
5253
5467
  .utah-design-system .utds-official-website-popup__copyright {
5254
5468
  font-size: var(--font-size-s);
5469
+ margin-left: 27%;
5255
5470
  }
5256
5471
  .utds-badge__wrapper {
5257
5472
  align-items: center;
@@ -5260,11 +5475,11 @@ BEM standard: Block, Element, Modifier
5260
5475
  box-sizing: border-box;
5261
5476
  color: white;
5262
5477
  display: flex;
5263
- font-size: var(--font-size-2xs);
5478
+ font-size: var(--font-size-xs);
5264
5479
  font-weight: var(--font-weight-semi-bold);
5265
5480
  height: 15px;
5266
5481
  justify-content: center;
5267
- line-height: var(--font-size-2xs);
5482
+ line-height: var(--font-size-xs);
5268
5483
  min-width: 15px;
5269
5484
  padding: 1px 2px;
5270
5485
  position: absolute;
@@ -5300,10 +5515,10 @@ BEM standard: Block, Element, Modifier
5300
5515
  .utds-header-mobile-menu.utah-design-system {
5301
5516
  transition: opacity 200ms ease;
5302
5517
  position: absolute;
5303
- top: 106px;
5518
+ top: 126px;
5304
5519
  left: 0;
5305
5520
  width: 100%;
5306
- height: calc(100% - 106px);
5521
+ height: calc(100% - 126px);
5307
5522
  z-index: 1000;
5308
5523
  background-color: transparent;
5309
5524
  }
@@ -5353,7 +5568,7 @@ BEM standard: Block, Element, Modifier
5353
5568
  content: "";
5354
5569
  width: 100%;
5355
5570
  height: var(--spacing-2xs);
5356
- background: var(--primary-color);
5571
+ background: var(--header-primary-color);
5357
5572
  display: block;
5358
5573
  position: absolute;
5359
5574
  bottom: 0;
@@ -5431,9 +5646,12 @@ BEM standard: Block, Element, Modifier
5431
5646
  height: 100%;
5432
5647
  }
5433
5648
  .utds-footer__official-site {
5434
- font-size: var(--font-size-l);
5649
+ font-size: var(--font-size);
5435
5650
  font-weight: var(--font-weight-semi-bold);
5436
5651
  }
5652
+ .utds-footer__official-site-wrapper {
5653
+ line-height: var(--spacing);
5654
+ }
5437
5655
  .utds-footer__copyright {
5438
5656
  font-size: var(--font-size-s);
5439
5657
  }
@@ -5505,6 +5723,185 @@ BEM standard: Block, Element, Modifier
5505
5723
  flex-direction: column;
5506
5724
  }
5507
5725
  }
5726
+ .utah-design-system .utds-notifications-drawer .drawer__inner {
5727
+ max-width: 350px;
5728
+ color: var(--gray-color);
5729
+ background: var(--gray-light-color);
5730
+ }
5731
+ .utah-design-system .utds-notifications-drawer .drawer__title {
5732
+ background: white;
5733
+ height: 38px;
5734
+ font-size: 1.5rem;
5735
+ display: flex;
5736
+ align-items: center;
5737
+ gap: 0.5rem;
5738
+ box-sizing: content-box;
5739
+ }
5740
+ .utah-design-system .utds-notifications-drawer .utds-icon-before-alert {
5741
+ font-size: 1.2rem;
5742
+ }
5743
+ .utah-design-system .utds-notifications-drawer__header-buttons {
5744
+ background: var(--gray-light-color);
5745
+ display: flex;
5746
+ gap: var(--spacing-s);
5747
+ padding: var(--spacing);
5748
+ border-bottom: 1px solid var(--gray-3-1-contrast);
5749
+ }
5750
+ .utah-design-system .utds-notifications-drawer__header-buttons .button {
5751
+ padding: 0 var(--spacing);
5752
+ }
5753
+ .utah-design-system .utds-notifications-drawer a.notifications-settings-button {
5754
+ background: var(--gray-color);
5755
+ color: white;
5756
+ fill: white;
5757
+ }
5758
+ .utah-design-system .utds-notifications-drawer a.notifications-settings-button:hover {
5759
+ background-color: var(--gray-dark-color);
5760
+ box-shadow: none;
5761
+ color: white;
5762
+ fill: white;
5763
+ }
5764
+ .utah-design-system .utds-notifications-drawer a.notifications-settings-button:focus-visible {
5765
+ outline: 2px solid var(--notifications-drawer-color);
5766
+ outline-offset: 2px;
5767
+ transition: none;
5768
+ }
5769
+ .utah-design-system .utds-notifications-drawer .utds-notify-list-item:focus, .utah-design-system .utds-notifications-drawer .utds-notify-list-item:focus-visible, .utah-design-system .utds-notifications-drawer [tabindex]:focus, .utah-design-system .utds-notifications-drawer [tabindex]:focus-visible {
5770
+ outline: 3px solid var(--notifications-drawer-color);
5771
+ outline-offset: -3px;
5772
+ border: none;
5773
+ border-bottom: 1px solid var(--gray-3-1-contrast);
5774
+ box-shadow: none;
5775
+ }
5776
+ .utah-design-system .utds-notifications-drawer .button--primary-color {
5777
+ border-color: var(--notifications-drawer-color);
5778
+ color: var(--notifications-drawer-color);
5779
+ }
5780
+ .utah-design-system .utds-notifications-drawer .button--primary-color:hover {
5781
+ background-color: var(--notifications-drawer-color);
5782
+ color: white;
5783
+ }
5784
+ .utah-design-system .utds-notifications-drawer button.button--solid.button--primary-color {
5785
+ background-color: var(--notifications-drawer-color);
5786
+ border-color: var(--notifications-drawer-color);
5787
+ color: white;
5788
+ }
5789
+ .utah-design-system .utds-notifications-drawer button.button--solid.button--primary-color:hover {
5790
+ background-color: var(--notifications-drawer-color-dark);
5791
+ border-color: var(--notifications-drawer-color-dark);
5792
+ }
5793
+ .utah-design-system .utds-notifications__list {
5794
+ margin: 0;
5795
+ padding: 0;
5796
+ list-style-type: none;
5797
+ height: calc(100vh - 123px);
5798
+ overflow: auto;
5799
+ overscroll-behavior: contain;
5800
+ }
5801
+ .utah-design-system .utds-notify-list-item {
5802
+ border-bottom: 1px solid var(--gray-3-1-contrast);
5803
+ display: flex;
5804
+ flex-direction: column;
5805
+ gap: var(--spacing-2xs);
5806
+ padding: 0 0 var(--spacing-s) 0;
5807
+ background: white;
5808
+ }
5809
+ .utah-design-system .utds-notify-list-item:focus-visible, .utah-design-system .utds-notify-list-item:focus {
5810
+ outline: 3px solid var(--notifications-drawer-color);
5811
+ outline-offset: -3px;
5812
+ }
5813
+ .utah-design-system .utds-notify-list-item:hover {
5814
+ background: var(--gray-light-color);
5815
+ cursor: pointer;
5816
+ }
5817
+ .utah-design-system .utds-notify-list-item__header {
5818
+ position: relative;
5819
+ display: flex;
5820
+ align-items: center;
5821
+ justify-content: center;
5822
+ gap: var(--spacing-s);
5823
+ }
5824
+ .utah-design-system .utds-notify-list-item__title {
5825
+ font-size: var(--font-size-m);
5826
+ line-height: 1.1;
5827
+ flex: 1;
5828
+ font-weight: bold;
5829
+ }
5830
+ .utah-design-system .utds-notify-list-item__status {
5831
+ position: absolute;
5832
+ top: 4px;
5833
+ left: 0;
5834
+ height: calc(100% - 4px);
5835
+ width: 6px;
5836
+ border-top-right-radius: 6px;
5837
+ border-bottom-right-radius: 6px;
5838
+ background: var(--notifications-drawer-color);
5839
+ }
5840
+ .utah-design-system .utds-notify-list-item__status--is-read {
5841
+ background: transparent;
5842
+ font-weight: normal;
5843
+ }
5844
+ .utah-design-system .utds-notify-list-item__icon {
5845
+ display: flex;
5846
+ justify-content: center;
5847
+ align-items: center;
5848
+ padding: var(--spacing-s) 0 var(--spacing-s) var(--spacing);
5849
+ }
5850
+ .utah-design-system .utds-notify-list-item__icon span {
5851
+ font-size: 1.5rem;
5852
+ }
5853
+ .utah-design-system .utds-notify-list-item__icon span[class*=error] {
5854
+ color: #ad360d;
5855
+ }
5856
+ .utah-design-system .utds-notify-list-item__icon span[class*=clock] {
5857
+ color: #2e7114;
5858
+ }
5859
+ .utah-design-system .utds-notify-list-item__icon span[class*=info] {
5860
+ color: #175ae2;
5861
+ }
5862
+ .utah-design-system .utds-notify-list-item__icon span[class*=help] {
5863
+ color: #6e6e6e;
5864
+ }
5865
+ .utah-design-system .utds-notify-list-item__icon span[class*=account] {
5866
+ color: #175ae2;
5867
+ }
5868
+ .utah-design-system .utds-notify-list-item__icon span[class*=utds-icon-before]::before {
5869
+ margin: 0;
5870
+ }
5871
+ .utah-design-system .utds-notify-list-item__time {
5872
+ padding: var(--spacing-s) var(--spacing-s) var(--spacing-s) 0;
5873
+ color: var(--gray-medium-color);
5874
+ }
5875
+ .utah-design-system .utds-notify-list-item__brand-wrapper {
5876
+ display: flex;
5877
+ height: 34px;
5878
+ }
5879
+ .utah-design-system .utds-notify-list-item__brand {
5880
+ max-height: 35px;
5881
+ min-width: 0;
5882
+ }
5883
+ .utah-design-system .utds-notify-list-item__message {
5884
+ padding: 0 var(--spacing);
5885
+ line-height: 1.3;
5886
+ }
5887
+ .utah-design-system .utds-notify-list-item__footer {
5888
+ display: flex;
5889
+ align-items: center;
5890
+ justify-content: space-between;
5891
+ padding: var(--spacing-xs) var(--spacing) 0 var(--spacing);
5892
+ }
5893
+ .utah-design-system .utds-notify-list-item__footer .utds-notify-list-item__link {
5894
+ flex: 0 0 auto;
5895
+ }
5896
+ .utah-design-system .utds-notify-list-item:last-of-type {
5897
+ border-bottom: 1px solid var(--gray-3-1-contrast);
5898
+ }
5899
+ .utah-design-system .utds-notify-list-item--busy-card {
5900
+ padding: 3rem 1rem;
5901
+ }
5902
+ .utah-design-system .utds-notify-list-item--is-read {
5903
+ background-color: var(--gray-light-color);
5904
+ }
5508
5905
  /*
5509
5906
  ############ _utilities.scss ############
5510
5907
  utility classes, atomic css
@@ -5800,4 +6197,4 @@ PRINT SCSS
5800
6197
  A place to add css temporarily
5801
6198
  NOTE: CSS added this this file should eventually be removed or
5802
6199
  located to the correct folder/file where it best belongs.
5803
- */
6200
+ *//*$vite$:1*/