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

Don't show repeated links in sidebar menu #909

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
13 changes: 13 additions & 0 deletions _static/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,19 @@ The styles below use media queries to dictate which of the 8 navbars will show g
display: none;
}

/* When we've collapsed to the hamburger menu, only show the navbar that contains all 8 links */
@media (width < 960px) {
#nav-1,
#nav-2,
#nav-3,
#nav-4,
#nav-5,
#nav-6,
#nav-7 {
display: none;
}
}

/* Depending on the width of the page, we decide which nav to show */

@media (960px <= width < 1035px) {
Expand Down