Skip to content

Commit 09c7a70

Browse files
authored
All: replace TinyNav.js with collapsibe button for <nav> (#452)
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/>. Closes gh-452
1 parent 8a94d12 commit 09c7a70

File tree

6 files changed

+31
-47
lines changed

6 files changed

+31
-47
lines changed

NOTICE.txt

-4
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,6 @@ with this program; if not, write to the Free Software Foundation, Inc.,
4242
located at themes/jquery/lib/normalize
4343
and included in themes/jquery/css/base.css
4444

45-
- TinyNav.js
46-
http://tinynav.com/
47-
located at themes/jquery/js/plugins.js
48-
4945
- typesense-minibar
5046
https://github.com/jquery/typesense-minibar
5147
located at themes/jquery/lib/typesense-minibar

themes/jquery/css/base.css

+16-31
Original file line numberDiff line numberDiff line change
@@ -1351,9 +1351,6 @@ iframe {
13511351
border-left: 1px solid rgba(0, 0, 0, 0.347656);
13521352
}
13531353

1354-
.tinynav-container { display: none; }
1355-
.tinynav { display: none; }
1356-
13571354
#global-nav nav ul.links {
13581355
float: right;
13591356
}
@@ -2801,11 +2798,6 @@ footer .books li a cite {
28012798
font-size: 12px;
28022799
}
28032800

2804-
#logo-events {
2805-
padding-top: 20px;
2806-
padding-bottom: 10px;
2807-
}
2808-
28092801
#logo-events aside {
28102802
display: inline-block;
28112803
position: relative;
@@ -2821,16 +2813,6 @@ footer .books li a cite {
28212813
margin-right: auto;
28222814
}
28232815

2824-
nav#main {
2825-
background-color: rgba(0, 0, 0, 0.0);
2826-
border-radius: 10px 10px 0 0;
2827-
border-right: none;
2828-
border-left: none;
2829-
border-top: none;
2830-
box-shadow: none;
2831-
padding-top: 10px;
2832-
}
2833-
28342816
nav#main .searchform {
28352817
display: block;
28362818
float: none;
@@ -2871,11 +2853,6 @@ footer .books li a cite {
28712853
font-size: 14px;
28722854
}
28732855

2874-
#content-wrapper {
2875-
border-top-left-radius: 10px;
2876-
border-top-right-radius: 10px;
2877-
}
2878-
28792856
.content-full.full-width #content,
28802857
.content-right #content,
28812858
.content-left #content {
@@ -2942,25 +2919,31 @@ footer .books li a cite {
29422919
border-top: none !important;
29432920
}
29442921

2945-
.tinynav-container {
2946-
display: block;
2922+
.menu-top-container {
2923+
display: flex;
2924+
flex-flow: column;
2925+
}
2926+
2927+
.menu-top-container .menu-trigger {
2928+
display: inline-block !important;
2929+
align-self: flex-end;
29472930
}
29482931

29492932
#menu-top {
29502933
display: none;
29512934
}
29522935

2953-
.tinynav {
2936+
#menu-top.menu-open {
29542937
display: block;
2955-
width: 100%;
2956-
margin: 0 auto 15px;
2957-
position: relative;
2958-
top: 6px;
2959-
left: 0;
2938+
background-color: rgba(0, 0, 0, 0.18);
2939+
margin-top: 6px;
29602940
}
29612941

29622942
nav#main {
29632943
padding: 0;
2944+
background: none;
2945+
border: none;
2946+
box-shadow: none;
29642947
}
29652948

29662949
nav#main .searchform {
@@ -2991,6 +2974,8 @@ footer .books li a cite {
29912974
}
29922975

29932976
#content-wrapper {
2977+
border-top-left-radius: 10px;
2978+
border-top-right-radius: 10px;
29942979
padding-left: 25px;
29952980
padding-right: 25px;
29962981
}

themes/jquery/header.php

-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
<link rel="stylesheet" href="<?php bloginfo( 'stylesheet_url' ); ?>?v=6">
2424

2525
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
26-
<script src="<?php echo get_template_directory_uri(); ?>/js/plugins.js"></script>
2726
<script src="<?php echo get_template_directory_uri(); ?>/js/main.js"></script>
2827
<?php
2928
if ( get_option( 'thread_comments' ) && comments_open() ) {

themes/jquery/js/main.js

+13-7
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,19 @@ $(function() {
99
}
1010
});
1111

12-
/*
13-
* Change navigation elements for smaller screens
14-
*/
15-
(function() {
16-
// Collapse the site navigation to a select menu
17-
$( "#menu-top" ).tinyNav({ header: "Navigate..." });
18-
})();
12+
// collapsible navigation for smaller screens
13+
$('.menu-trigger').on('click', function (e) {
14+
var $btn = $(this),
15+
$nav = $(this).next('.menu');
16+
if ($nav.hasClass('menu-open')) {
17+
$btn.attr('aria-expanded', 'false');
18+
$nav.removeClass('menu-open');
19+
} else {
20+
$btn.attr('aria-expanded', 'true');
21+
$nav.addClass('menu-open');
22+
$nav.find('a').first().focus();
23+
}
24+
});
1925
});
2026

2127

themes/jquery/js/plugins.js

-3
This file was deleted.

themes/jquery/menu-header.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,8 @@ function jquery_render_menu( $items ) {
118118
$current = trailingslashit( 'https://' . JQUERY_LIVE_SITE . $_SERVER['REQUEST_URI'] );
119119
?>
120120
<div class="menu-top-container">
121-
<ul id="menu-top" class="menu">
121+
<button hidden id="menu-trigger" class="button menu-trigger" aria-expanded="false" aria-haspopup="menu">Navigation</button>
122+
<ul id="menu-top" class="menu" role="menu" aria-labelledby="menu-trigger">
122123
<?php
123124
foreach ( $items as $url => $anchor ) {
124125
$class = 'menu-item';

0 commit comments

Comments
 (0)