[open-ils-commits] [GIT] Evergreen ILS branch master updated. 4d6a92a19ba39f211673b55313c43726a274ee53
Evergreen Git
git at git.evergreen-ils.org
Wed Jul 11 11:46:53 EDT 2018
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 4d6a92a19ba39f211673b55313c43726a274ee53 (commit)
from bb4b31c687703fba09d06fcdf1443584fcbf03d8 (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 4d6a92a19ba39f211673b55313c43726a274ee53
Author: Cesar Velez <cesar.velez at equinoxinitiative.org>
Date: Thu Jan 11 14:12:55 2018 -0500
LP1742782 - fix display of cbox label in list of removable fields
The checkbox input element was being displayed in the middle
of the label text.
Signed-off-by: Cesar Velez <cesar.velez at equinoxinitiative.org>
Signed-off-by: Mike Rylander <mrylander at gmail.com>
diff --git a/Open-ILS/src/templates/staff/cat/z3950/t_list.tt2 b/Open-ILS/src/templates/staff/cat/z3950/t_list.tt2
index e687c93..68c2fbf 100644
--- a/Open-ILS/src/templates/staff/cat/z3950/t_list.tt2
+++ b/Open-ILS/src/templates/staff/cat/z3950/t_list.tt2
@@ -48,12 +48,12 @@
<div class="panel panel-default" ng-show="field_strip_groups.length">
<div class="panel-heading">[% l('Remove Fields on Import') %]</div>
<div class="panel-body">
- <div class="row">
- <div class="col-sm-3 checkbox-inline" ng-repeat="grp in field_strip_groups">
- <label for="strip-grp-{{grp.id()}}">{{grp.label()}}</label>
- <input id='strip-grp-{{grp.id()}}' ng-model="grp.selected" type="checkbox"/>
- </div>
- </div>
+ <ul class="row list-unstyled">
+ <li class="col-sm-3" ng-repeat="grp in field_strip_groups">
+ <label>
+ <input id='strip-grp-{{grp.id()}}' ng-model="grp.selected" type="checkbox"/>{{grp.label()}}</label>
+ </li>
+ </ul>
</div>
</div>
-----------------------------------------------------------------------
Summary of changes:
Open-ILS/src/templates/staff/cat/z3950/t_list.tt2 | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
hooks/post-receive
--
Evergreen ILS
More information about the open-ils-commits
mailing list