[open-ils-commits] [GIT] Evergreen ILS branch master updated. 9077cbc427d544b25c932b51591126e4a2b2bead

Evergreen Git git at git.evergreen-ils.org
Mon Dec 30 17:13:34 EST 2019


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Evergreen ILS".

The branch, master has been updated
       via  9077cbc427d544b25c932b51591126e4a2b2bead (commit)
       via  fe8a46504b684f8b862ff81a825df6eed4624c59 (commit)
      from  0f46da264cd6615e17846d062c0bfcca80ebe68a (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 9077cbc427d544b25c932b51591126e4a2b2bead
Author: Galen Charlton <gmc at equinoxinitiative.org>
Date:   Fri Dec 27 16:45:42 2019 -0500

    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 <gmc at equinoxinitiative.org>
    Signed-off-by: Jane Sandberg <sandbej at linnbenton.edu>

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;

commit fe8a46504b684f8b862ff81a825df6eed4624c59
Author: Mike Risher <mrisher at catalyte.io>
Date:   Tue Dec 10 23:15:35 2019 +0000

    lp1855931 wrap text for wide Angular eg-grid column headers
    
    Make column headers text wrap so that you can fully read the header even if
    it's several words long.  This will help when there are multiple headers
    that start with the same word and they show up identically.
    
    Signed-off-by: Mike Risher <mrisher at catalyte.io>
    Signed-off-by: Galen Charlton <gmc at equinoxinitiative.org>
    Signed-off-by: Jane Sandberg <sandbej at linnbenton.edu>

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 de4894d3fe..4c9575fc52 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
@@ -31,24 +31,6 @@
   border-color: #b8daff;
 }
 
-.eg-grid-header-cell {
-    font-weight: bold;
-}
-
-.eg-grid-header-cell.dragover {
-    background-color: #cce5ff;
-    border-color: #b8daff;
-}
-
-.eg-grid-header-cell-sort-label {
-  cursor: pointer;
-  text-decoration: underline;
-}
-
-.eg-grid-header-cell-sort-arrow {
-  font-size: 14px;
-}
-
 .eg-grid-cell {
     flex: 2; /* applied per column */
     padding: 6px;
@@ -75,6 +57,25 @@
 .eg-grid-body-cell {
 }
 
+.eg-grid-header-cell {
+  font-weight: bold;
+  white-space: normal;
+}
+
+.eg-grid-header-cell.dragover {
+    background-color: #cce5ff;
+    border-color: #b8daff;
+}
+
+.eg-grid-header-cell-sort-label {
+  cursor: pointer;
+  text-decoration: underline;
+}
+
+.eg-grid-header-cell-sort-arrow {
+  font-size: 14px;
+}
+
 .eg-grid-toolbar {
   display: flex;
 }

-----------------------------------------------------------------------

Summary of changes:
 .../src/eg2/src/app/share/grid/grid.component.css  | 40 ++++++++++++----------
 1 file changed, 21 insertions(+), 19 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list