[open-ils-commits] [GIT] Evergreen ILS branch rel_3_2 updated. 94230684c5d293b8cd567a85ce23b9ce0b17c4db

Evergreen Git git at git.evergreen-ils.org
Thu Aug 1 16:16:23 EDT 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_2 has been updated
       via  94230684c5d293b8cd567a85ce23b9ce0b17c4db (commit)
      from  ac1d17f1b3dba42bcc952c035021e15e8b6cd778 (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 94230684c5d293b8cd567a85ce23b9ce0b17c4db
Author: Garry Collum <gcollum at gmail.com>
Date:   Mon May 20 14:41:32 2019 -0400

    LP1813078 Menus are sometimes grayed out based on browser size
    
    This patch changes a media definition in css from 800px to 768px, the md column
    size for bootstrap.css.  Items in the menus font color changed when the browser
    was sized between 768px and 800px.
    
    To test.
    1. Expand the Circulation menu, and change the browser to a width between
    768px and 800px.  Notice that the menu items change to a gray color.
    2. Apply the patch, and then change the width of the browser.  Notice that
    the menu items do not change color before the menu is collapsed.
    
    Signed-off-by: Garry Collum <gcollum at gmail.com>
    Signed-off-by: Kyle Huckins <khuckins at catalyte.io>
    Signed-off-by: Jane Sandberg <sandbej at linnbenton.edu>

diff --git a/Open-ILS/src/templates/staff/css/style.css.tt2 b/Open-ILS/src/templates/staff/css/style.css.tt2
index d1b449999b..d06bf485cf 100644
--- a/Open-ILS/src/templates/staff/css/style.css.tt2
+++ b/Open-ILS/src/templates/staff/css/style.css.tt2
@@ -515,8 +515,8 @@ table.list tr.selected td { /* deprecated? */
   flex: 4;
 }
 
-/* TODO: match media size to Bootstrap "md" col resizing */
- at media all and (max-width: 800px) {
+/* 768px equals Bootstrap "md" col resizing */
+ at media all and (max-width: 768px) {
   .flex-row {
     flex-direction: column;
   }
@@ -538,7 +538,7 @@ table.list tr.selected td { /* deprecated? */
   }
 }
 
- at media all and (min-width: 800px) {
+ at media all and (min-width: 768px) {
     /* scrollable menus for full-size screens */
     .scrollable-menu {
         height: auto;

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

Summary of changes:
 Open-ILS/src/templates/staff/css/style.css.tt2 | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list