[open-ils-commits] [GIT] Evergreen ILS branch rel_3_4 updated. 3f741a5e254796fef5cdd8516974f48536b8bc08

Evergreen Git git at git.evergreen-ils.org
Mon Dec 30 17:51:39 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, rel_3_4 has been updated
       via  3f741a5e254796fef5cdd8516974f48536b8bc08 (commit)
       via  e503499f59dd36a99aa6fdc4d5c517d11cf49956 (commit)
      from  12ae55c06e54c1631f1d4d6d5f578940da2fa895 (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 3f741a5e254796fef5cdd8516974f48536b8bc08
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 e503499f59dd36a99aa6fdc4d5c517d11cf49956
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