Unverified Commit c44d9666 authored by Lauri Timmanee's avatar Lauri Timmanee
Browse files

Issue #3271666 by mherchel, cindytwilliams: Olivero pager's next/prev icons...

Issue #3271666 by mherchel, cindytwilliams: Olivero pager's next/prev icons don't properly adapt in forced colors
parent e0bba127
Loading
Loading
Loading
Loading
+18 −0
Original line number Diff line number Diff line
@@ -74,6 +74,24 @@
  background-color: #0d77b5;
}

.pager__item--control path {
    /* IE11 Specific. */
  }

@media (-ms-high-contrast: active) {

.pager__item--control path {
      fill: currentColor
  }
    }

@media (forced-colors: active) {

.pager__item--control path {
      fill: linktext
  }
    }

.pager__link {
  display: flex;
  align-items: center;
+13 −0
Original line number Diff line number Diff line
@@ -43,6 +43,19 @@
  background-color: var(--color--blue-20);
}

.pager__item--control {
  & path {
    /* IE11 Specific. */
    @media (-ms-high-contrast: active) {
      fill: currentColor;
    }

    @media (forced-colors: active) {
      fill: linktext;
    }
  }
}

.pager__link {
  display: flex;
  align-items: center;