Skip to content

Commit c4fea02

Browse files
authored
Merge pull request #3468 from tomaioo/fix/ui/missing-focus-indicators-on-custom-inter
refactor: 2 improvements across 2 files
2 parents 8bda68b + 63de96f commit c4fea02

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

themes/arm-design-system-hugo-theme/layouts/_default/baseof.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,12 @@
1515
{{ end }}
1616
</head>
1717
<body>
18+
<a href="#main" class="skip-link">Skip to main content</a>
19+
1820
{{partial "header/nav-masthead.html" .}}
1921

2022
{{/* Where all content sits. Each layout file defines "main" which then sits here. */}}
21-
<div id="all-content-div" class="c-container is-responsive-width" style="min-height: 250px;">
23+
<div id="main" class="c-container is-responsive-width" style="min-height: 250px;">
2224
<div id="all-content-div-margined" class="u-margin-left-0 u-margin-right-0">
2325
{{block "main" . }}{{end}}
2426
</div>

themes/arm-design-system-hugo-theme/layouts/partials/filter-search-sort/closed-expansion.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
<!-- Radio buttons -->
3838
{{if eq $input_type "radio"}}
3939
<div class="form-group ads-radio-style">
40-
<input type="radio" class="tag-{{$name | urlize}} group-{{$group_name}}" data-urlized-name="{{$name | urlize}}" name="{{$group_name}}" onchange="filterHandler_radio_LearningPaths(this)"></input>
40+
<input type="radio" id="{{$name | urlize}}" class="tag-{{$name | urlize}} group-{{$group_name}}" data-urlized-name="{{$name | urlize}}" name="{{$group_name}}" onchange="filterHandler_radio_LearningPaths(this)"></input>
4141
<label for="{{$name | urlize}}">{{$name}}</label>
4242
</div>
4343
<!-- Checkboxes -->

0 commit comments

Comments
 (0)