diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-11-08 01:47:46 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-11-08 01:47:46 +0100 |
commit | 45a877c3a7ed01cf5e1ef9d98f044b78c96cab5c (patch) | |
tree | 14c14e30dc8d121c21f9339af82abdf64efbc7cb /core/templates/layout.user.php | |
parent | a41005529155ac34e0382f5d32ed948ce71f76d1 (diff) | |
download | nextcloud-server-45a877c3a7ed01cf5e1ef9d98f044b78c96cab5c.tar.gz nextcloud-server-45a877c3a7ed01cf5e1ef9d98f044b78c96cab5c.zip |
use proper tabindex order: 1. app menu, 2. search, 3. user menu
Diffstat (limited to 'core/templates/layout.user.php')
-rw-r--r-- | core/templates/layout.user.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index 8ccafcbf99c..d8129ecfc67 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -43,7 +43,7 @@ <a href="<?php print_unescaped(link_to('', 'index.php')); ?>" title="" id="owncloud"> <div class="logo-icon svg"></div> </a> - <a href="#" class="menutoggle"> + <a href="#" class="menutoggle" tabindex="1"> <h1 class="header-appname"> <?php if(OC_Util::getEditionString() === '') { @@ -57,7 +57,7 @@ </a> <div id="logo-claim" style="display:none;"><?php p($theme->getLogoClaim()); ?></div> <div id="settings" class="svg"> - <div id="expand" tabindex="0" role="link"> + <div id="expand" tabindex="3" role="link"> <?php if ($_['enableAvatars']): ?> <div class="avatardiv<?php if ($_['userAvatarSet']) { print_unescaped(' avatardiv-shown"'); } else { print_unescaped('" style="display: none"'); } ?>> <?php if ($_['userAvatarSet']): ?> @@ -92,7 +92,7 @@ <form class="searchbox" action="#" method="post"> <input id="searchbox" class="svg" type="search" name="query" value="<?php if(isset($_POST['query'])) {p($_POST['query']);};?>" - autocomplete="off" /> + autocomplete="off" tabindex="2" /> </form> </div></header> |