Skip to content

Commit

Permalink
Set btn-secondary on dropdown selectors
Browse files Browse the repository at this point in the history
This ensures you receive visual feedback when you use the keyboard TAB to move between form fields. At present there is no visual indication when you get to a dropdown.
  • Loading branch information
manics committed Jan 25, 2025
1 parent 040c9bb commit 78301d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions binderhub/static/js/components/LinkGenerator.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function ProviderSelector({
return (
<>
<button
className="btn border border-2 border-end-0 dropdown-toggle"
className="btn btn-secondary border border-2 border-end-0 dropdown-toggle"
type="button"
data-bs-toggle="dropdown"
aria-expanded="false"
Expand Down Expand Up @@ -92,7 +92,7 @@ function UrlSelector({ setUrlPath }) {
onChange={(e) => setPath(e.target.value)}
/>
<button
className="btn border border-2 border-start-0 dropdown-toggle"
className="btn btn-secondary border border-2 border-start-0 dropdown-toggle"
type="button"
data-bs-toggle="dropdown"
aria-expanded="false"
Expand Down

0 comments on commit 78301d2

Please sign in to comment.