diff options
author | Lukáš Tyrychtr <lukastyrychtr@gmail.com> | 2022-07-26 13:04:46 +0200 |
---|---|---|
committer | Christopher Ng <chrng8@gmail.com> | 2022-08-03 19:33:12 +0000 |
commit | d760cde5356760f1c677b336dbb378a7716df0f1 (patch) | |
tree | 933781fb0c6a842611efe64b04eae740ee8419f3 /apps/files_external/templates | |
parent | 392b08d7611e05a75aa97934ef8ba23a7b8d1f92 (diff) | |
download | nextcloud-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.php | 4 |
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> |