From 5b77c6a5d81e87c6ecf5c5aa63fbd8afb580d459 Mon Sep 17 00:00:00 2001 From: Kris Date: Wed, 6 Jan 2021 13:32:20 -0500 Subject: [PATCH] UX: Allow quick access profile content to scroll (#11639) --- app/assets/stylesheets/common/base/menu-panel.scss | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app/assets/stylesheets/common/base/menu-panel.scss b/app/assets/stylesheets/common/base/menu-panel.scss index 8126f872fcc..afa9476e631 100644 --- a/app/assets/stylesheets/common/base/menu-panel.scss +++ b/app/assets/stylesheets/common/base/menu-panel.scss @@ -343,6 +343,14 @@ @include unselectable; &.quick-access-profile { + display: inline; + overflow-y: auto; // There's no "show all" for this content, so it always needs to be scrollable + ul { + display: inline; + a { + box-sizing: border-box; // without this you end up with horizontal scroll + } + } li:not(.show-all) a { color: var(--primary); display: flex;