We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51461de commit aa4f024Copy full SHA for aa4f024
packages/govuk-frontend/src/govuk/components/summary-list/_index.scss
@@ -131,6 +131,15 @@
131
}
132
133
134
+ // Large groups of action links may wrap onto multiple lines. Because the link
135
+ // focus styles are applied outside of the link's bounding box, there are
136
+ // situations where the focus style on a link can be overlapped by subsequent
137
+ // links. We don't want this, so let's create a new stacking context on focus
138
+ // so the link always appears to be 'on top'.
139
+ .govuk-summary-list__actions-list-item .govuk-link:focus {
140
+ isolation: isolate;
141
+ }
142
+
143
// No border on entire summary list
144
.govuk-summary-list--no-border {
145
.govuk-summary-list__row {
0 commit comments