Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update border colours on email/print buttons for greater contrast #3855

Merged
merged 1 commit into from
Feb 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
## Unreleased

* Move the skip link after the cookie banner ([PR #3863](https://github.com/alphagov/govuk_publishing_components/pull/3863))
* Update border colours on email/print buttons for greater contrast ([PR #3855](https://github.com/alphagov/govuk_publishing_components/pull/3855))

## 37.3.0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ $gem-c-print-link-background-height: 18px;
}

.gem-c-print-link__link {
box-shadow: inset 0 0 0 1px $govuk-border-colour;
box-shadow: inset 0 0 0 1px govuk-colour("dark-grey");

&:focus {
border: 0;
Expand All @@ -43,7 +43,7 @@ $gem-c-print-link-background-height: 18px;
}

.gem-c-print-link__button {
border: 1px solid $govuk-border-colour;
border: 1px solid govuk-colour("dark-grey");
color: $govuk-link-colour;
cursor: pointer;
margin: govuk-spacing(0);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
.gem-c-single-page-notification-button__submit {
padding: govuk-spacing(2);
margin: govuk-spacing(0);
border: 1px solid $govuk-border-colour;
border: 1px solid govuk-colour("dark-grey");
color: $govuk-link-colour;
cursor: pointer;
background: none;
Expand Down
Loading