Skip to content

Commit

Permalink
Merge pull request #2290 from alphagov/ldeb-improve-ie11-hcm
Browse files Browse the repository at this point in the history
Improve support for IE11 with Windows High Contrast Mode
  • Loading branch information
lfdebrux authored Aug 20, 2021
2 parents 44c9213 + 53ca3eb commit 4b42bc2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ We’ve made fixes to GOV.UK Frontend in the following pull requests:
- [#2265: Don’t remove focus outline from disabled link buttons in forced color mode](https://github.com/alphagov/govuk-frontend/pull/2265)
- [#2273: Fix invisible footer OGL logo in forced color mode](https://github.com/alphagov/govuk-frontend/pull/2273) – thanks to [@oscarduignan](https://github.com/oscarduignan) for reporting this issue.
- [#2277: Fix invisible start button chevron in forced color mode](https://github.com/alphagov/govuk-frontend/pull/2277)
- [#2290: Improve support for IE11 with Windows High Contrast Mode](https://github.com/alphagov/govuk-frontend/pull/2290)

## 3.13.0 (Feature release)

Expand Down
2 changes: 1 addition & 1 deletion src/govuk/components/checkboxes/_index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@

// When in an explicit forced-color mode, we can use the Highlight system
// color for the outline to better match focus states of native controls
@media screen and (forced-colors: active) {
@media screen and (forced-colors: active), (-ms-high-contrast: active) {
outline-color: Highlight;
}

Expand Down
2 changes: 1 addition & 1 deletion src/govuk/components/radios/_index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@

// When in an explicit forced-color mode, we can use the Highlight system
// color for the outline to better match focus states of native controls
@media screen and (forced-colors: active) {
@media screen and (forced-colors: active), (-ms-high-contrast: active) {
outline-color: Highlight;
}

Expand Down

0 comments on commit 4b42bc2

Please sign in to comment.