[open-ils-commits] [GIT] Evergreen ILS branch master updated. 7801e65ced42c09d3d75f263274a9c69196346ea

Evergreen Git git at git.evergreen-ils.org
Wed Sep 18 15:46:16 EDT 2013


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  7801e65ced42c09d3d75f263274a9c69196346ea (commit)
      from  96f23b77b3ebbcef9a2c52f23abb9ced1e0b1d88 (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 7801e65ced42c09d3d75f263274a9c69196346ea
Author: Yamil Suarez <yamil at yamil.com>
Date:   Wed Sep 18 15:01:21 2013 -0400

    Add altering rows colors to (cataloging) manage authorities interface
    
    To make it easier to use the (cataloging) manage authorities interface I added a tiny bit of CSS to have alternating row colors. The "height: 1.5em" part is needed because the enclosing authEntry div ends up with a height of zero because its children containers are all floating. Turns out this zero height behavior is not a bug, but a natural side affect of floating the div's children.
    
    Signed-off-by: Yamil Suarez <yamil at yamil.com>
    Signed-off-by: Lebbeous Fogle-Weekley <lebbeous at esilibrary.com>

diff --git a/Open-ILS/src/templates/cat/authority/list.tt2 b/Open-ILS/src/templates/cat/authority/list.tt2
index 2e134b3..9b8aa96 100644
--- a/Open-ILS/src/templates/cat/authority/list.tt2
+++ b/Open-ILS/src/templates/cat/authority/list.tt2
@@ -3,12 +3,13 @@
 
 <script type="text/javascript" src='[% ctx.media_prefix %]/js/ui/default/cat/authority/list.js'> </script>
 <style type="text/css">
-    .authEntry { clear: both; }
+    .authEntry { clear: both; height: 1.5em; }
     .authEntry > *:first-child { float: left; width: 20%; }
     .authEntry > .text { float: left; width: 46%; }
     .authEntry > .authority-control-set { float: right; width: 33%; ; font-style: italic; }
     .authority-control-set .acs-name { font-weight: bold; }
     .authority-control-set .acs-id { }
+    .authEntry:nth-child(even) { background-color:#D3D3D3;}
 </style>
 <div dojoType="dijit.form.Form" id="myForm" jsId="myForm" encType="multipart/form-data" action="" method="">
     <span style="white-space: nowrap;">

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

Summary of changes:
 Open-ILS/src/templates/cat/authority/list.tt2 |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list