`more-dropdown` compatibility with "Repository refresh" design
See original GitHub issuemore-dropdown
is kind of a problem now since the new design has an automatic “overflow” hamburger menu:
The obvious solution is to add all those elements to the navigation and let them naturally flow into the overflow, but that’s noisy.
Until now we added items to the dropdown without much trouble, since it was “out of the way”, but this change forces us to reconsider it.
_Originally posted by @fregante in https://github.com/sindresorhus/refined-github/issues/3081#issuecomment-641942885_
Issue Analytics
- State:
- Created 3 years ago
- Reactions:2
- Comments:9 (7 by maintainers)
Top Results From Across the Web
`more-dropdown` compatibility with "Repository refresh" design
The obvious solution is to add all those elements to the navigation and let them naturally flow into the overflow, but that's noisy....
Read more >Regenerate Variants - Secure Login
Select one or more Digital Asset files, open the More dropdown, and click the Regenerate option. Select Regenerate from the More Dropdown ......
Read more >The Model Repository | Sparx Systems
used in a wide range of modeling and design situations, from a single user accessing a ... 'Configure Datatypes' permission to update and...
Read more >2 Using Incident Management - Oracle Help Center
To update the diagnostic limits, execute the following SQL against the Enterprise Manager repository as the SYSMAN user using the appropriate limit values...
Read more >Cisco WebEx Training Center User Guide
Check your system for UCF compatibility (if you have presentations with animations, save them as .ucf so training session attendees can view these...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
GitHub’s selectors are “live”, so new elements are automatically picked up.
I looked into it just now and it looks somewhat possible:
data-tab-item
attribute[data-tab-item="insights-tab"]
is hidden from the nav, the other element in the dropdown with the same attribute is shownjs-responsive-underlinenav-item
class)Given this, I think that this could be a solution:
My biggest concern was with the non-centering aspect. I just created a little CSS snippet and it seems to keep everything intact during each media query resize
The max-width comes from
container-xl
class The padding sizes come frompx-lg-3
,px-md-2
, andpx-1
classes Everything may not need!important
, I was just being overly sure the styles took.Sorry if this isn’t exactly what you were wanting to accomplish with this Issue, but wanted to share in case it helped solve anyone else’s concerns.
Mods, feel free to delete if it doesn’t properly help the discussion.