Skip to content

Commit 9ab62ce

Browse files
Merge branch 'main' into header-breaking-changes
2 parents 08add40 + 4a5ce91 commit 9ab62ce

10 files changed

+129
-13852
lines changed

.github/workflows/pull-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
name: Sonar analysis
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v2
10+
- uses: actions/checkout@v4
1111
- uses: actions/setup-node@v4
1212
with:
1313
node-version: 20

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v4
1515
with:
1616
persist-credentials: false
1717

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# NHS.UK frontend Changelog
22

3+
## Unreleased
4+
5+
:wrench: **Fixes**
6+
7+
- Fix appearance of disabled warning buttons ([Issue 1034]([https://github.com/nhsuk/nhsuk-service-manual-community-backlog/issues/1034]))
8+
- Fix reverse button text colour ([PR 1080]([https://github.com/nhsuk/nhsuk-frontend/pull/1080]))
9+
310
## 9.1.0 - 4 November 2024
411

512
:new: **New features**

app/components/button/disabled.njk

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,34 @@
77

88
<div class="nhsuk-width-container">
99
<main class="nhsuk-main-wrapper" id="maincontent">
10-
1110
<div class="nhsuk-grid-row">
12-
<div class="nhsuk-grid-column-two-thirds">
11+
<div class="nhsuk-grid-column-full">
1312
{{ button({
1413
"text": "Disabled button",
1514
"disabled": true
1615
}) }}
1716
</div>
17+
<div class="nhsuk-grid-column-full">
18+
{{ button({
19+
"text": "Disabled secondary button",
20+
"classes": "nhsuk-button--secondary",
21+
"disabled": true
22+
}) }}
23+
</div>
24+
<div class="nhsuk-grid-column-full">
25+
{{ button({
26+
"text": "Disabled reversed button",
27+
"classes": "nhsuk-button--reverse",
28+
"disabled": true
29+
}) }}
30+
</div>
31+
<div class="nhsuk-grid-column-full">
32+
{{ button({
33+
"text": "Disabled warning button",
34+
"classes": "nhsuk-button--warning",
35+
"disabled": true
36+
}) }}
37+
</div>
1838
</div>
1939
</main>
2040
</div>

0 commit comments

Comments
 (0)