Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

All: replace TinyNav.js with collapsibe button for <nav> #452

Merged
merged 1 commit into from
Jan 16, 2024
Merged

Conversation

Krinkle
Copy link
Member

@Krinkle Krinkle commented Jan 7, 2024

Instead of lazily generating a <select> element and replacing the menu with it, instead add a <button> to the server-rendered menu, that is only visible on narrow viewports, and let it control display of the main <nav> element as-is.

Changes:

  • Under 480px:

    • Let the menu be visible when open.
    • Give each menu item full width (the styles for these already existed in base.css but became unused many years ago when TinyNav was added).
    • Give each menu item a dark background shade, to give it a clear tappable area. This is the same shade we use for the menu on desktop.
  • Between 480-700px was now the only viewport where the menu doesn't feature any dark shade. To avoid this viewport appearing like the menu items hang "loose" in the top-level document, let it inherit the default dark background shade we give to the menu, thus removing the previous overrides that made the menu transparent <700px. Also, to ensure layout consistenty, move the top corner rounding for #content-wrapper from <700px to <480px as otherwise these round corners would bump against the square outline of the menu darkening.

  • Focus first item on menu open, as per https://www.w3.org/WAI/ARIA/apg/patterns/menu-button/.

480px Before 480px After 480px After Open
Screenshot 1 Screenshot 2 Screenshot 3
700px Before 700px After
Screen Shot 4 Screen Shot 5

Instead of lazily generating a `<select>` element and replacing the
menu with it, instead add a `<button>` to the server-rendered menu,
that is only visible on narrow viewports, and let it control
display of the main `<nav>` element as-is.

Changes:

* Under 480px:
  - Let the menu be visible when open.
  - Give each menu item full width (the styles for these already
    existed in base.css but became unused many years ago when TinyNav
    was added).
  - Give each menu item a dark background shade, to give it a clear
    tappable area. This is the same shade we use for the menu on
    desktop.

* Between 480-700px was now the only viewport where the menu doesn't
  feature any dark shade. To avoid this viewport appearing like the
  menu items hang "loose" in the top-level document, let it inherit
  the default dark background shade we give to the menu, thus removing
  the previous overrides that made the menu transparent <700px.
  Also, to ensure layout consistenty, move the top corner rounding
  for #content-wrapper from <700px to <480px as otherwise these round
  corners would bump against the square outline of the menu darkening.

* Focus first item on menu open,
  as per <https://www.w3.org/WAI/ARIA/apg/patterns/menu-button/>.
Copy link
Member

@mgol mgol left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The description & code changes LGTM

@mgol mgol merged commit 09c7a70 into main Jan 16, 2024
@mgol mgol deleted the new-mobile-nav branch January 16, 2024 15:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

2 participants