-
Notifications
You must be signed in to change notification settings - Fork 94
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
fix: Prevent last nav menu from overflowing #1727
Draft
oliviergoulet5
wants to merge
2
commits into
jakartaee:src
Choose a base branch
from
oliviergoulet5:oliviergoulet/src/1726
base: src
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,17 @@ | ||
/*! | ||
* Copyright (c) 2019, 2023 Eclipse Foundation, Inc. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License v. 2.0 which is available at | ||
* http://www.eclipse.org/legal/epl-2.0. | ||
* | ||
* Contributors: | ||
* Eric Poirier <[email protected]> | ||
* Olivier Goulet <[email protected]> | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 | ||
*/ | ||
|
||
.toolbar-container-wrapper{ | ||
background-size: cover; | ||
} | ||
|
@@ -213,6 +227,18 @@ | |
} | ||
} | ||
|
||
// Prevent menu from overflowing on the right side of the screen. The reason we | ||
// are selecting the 2nd last child is because the last child is a mobile-only | ||
// menu item. | ||
#main-menu .navbar-nav li.dropdown:nth-last-child(2) { | ||
position: relative; | ||
|
||
& > .dropdown-menu { | ||
left: -100%; | ||
right: auto; | ||
} | ||
} | ||
|
||
.gsc-search-button-v2 { | ||
border: 1px solid @white !important; | ||
border-radius: 0px !important; | ||
|
@@ -230,4 +256,5 @@ | |
line-height: 14px !important; | ||
position: relative; | ||
top: 3px; | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It might seem a bit hacky. I wanted to add a custom parameter to the menu item in menu.toml. Something like
class
ordirection
. However, Hugo doesn't allow params on menu items, only menus.I also tried doing
:last-of-type
, but that selector only works with elements, not classes. That would've been perfect if it worked because I would select the last.dropdown
.Bootstrap introduced responsive menu direction classes in v4. When we migrate to v5, we could have a better solution using that.