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

Commit

Permalink
Improve accessibility of tabbing through widgets in compact mode (#938)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
nogalpaulina authored Feb 4, 2022
1 parent febead6 commit 752b37e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ and this project adheres to
Versions in this document should match those
[published to Sonatype Maven Central Repository][].

## Next
## 14.0.3 - 2022-02-04

+ Adds tabindex to Add to home button as a fix for button being inaccessible in Firefox
+ Removes unnecessary tabindex from list items surrounding widgets
+ Removes white border style when hovering over 'Add more to home' on compact layout
## 14.0.2 - 2021-11-22

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
class="layout-list compact">
<li class="dndPlaceholder no-padding widget-container"></li>
<li class="no-padding widget-container"
tabindex="0"
aria-label="{{ widget.title }}"
node-id="{{ widget.nodeId }}"
selected-node-id="{{ selectedNodeId }}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
-->
<div class="list-content add-favorites">
<a href='apps'>
<a href='apps' tabindex="0">
<div class="icon-container">
<i class="fa fa-plus"></i>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
class="layout-list">
<example-widgets ng-if="$storage.exampleWidgets"></example-widgets>
<li class="no-padding widget-container"
tabindex="0"
aria-label="{{ widget.title }}"
node-id="{{ widget.nodeId }}"
selected-node-id="{{ selectedNodeId }}"
Expand Down

0 comments on commit 752b37e

Please sign in to comment.