mirror of
https://github.com/nubenetes/awesome-kubernetes.git
synced 2026-07-12 09:51:00 +00:00
The Kubernetes dropdown was the only menu tall enough (22 items) to need a scrollbar (overflow-y on an anchor-positioned popover), which made it open/behave unreliably compared to the others. Two fixes: - The Kubernetes menu now uses a 2-column layout (column-count:2), halving its height (~731px → ~353px) so it shows in full WITHOUT a scrollbar at any realistic viewport. Multicol is column-major, so reading order is preserved. - Removed flip-block from the menu position-try fallbacks (kept flip-inline): the quick-nav is a sticky top bar, so a tall menu flipped above would shoot off the top of the screen. Menus now always open downward. Verified in Chrome 148 (Playwright): Kubernetes menu opens with no scrollbar and stays fully on-screen at viewport heights 700–1080; all 11 menus + the nested AWS submenu still open correctly; bar stays one row to 1280px. Cache-bust ?v=2.9.37. V2-only. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>