diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2012-02-21 11:10:10 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2012-02-21 11:10:10 +0100 |
commit | cd5c01ac2da2ec316e997e8850e1b2d326191e56 (patch) | |
tree | 45ea4a4c7cfc5c27574b4df9521b873653aeeef0 /phpBB/styles/prosilver | |
parent | 4b2690f792d330622fd5409ded5f163db1b97bd9 (diff) | |
download | forums-cd5c01ac2da2ec316e997e8850e1b2d326191e56.tar forums-cd5c01ac2da2ec316e997e8850e1b2d326191e56.tar.gz forums-cd5c01ac2da2ec316e997e8850e1b2d326191e56.tar.bz2 forums-cd5c01ac2da2ec316e997e8850e1b2d326191e56.tar.xz forums-cd5c01ac2da2ec316e997e8850e1b2d326191e56.zip |
[ticket/9089] Add tabindex to PM recipient box, to allow tabbing to the subject
I also added tabindex 1 to the buttons for adding the recipients.
Also note, that duplicated tabindex are fine:
http://www.w3.org/TR/html4/interact/forms.html#adef-tabindex
PHPBB3-9089
Diffstat (limited to 'phpBB/styles/prosilver')
-rw-r--r-- | phpBB/styles/prosilver/template/posting_editor.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/styles/prosilver/template/posting_editor.html b/phpBB/styles/prosilver/template/posting_editor.html index 5f7fb8408e..e7c1dc21eb 100644 --- a/phpBB/styles/prosilver/template/posting_editor.html +++ b/phpBB/styles/prosilver/template/posting_editor.html @@ -37,10 +37,10 @@ <!-- ENDIF --> <!-- IF not S_EDIT_POST --> <dl class="pmlist"> - <dt><textarea id="username_list" name="username_list" class="inputbox" cols="50" rows="2"></textarea></dt> + <dt><textarea id="username_list" name="username_list" class="inputbox" cols="50" rows="2" tabindex="1"></textarea></dt> <dd><span><a href="{U_FIND_USERNAME}" onclick="find_username(this.href); return false;">{L_FIND_USERNAME}</a></span></dd> - <dd><input type="submit" name="add_to" value="{L_ADD}" class="button2" /></dd> - <dd><input type="submit" name="add_bcc" value="{L_ADD_BCC}" class="button2" /></dd> + <dd><input type="submit" name="add_to" value="{L_ADD}" class="button2" tabindex="1" /></dd> + <dd><input type="submit" name="add_bcc" value="{L_ADD_BCC}" class="button2" tabindex="1" /></dd> </dl> <!-- ENDIF --> <!-- ELSE --> |