From: Bill Erickson Date: Mon, 10 Aug 2020 15:09:35 +0000 (-0400) Subject: LP1890849 Grid context menu override fixed width X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=44441651e7c4a9c75f04f11bee549f3380feeba5;p=evergreen%2Ftadl.git 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 --- 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; +}