[open-ils-commits] [GIT] Evergreen ILS branch rel_3_1 updated. e714feca20eeea64e49a2092293ab991430f5d73

Evergreen Git git at git.evergreen-ils.org
Thu Aug 1 16:19:24 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_1 has been updated
       via  e714feca20eeea64e49a2092293ab991430f5d73 (commit)
      from  8478018bcb14f6ac29fb6909d97ee1841d2f306d (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 e714feca20eeea64e49a2092293ab991430f5d73
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 91e0024389..1df72be3d1 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