LP#1855931: (follow-up) make grid filter control cells wrap as well user/gmcharlt/lp1855931_signoff
authorGalen Charlton <gmc@equinoxinitiative.org>
Fri, 27 Dec 2019 21:45:42 +0000 (16:45 -0500)
committerGalen Charlton <gmc@equinoxinitiative.org>
Fri, 27 Dec 2019 21:45:42 +0000 (16:45 -0500)
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 <gmc@equinoxinitiative.org>
Open-ILS/src/eg2/src/app/share/grid/grid.component.css

index 4c9575f..6704ff0 100644 (file)
 }
 
 .eg-grid-filter-control-cell {
-    overflow: visible !important;
+  overflow: visible !important;
+  white-space: normal;
 }
 .eg-grid-col-is-filtered {
     background: lightblue;