From ad37fe997973e302f048318b8e45b9c02f8c4b01 Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Fri, 27 Dec 2019 16:45:42 -0500 Subject: [PATCH] LP#1855931: (follow-up) make grid filter control cells wrap as well This patch applies "word-wrap: normal" to filter control cells as well, making it more likely that they will stay aligned with the width of their corresponding header cells. This can be tested by adding visible columns to the "Grid with filtering" table in the Angular sandbox (/eg2/en-US/staff/sandbox) and verifying that the column after "Circulating Library" continues to have its filter widget stay aligned with its label. Signed-off-by: Galen Charlton --- Open-ILS/src/eg2/src/app/share/grid/grid.component.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 4c9575fc52..6704ff082f 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 @@ -142,7 +142,8 @@ } .eg-grid-filter-control-cell { - overflow: visible !important; + overflow: visible !important; + white-space: normal; } .eg-grid-col-is-filtered { background: lightblue; -- 2.11.0