diff options
author | dweller <dweller@cabin.digital> | 2024-03-06 01:36:57 +0200 |
---|---|---|
committer | dweller <dweller@cabin.digital> | 2024-03-06 01:36:57 +0200 |
commit | c1e0117c8b48a4550a44ca9685b34f1fd10e6b32 (patch) | |
tree | a791270e9f15836149afa2a067d4cf5da30f27a9 /index.php | |
parent | 9332c4fe89925472138a1c446a1791613ed35448 (diff) |
fix slider opts checkbox outline, fix tab issue with opts by just disabling tab :/, fix minor flexbox shrinkage
Diffstat (limited to '')
-rw-r--r-- | index.php | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -59,7 +59,7 @@ <input type="checkbox" id="query_opts_toggle"/> <div id="query_opts"> <span class="query_opt" title="section">-s</span> - <select id="sect" name='section' title="section" autocomplete="off"> + <select id="sect" name='section' title="section" autocomplete="off" tabindex="-1"> <option value=""></option> <?php for($i = 1; $i <= 9; $i++) @@ -72,7 +72,7 @@ ?> </select> <span class="query_opt" title="architecture">-S</span> - <select id="arch" name='arch' title="architecture" autocomplete="off"> + <select id="arch" name='arch' title="architecture" autocomplete="off" tabindex="-1"> <option value=""></option> <?php foreach($archs as $a) |