From 44441651e7c4a9c75f04f11bee549f3380feeba5 Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Mon, 10 Aug 2020 11:09:35 -0400 Subject: [PATCH] LP1890849 Grid context menu override fixed width Allow grid context menus to expand horizontally for longer terms to avoid scroll bars and/or having text get cut off. Signed-off-by: Bill Erickson Signed-off-by: Jane Sandberg --- Open-ILS/src/eg2/src/app/share/grid/grid.component.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Open-ILS/src/eg2/src/app/share/grid/grid.component.css b/Open-ILS/src/eg2/src/app/share/grid/grid.component.css index 6704ff082f..15b4adb3bc 100644 --- a/Open-ILS/src/eg2/src/app/share/grid/grid.component.css +++ b/Open-ILS/src/eg2/src/app/share/grid/grid.component.css @@ -171,3 +171,8 @@ .eg-grid-filter-menu .dropdown-item:hover { background-color: transparent; } + +/* Popovers have a too-narrow max-width. Override it */ +.popover { + max-width: initial; +} -- 2.43.2