From: Bill Erickson Date: Thu, 27 Mar 2014 21:13:54 +0000 (-0400) Subject: web staff: autogrid fixed height; text overflow X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=f6d4538fa64e26e9ec1987d42bf2f94e1be413f1;p=working%2FEvergreen.git web staff: autogrid fixed height; text overflow Signed-off-by: Bill Erickson --- diff --git a/Open-ILS/src/templates/staff/css/style.css.tt2 b/Open-ILS/src/templates/staff/css/style.css.tt2 index ed3eff84a2..977c15ff5b 100644 --- a/Open-ILS/src/templates/staff/css/style.css.tt2 +++ b/Open-ILS/src/templates/staff/css/style.css.tt2 @@ -102,6 +102,10 @@ table.list tr.selected td { border: 1px solid #ccc; } +.eg-grid-row:not(.eg-grid-header-row):not(.eg-grid-conf-row) { + height: 1.8em; +} + .eg-grid-action-row { border: none; justify-content:flex-end; /* i.e. float right */ @@ -124,6 +128,8 @@ table.list tr.selected td { .eg-grid-cell { /* avoid text flowing into adjacent cells */ + white-space: nowrap; + text-overflow: ellipsis; overflow: hidden; }