Skip to content
This repository has been archived by the owner on Aug 15, 2024. It is now read-only.

VOTE-855 HOTFIX - fix State Selector behavior on iOS #972

Merged
merged 5 commits into from
Feb 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions layouts/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@
<h1 class="main-heading" data-test="main-header">{{ $translation.homepage.header | safeHTML }}</h1>
</header>

<form id="state-combo-box">
<form id="state-combo-box" tabindex="-1" style="outline: 0 none;">
<label for="state-input">{{ $translation.homepage.state_selection__heading }}</label>
<div class="input-buttons-group" aria-label="{{ $translation.homepage.state_selection__aria_label }}" data-test="state-selection">
<input type="text" class="state-input" id="state-input" autocomplete="off" placeholder="{{ $translation.homepage.state_selection__placeholder }}">
<input type="text" class="state-input" id="state-input" placeholder="{{ $translation.homepage.state_selection__placeholder }}">
<div class="input-control-container">
<button id="state-dropdown-btn" tabindex="-1" class="dropdown-btn" type="button" aria-hidden="true" data-test="dropdown-btn"></button>
</div>
Expand Down
Loading