Skip to content
This repository was archived by the owner on May 4, 2022. It is now read-only.

Commit 752b37e

Browse files
authored
Improve accessibility of tabbing through widgets in compact mode (#938)
* Removes white border style when hovering over 'Add more to home' on compact layout * Removes unnecessary taindex from list items surrounding widgets * Adds tabindex to Add to home button as a fix for button being inaccessible in Firefox
1 parent febead6 commit 752b37e

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@ and this project adheres to
99
Versions in this document should match those
1010
[published to Sonatype Maven Central Repository][].
1111

12-
## Next
12+
## 14.0.3 - 2022-02-04
13+
14+
+ Adds tabindex to Add to home button as a fix for button being inaccessible in Firefox
15+
+ Removes unnecessary tabindex from list items surrounding widgets
1316
+ Removes white border style when hovering over 'Add more to home' on compact layout
1417
## 14.0.2 - 2021-11-22
1518

web/src/main/webapp/my-app/layout/list/partials/home-list-view.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@
3434
class="layout-list compact">
3535
<li class="dndPlaceholder no-padding widget-container"></li>
3636
<li class="no-padding widget-container"
37-
tabindex="0"
3837
aria-label="{{ widget.title }}"
3938
node-id="{{ widget.nodeId }}"
4039
selected-node-id="{{ selectedNodeId }}"

web/src/main/webapp/my-app/layout/partials/marketplace-light.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
2020
-->
2121
<div class="list-content add-favorites">
22-
<a href='apps'>
22+
<a href='apps' tabindex="0">
2323
<div class="icon-container">
2424
<i class="fa fa-plus"></i>
2525
</div>

web/src/main/webapp/my-app/layout/widget/partials/home-widget-view.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232
class="layout-list">
3333
<example-widgets ng-if="$storage.exampleWidgets"></example-widgets>
3434
<li class="no-padding widget-container"
35-
tabindex="0"
3635
aria-label="{{ widget.title }}"
3736
node-id="{{ widget.nodeId }}"
3837
selected-node-id="{{ selectedNodeId }}"

0 commit comments

Comments
 (0)