Skip to content

Commit

Permalink
Merge pull request #4268 from paulrobertlloyd/patch-1
Browse files Browse the repository at this point in the history
Allow border and hover colours to be overridden
  • Loading branch information
owenatgov committed Oct 4, 2023
2 parents f837f9c + d770a65 commit c3f4b2d
Show file tree
Hide file tree
Showing 2 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 @@ -401,6 +401,7 @@ We’ve made fixes to GOV.UK Frontend in the following pull requests:
- [#3862: Fix focus style being overlapped by summary action links](https://github.com/alphagov/govuk-frontend/pull/3862)
- [#4113: Always set an explicit button `type`](https://github.com/alphagov/govuk-frontend/pull/4113)
- [#4267: Remove unnecessary duplicated use of govuk-font](https://github.com/alphagov/govuk-frontend/pull/4267)
- [#4268: Allow border and hover colours to be overridden](https://github.com/alphagov/govuk-frontend/pull/4268)

## 4.7.0 (Feature release)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ $govuk-success-colour: govuk-colour("green") !default;
/// @type Colour
/// @access public

$govuk-border-colour: govuk-colour("mid-grey");
$govuk-border-colour: govuk-colour("mid-grey") !default;

/// Input border colour
///
Expand All @@ -120,7 +120,7 @@ $govuk-input-border-colour: govuk-colour("black") !default;
/// @type Colour
/// @access public

$govuk-hover-colour: govuk-colour("mid-grey");
$govuk-hover-colour: govuk-colour("mid-grey") !default;

// =============================================================================
// Links
Expand Down

0 comments on commit c3f4b2d

Please sign in to comment.