cnbrowse tweaks
authorLebbeous Fogle-Weekley <lebbeous@esilibrary.com>
Fri, 29 Jul 2011 16:11:22 +0000 (12:11 -0400)
committerLebbeous Fogle-Weekley <lebbeous@esilibrary.com>
Fri, 29 Jul 2011 16:11:22 +0000 (12:11 -0400)
Signed-off-by: Lebbeous Fogle-Weekley <lebbeous@esilibrary.com>
Open-ILS/web/css/skin/default/opac/style.css
Open-ILS/web/templates/default/opac/parts/advanced/numeric.tt2
Open-ILS/web/templates/default/opac/parts/qtype_selector.tt2
Open-ILS/web/templates/default/opac/parts/record/cnbrowse.tt2

index dd69b49..a58c132 100644 (file)
@@ -1019,3 +1019,4 @@ a.dash-link:hover { text-decoration: underline !important; }
     border-bottom: 1px dashed #999;
     padding-bottom: 1ex;
 }
+.cn_browse_item { padding: 2ex; }
index d842942..c9515a1 100644 (file)
@@ -8,8 +8,8 @@
                 <select name="qtype">
                     <option value="identifier|isbn">[% l('ISBN') %]</option>
                     <option value="identifier|issn">[% l('ISSN') %]</option>
-                    <option value="identifier|bib_cn">[% l('Call Number') %]</option>
-                    <option value="cnbrowse">[% l('Call Number (Browse)') %]</option>
+                    <option value="identifier|bib_cn">[% l('Bib Call Number') %]</option>
+                    <option value="cnbrowse">[% l('Shelf Browse') %]</option>
                     <option value="identifier|lccn">[% l('LCCN') %]</option>
                     <option value="identifier|tcn">[% l('TCN') %]</option>
                     <option value="item_barcode">[% l('Item Barcode') %]</option>
index 8c31f0d..f79de8a 100644 (file)
@@ -4,7 +4,7 @@
     {value => "author", label => l("Author")},
     {value => "subject", label => l("Subject")},
     {value => "series", label => l("Series")},
-    {value => "id|bibcn", label => l("Call Number")}
+    {value => "id|bibcn", label => l("Bib Call Number")}
 ] %]
 <select name="qtype">
     [%  query_type = query_type || CGI.param('qtype');
index c3a1cb4..d44c38d 100644 (file)
@@ -29,9 +29,9 @@ END -%]
             <tbody id='cn_tbody'>
             [% tr_open = 0; FOR cn IN ctx.browsed_call_numbers %]
                 [%- IF loop.index % 3 == 0; tr_open = 1 %]
-                <tr id='cn_browse_row'>
+                <tr class='cn_browse_row'>
                 [% END -%]
-                    <td id='cn_browse_td' class='cn_browse_item' width='25%' valign='top'>
+                    <td class='cn_browse_item' width='25%' valign='top'>
                         [%  rec_attrs = {marc_xml => cn.record.marc};
                             PROCESS get_marc_attrs args=rec_attrs;
                             ident = rec_attrs.isbn_clean || rec_attrs.upc;