From: Cesar Velez Date: Fri, 20 Oct 2017 20:57:23 +0000 (-0400) Subject: LP#1679246 - add display-none css rule to eg-grid-field X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=6c17e1fa71115cea86399c6bf9e2f560c77a6bd7;p=working%2FEvergreen.git LP#1679246 - add display-none css rule to eg-grid-field This will fix the extraneous text created from any eg-grid-field that has non IDL paths or text data. Ex: a virtual/computed column, ie {{usr}}@{{org}} Signed-off by: Cesar Velez Signed-off-by: Galen Charlton --- diff --git a/Open-ILS/src/templates/staff/css/style.css.tt2 b/Open-ILS/src/templates/staff/css/style.css.tt2 index e5a661a8a3..74cf439656 100644 --- a/Open-ILS/src/templates/staff/css/style.css.tt2 +++ b/Open-ILS/src/templates/staff/css/style.css.tt2 @@ -473,6 +473,10 @@ table.list tr.selected td { /* deprecated? */ height: 25px; } +eg-grid-field { + display: none; +} + [%# vim: ft=css %]