[open-ils-commits] ***SPAM*** [GIT] Evergreen ILS branch master updated. a6e01ccfec6134ae938372f4700ec39685b47849

Evergreen Git git at git.evergreen-ils.org
Wed Sep 10 17:04:34 EDT 2014


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  a6e01ccfec6134ae938372f4700ec39685b47849 (commit)
       via  4d087be8ad23761eade72b2f1e3bbff1cf69b5d6 (commit)
       via  725173ecac0d56f96e905a77e611aaee0805e7ee (commit)
      from  167f7f5a54b841cfdb04b156edc69dbceb48f177 (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 a6e01ccfec6134ae938372f4700ec39685b47849
Author: Ben Shum <bshum at biblio.org>
Date:   Wed Sep 10 17:03:11 2014 -0400

    Move new color note to release notes 2.7
    
    Signed-off-by: Ben Shum <bshum at biblio.org>

diff --git a/docs/RELEASE_NOTES_2_7.txt b/docs/RELEASE_NOTES_2_7.txt
index 1f9cdac..a57678a 100644
--- a/docs/RELEASE_NOTES_2_7.txt
+++ b/docs/RELEASE_NOTES_2_7.txt
@@ -6,6 +6,14 @@ Evergreen 2.7 Release Notes
 Upgrade notes
 -------------
 
+New Color in colors.tt2
+~~~~~~~~~~~~~~~~~~~~~~~
+A new color called _mobile_header_text_ has been added to colors.tt2. Evergreen
+sites will need to customize this color so that it fits with their catalog's
+color scheme. The color is used to define new search links that will appear in
+ _My Account_ screens when viewed on screens smaller than 600px wide. It will
+ also be used on any future text that appears in the header area of the catalog.
+
 Record Attributes Reingest Recommended
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 After this update, it is recommended that you reingest your
diff --git a/docs/RELEASE_NOTES_NEXT/OPAC/mobile-header-text-color.txt b/docs/RELEASE_NOTES_NEXT/OPAC/mobile-header-text-color.txt
deleted file mode 100644
index 868a419..0000000
--- a/docs/RELEASE_NOTES_NEXT/OPAC/mobile-header-text-color.txt
+++ /dev/null
@@ -1,9 +0,0 @@
-New Color in colors.tt2
-^^^^^^^^^^^^^^^^^^^^^^^
-Upgrade Notes
-+++++++++++++
-A new color called _mobile_header_text_ has been added to colors.tt2. Evergreen
-sites will need to customize this color so that it fits with their catalog's
-color scheme. The color is used to define new search links that will appear in
- _My Account_ screens when viewed on screens smaller than 600px wide. It will
- also be used on any future text that appears in the header area of the catalog.

commit 4d087be8ad23761eade72b2f1e3bbff1cf69b5d6
Author: Kathy Lussier <klussier at masslnc.org>
Date:   Fri Sep 5 19:26:22 2014 -0400

    lp1261791 Adjustment to background color for mobile search links
    
    Adding an id for the div surrounding mobile search links so that the
    background color matches the color of the rest of the header.
    
    Signed-off-by: Kathy Lussier <klussier at masslnc.org>
    Signed-off-by: Ben Shum <bshum at biblio.org>

diff --git a/Open-ILS/src/templates/opac/css/style.css.tt2 b/Open-ILS/src/templates/opac/css/style.css.tt2
index bd34d0d..416e573 100644
--- a/Open-ILS/src/templates/opac/css/style.css.tt2
+++ b/Open-ILS/src/templates/opac/css/style.css.tt2
@@ -358,6 +358,10 @@ for now until a better color is picked - if needed.
      display: none;
 }
 
+#mobile_acct_search_links {
+      background: [% css_colors.primary_fade %];
+}
+
 .rdetail_header {
     padding: 5px 7px 6px 0px;
     margin-left: 1em;
diff --git a/Open-ILS/src/templates/opac/parts/myopac/base.tt2 b/Open-ILS/src/templates/opac/parts/myopac/base.tt2
index 2b89049..8f8a592 100644
--- a/Open-ILS/src/templates/opac/parts/myopac/base.tt2
+++ b/Open-ILS/src/templates/opac/parts/myopac/base.tt2
@@ -16,7 +16,7 @@
     </div>
 
      <!-- Added so search available from my account pages -->
-    <div class="mobile_view">
+    <div class="mobile_view" id="mobile_acct_search_links">
       <span class="adv_search_catalog_lbl mobile_search_lbl_clr"><strong>Search:</strong></span>
       <span class="adv_search_catalog_lbl"><a href="[% mkurl(ctx.opac_root _ '/home', {locg => CGI.param('locg')}, 1) %]"
                     id="home_adv_search_link" class="mobile_search_lbl_clr">[%l('Basic')%]</a> &nbsp;</span>

commit 725173ecac0d56f96e905a77e611aaee0805e7ee
Author: Kathy Lussier <klussier at masslnc.org>
Date:   Fri Sep 5 19:08:25 2014 -0400

    Release notes entry for new mobile-header-text-color
    
    Adding a release notes entry for the addition of mobile-header-text-color
    in colors.tt2.
    
    Signed-off-by: Kathy Lussier <klussier at masslnc.org>
    Signed-off-by: Ben Shum <bshum at biblio.org>

diff --git a/docs/RELEASE_NOTES_NEXT/OPAC/mobile-header-text-color.txt b/docs/RELEASE_NOTES_NEXT/OPAC/mobile-header-text-color.txt
new file mode 100644
index 0000000..868a419
--- /dev/null
+++ b/docs/RELEASE_NOTES_NEXT/OPAC/mobile-header-text-color.txt
@@ -0,0 +1,9 @@
+New Color in colors.tt2
+^^^^^^^^^^^^^^^^^^^^^^^
+Upgrade Notes
++++++++++++++
+A new color called _mobile_header_text_ has been added to colors.tt2. Evergreen
+sites will need to customize this color so that it fits with their catalog's
+color scheme. The color is used to define new search links that will appear in
+ _My Account_ screens when viewed on screens smaller than 600px wide. It will
+ also be used on any future text that appears in the header area of the catalog.

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

Summary of changes:
 Open-ILS/src/templates/opac/css/style.css.tt2     |    4 ++++
 Open-ILS/src/templates/opac/parts/myopac/base.tt2 |    2 +-
 docs/RELEASE_NOTES_2_7.txt                        |    8 ++++++++
 3 files changed, 13 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list