@mixtint/primer-view-components 0.74.1 → 0.75.2

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.
@@ -4990,7 +4990,6 @@ a.tabnav-extra:hover {
4990
4990
  /* stylelint-disable-next-line primer/colors */
4991
4991
  border-right: var(--borderWidth-thin) solid var(--bgColor-default);
4992
4992
  border-radius: var(--borderRadius-small);
4993
- box-shadow: none;
4994
4993
  transition: margin 0.1s ease-in-out;
4995
4994
  }
4996
4995
 
@@ -6705,12 +6704,23 @@ select-panel dialog::backdrop {
6705
6704
 
6706
6705
  .Progress-item {
6707
6706
  outline: 2px solid transparent; /* Support Firefox custom colors */
6707
+ background: LinkText;
6708
6708
  }
6709
6709
 
6710
6710
  .Progress-item + .Progress-item {
6711
6711
  margin-left: var(--base-size-2);
6712
6712
  }
6713
6713
 
6714
+ @media (forced-colors: active) {
6715
+ :root {
6716
+ --progressBar-track-bgColor: CanvasText;
6717
+ }
6718
+
6719
+ .Progress, .Progress-item {
6720
+ forced-color-adjust: none;
6721
+ }
6722
+ }
6723
+
6714
6724
  /* State */
6715
6725
 
6716
6726
  /* Default 32px */
@@ -6734,9 +6744,10 @@ select-panel dialog::backdrop {
6734
6744
  .State,
6735
6745
  .State--draft {
6736
6746
  color: var(--fgColor-onEmphasis);
6737
- background-color: var(--bgColor-neutral-emphasis);
6747
+ /* stylelint-disable-next-line primer/colors */
6748
+ background-color: var(--bgColor-draft-emphasis, var(--bgColor-neutral-emphasis));
6738
6749
  border: var(--borderWidth-thin) solid transparent;
6739
- box-shadow: var(--boxShadow-thin) var(--borderColor-neutral-emphasis);
6750
+ box-shadow: var(--boxShadow-thin) var(--borderColor-draft-emphasis, var(--borderColor-neutral-emphasis));
6740
6751
  }
6741
6752
 
6742
6753
  .State--open {