ドロップダウンナビゲーションバー項目にログインフォームを作成しました。レスポンシブ UI でも問題なく動作していますが、問題が 1 つあります。デスクトップ ブラウザーのサイズを電話のサイズに変更しても、メニューを開き、ユーザー名にフォーカスし、パスワードを入力して [送信] を押すことができます。ただし、電話ではログイン位置を展開できますが、入力またはボタンに触れるとサブメニューが非表示になります。どうすれば修正できますか?
作業コード: http://jsfiddle.net/D2RLR/4324/
<li class="dropdown">
<a class="dropdown-toggle" href="#" data-toggle="dropdown">Loguj<strong class="caret"></strong></a>
<div class="dropdown-menu" style="padding: 15px; padding-bottom: 0px;">
<form action="http://localhost/fabrykagier/auth/login" method="post" accept-charset="UTF-8">
<input id="user_username" style="margin-bottom: 15px;" type="text" name="identity" size="30" placeholder="e-mail">
<input id="user_password" style="margin-bottom: 15px;" type="password" name="password" placeholder="hasło" size="30">
<input id="user_remember_me" style="float: left; margin-right: 10px;" type="checkbox" name="remember" value="1">
<label class="string optional" for="user_remember_me"> Pamiętaj mnie</label>
<input class="btn btn-primary" style="clear: left; width: 100%; height: 32px; font-size: 13px;" type="submit" name="commit" value="Zaloguj">
</form>
</div>
</li>