Skip to content
Snippets Groups Projects
Commit 45a877c3 authored by Jan-Christoph Borchardt's avatar Jan-Christoph Borchardt
Browse files

use proper tabindex order: 1. app menu, 2. search, 3. user menu

parent a4100552
No related branches found
No related tags found
No related merge requests found
...@@ -43,7 +43,7 @@ ...@@ -43,7 +43,7 @@
<a href="<?php print_unescaped(link_to('', 'index.php')); ?>" title="" id="owncloud"> <a href="<?php print_unescaped(link_to('', 'index.php')); ?>" title="" id="owncloud">
<div class="logo-icon svg"></div> <div class="logo-icon svg"></div>
</a> </a>
<a href="#" class="menutoggle"> <a href="#" class="menutoggle" tabindex="1">
<h1 class="header-appname"> <h1 class="header-appname">
<?php <?php
if(OC_Util::getEditionString() === '') { if(OC_Util::getEditionString() === '') {
...@@ -57,7 +57,7 @@ ...@@ -57,7 +57,7 @@
</a> </a>
<div id="logo-claim" style="display:none;"><?php p($theme->getLogoClaim()); ?></div> <div id="logo-claim" style="display:none;"><?php p($theme->getLogoClaim()); ?></div>
<div id="settings" class="svg"> <div id="settings" class="svg">
<div id="expand" tabindex="0" role="link"> <div id="expand" tabindex="3" role="link">
<?php if ($_['enableAvatars']): ?> <?php if ($_['enableAvatars']): ?>
<div class="avatardiv<?php if ($_['userAvatarSet']) { print_unescaped(' avatardiv-shown"'); } else { print_unescaped('" style="display: none"'); } ?>> <div class="avatardiv<?php if ($_['userAvatarSet']) { print_unescaped(' avatardiv-shown"'); } else { print_unescaped('" style="display: none"'); } ?>>
<?php if ($_['userAvatarSet']): ?> <?php if ($_['userAvatarSet']): ?>
...@@ -92,7 +92,7 @@ ...@@ -92,7 +92,7 @@
<form class="searchbox" action="#" method="post"> <form class="searchbox" action="#" method="post">
<input id="searchbox" class="svg" type="search" name="query" <input id="searchbox" class="svg" type="search" name="query"
value="<?php if(isset($_POST['query'])) {p($_POST['query']);};?>" value="<?php if(isset($_POST['query'])) {p($_POST['query']);};?>"
autocomplete="off" /> autocomplete="off" tabindex="2" />
</form> </form>
</div></header> </div></header>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment