[open-ils-commits] [GIT] Evergreen ILS branch rel_2_4 updated. 10a5289685ee455342860cb9c24c889f3d7b6a3e

Evergreen Git git at git.evergreen-ils.org
Wed Sep 18 15:47:08 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, rel_2_4 has been updated
       via  10a5289685ee455342860cb9c24c889f3d7b6a3e (commit)
      from  0b7963f56729304954eda4d969314f9a572dc447 (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 10a5289685ee455342860cb9c24c889f3d7b6a3e
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