diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2017-09-29 19:25:32 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2017-09-29 19:25:32 +0200 |
commit | 9fb37a2990b250d4416bb8cb7d00c477869a0fa5 (patch) | |
tree | 87180083ba2fce3b9c199cf5ddfd37cf6a9551dd /apps/files | |
parent | 753c6fd07bebcd7ca709aafb6b9358603318e441 (diff) | |
download | nextcloud-server-9fb37a2990b250d4416bb8cb7d00c477869a0fa5.tar.gz nextcloud-server-9fb37a2990b250d4416bb8cb7d00c477869a0fa5.zip |
Add proper labels to various form elements and buttons
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/js/detailsview.js | 2 | ||||
-rw-r--r-- | apps/files/templates/list.php | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/apps/files/js/detailsview.js b/apps/files/js/detailsview.js index e53922ebb69..a896e84fdc0 100644 --- a/apps/files/js/detailsview.js +++ b/apps/files/js/detailsview.js @@ -23,7 +23,7 @@ ' {{/if}}' + ' <div class="tabsContainer">' + ' </div>' + - ' <a class="close icon-close" href="#" alt="{{closeLabel}}"></a>'; + ' <a class="close icon-close" href="#"><span class="hidden-visually">{{closeLabel}}</span></a>'; /** * @class OCA.Files.DetailsView diff --git a/apps/files/templates/list.php b/apps/files/templates/list.php index f3b6759644c..46bd9351e39 100644 --- a/apps/files/templates/list.php +++ b/apps/files/templates/list.php @@ -4,7 +4,9 @@ <div id="uploadprogressbar"> <em class="label outer" style="display:none"><span class="desktop"><?php p($l->t('Uploading @'));?></span><span class="mobile"><?php p($l->t('…'));?></span></em> </div> - <input type="button" class="stop icon-close" style="display:none" value="" /> + <button class="stop icon-close" style="display:none"> + <span class="hidden-visually"><?php p($l->t('Cancel upload')) ?></span> + </button> </div> </div> <div id="file_action_panel"></div> |