diff options
author | Thomas Müller <DeepDiver1975@users.noreply.github.com> | 2016-04-20 11:54:23 +0200 |
---|---|---|
committer | Thomas Müller <DeepDiver1975@users.noreply.github.com> | 2016-04-20 11:54:23 +0200 |
commit | 98f854ba1c7c035b3d77b121155a69f7e7d2bfbf (patch) | |
tree | 4b392686b1ddeef8613fed4ba7b6550066a8dc6f /settings | |
parent | 64956ec2cf96bd70d788e9d4e3f78364edf21045 (diff) | |
parent | c2f2edc092798ab74645ed1bac9d5d95a7ff5639 (diff) | |
download | nextcloud-server-98f854ba1c7c035b3d77b121155a69f7e7d2bfbf.tar.gz nextcloud-server-98f854ba1c7c035b3d77b121155a69f7e7d2bfbf.zip |
Merge pull request #24104 from tyrylu/accessibility_settings_fix
App settings screen accessibility fixes
Diffstat (limited to 'settings')
-rw-r--r-- | settings/templates/apps.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/settings/templates/apps.php b/settings/templates/apps.php index ce6dcef842c..ecb00fb27c3 100644 --- a/settings/templates/apps.php +++ b/settings/templates/apps.php @@ -25,7 +25,7 @@ script( <script id="categories-template" type="text/x-handlebars-template"> {{#each this}} <li id="app-category-{{ident}}" data-category-id="{{ident}}" tabindex="0"> - <a>{{displayName}}</a> + <a href="#">{{displayName}}</a> </li> {{/each}} @@ -94,8 +94,8 @@ script( </p> {{/if}} </div><!-- end app-description-container --> - <div class="app-description-toggle-show"><?php p($l->t("Show description …"));?></div> - <div class="app-description-toggle-hide hidden"><?php p($l->t("Hide description …"));?></div> + <div class="app-description-toggle-show" role="link"><?php p($l->t("Show description …"));?></div> + <div class="app-description-toggle-hide hidden" role="link"><?php p($l->t("Hide description …"));?></div> <div class="app-dependencies update hidden"> <p><?php p($l->t('This app has an update available.')); ?></p> |