summaryrefslogtreecommitdiffstats
path: root/apps/files_external/templates
diff options
context:
space:
mode:
authorLukáš Tyrychtr <lukastyrychtr@gmail.com>2022-07-26 13:04:46 +0200
committerChristopher Ng <chrng8@gmail.com>2022-08-03 19:33:12 +0000
commitd760cde5356760f1c677b336dbb378a7716df0f1 (patch)
tree933781fb0c6a842611efe64b04eae740ee8419f3 /apps/files_external/templates
parent392b08d7611e05a75aa97934ef8ba23a7b8d1f92 (diff)
downloadnextcloud-server-d760cde5356760f1c677b336dbb378a7716df0f1.tar.gz
nextcloud-server-d760cde5356760f1c677b336dbb378a7716df0f1.zip
Fix accessibility of buttons in the external storage configuration
Note that there is no keyboard only way to close the dropdown Signed-off-by: Christopher Ng <chrng8@gmail.com>
Diffstat (limited to 'apps/files_external/templates')
-rw-r--r--apps/files_external/templates/settings.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_external/templates/settings.php b/apps/files_external/templates/settings.php
index 48067529723..d8dd91822c5 100644
--- a/apps/files_external/templates/settings.php
+++ b/apps/files_external/templates/settings.php
@@ -173,11 +173,11 @@ $canCreateMounts = $_['visibilityType'] === BackendService::VISIBILITY_ADMIN ||
</td>
<?php endif; ?>
<td class="mountOptionsToggle hidden">
- <div class="icon-more" title="<?php p($l->t('Advanced settings')); ?>"></div>
+ <button type="button" class="icon-more" aria-expanded="false" title="<?php p($l->t('Advanced settings')); ?>"></button>
<input type="hidden" class="mountOptions" value="" />
</td>
<td class="save hidden">
- <div class="icon-checkmark" title="<?php p($l->t('Save')); ?>"></div>
+ <button type="button" class="icon-checkmark" title="<?php p($l->t('Save')); ?>"></button>
</td>
</tr>
</tbody>