background-color:#ddd;
}
+#search_box {
+ width:90%;
+ max-width:600px;
+ height:20px;
+ padding:3px;
+}
+
+.org_selector_dropdown {
+ padding:3px;
+}
+
#adv_search_tabs, #acct_tabs, #acct_fines_tabs, #acct_checked_tabs, #acct_holds_tabs, #acct_prefs_tabs, #results_header_inner{
[% IF rtl == 't' -%]
margin-right:2px;
margin-left:40px;
}
+.call_number_box {
+ margin-left:40px;
+}
+
+div.result_table_utils {
+ margin-left:-40px;
+}
+
.record_title {
font-size: [% css_fonts.size_bigger %];
}
#homesearch_main_logo {
display:none;
}
+ .org_selector_dropdown {
+ padding:3px;
+ width:90%;
+ max-width:250px;
+ }
#format_selector {
display:none;
}
.results_header_lbl {
display: none;
}
+ .results_header_nav1 {
+ margin-left:0px;
+ margin-right:0px;
+ }
.results_header_nav1 span.h1 {
display: none;
}
.result_table_pic {
width: 55px;
padding: 0px;
- margin: 0px;
+ margin: 5px;
}
+ .result_table_title_cell, .call_number_box {
+ margin-left:0px;
+ }
tr[name=results_isbn_tr], tr[name=results_phys_desc_tr], tr[name=results_pub_tr] strong, .result_count {
display: none;
}
<select [% IF id %] id='[% id %]' [% END -%]
title='[% arialabel || l("Select Library") %]'
- name='[% name %]' style="padding:3px;width:20em;">
+ name='[% name %]' class="org_selector_dropdown">
[%-
WHILE node_stack.size > 0;
node = node_stack.pop();
[% IF serial_holdings -%]
<th scope='col'>[% l("Issue Label") %]</th>
[%- ELSE -%]
- <th scope='col'>[% l("Library System: Library Branch Name") %]</th>
+ <th scope='col' style="text-align:left;vertical-align:top;">[% l("Library System: Library Branch Name") %]<br/>
+ <span style="font-size:smaller;font-style:italic;">(Click library name for locations and hours)</span>
+ </th>
[%- END %]
- <th scope='col'>[% l("Shelving Location") %]</th>
- <th scope='col'>[% l("Call Number / Copy Notes") %]</th>
+ <th scope='col' style="text-align:left;vertical-align:top;">[% l("Shelving Location") %]</th>
+ <th scope='col' style="text-align:left;vertical-align:top;">[% l("Call Number / Copy Notes") %]</th>
[%- IF has_parts == 'true' %]
- <th scope='col'>[% l("Part") %]</th>
+ <th scope='col' style="text-align:left;vertical-align:top;">[% l("Part") %]</th>
[%- END %]
- <th scope='col'>[% l("Barcode") %]</th>
+ <th scope='col' style="text-align:left;vertical-align:top;">[% l("Barcode") %]</th>
[%- IF ctx.is_staff %]
- <th scope='col'>[% l("Circulation Modifier") %]</th>
- <th scope='col'>[% l("Age Hold Protection") %]</th>
- <th scope='col'>[% l("Active/Create Date") %]</th>
+ <th scope='col' style="text-align:left;vertical-align:top;">[% l("Age Hold Protection") %]</th>
+ <th scope='col' style="text-align:left;vertical-align:top;">[% l("Active/Create Date") %]</th>
[%- END %]
[%- IF ctx.is_staff OR serial_holdings %]
- <th scope='col'>[% l("Holdable?") %]</th>
+ <th scope='col' style="text-align:left;vertical-align:top;">[% l("Holdable?") %]</th>
[%- END %]
- <th scope='col'>[% l("Status") %]</th>
+ <th scope='col' style="text-align:left;vertical-align:top;">[% l("Status") %]</th>
+ [%- IF ctx.is_staff %]
<th scope='col'>[% l("Due Date") %]</th>
+ [%- END -%]
</tr>
</thead>
<tbody class="copy_details_table">
[%- IF has_parts == 'true' %]
<td valign="top" style="background-color:#fff;">[% copy_info.part_label | html %]</td>
[%- END %]
- <td property="serialNumber" valign="top" style="background-color:#fff;text-align:center;">
+ <td property="serialNumber" valign="top" style="background-color:#fff;text-align:left;">
[% copy_info.barcode | html -%]
[% IF ctx.is_staff %]<br/>
[%- IF ctx.is_browser_staff %]
ctx.prev_rec_url = mkurl(ctx.prev_search_record, prev_args, stop_parms);
%]
<a class='np_nav_link classic_link' title='[% l("Previous Record") %]'
- href='[% ctx.prev_rec_url %]'><span class="nav_arrow_fix">◄</span> [% l('Previous') %]</a>
+ href='[% ctx.prev_rec_url %]' rel="nofollow" vocab=""><span class="nav_arrow_fix">◄</span> [% l('Previous Item') %]</a>
[% END %]
[%
<table
role="presentation"
title="[% l('Record Holdings Summary') %]"
- class="table_no_border_space table_no_cell_pad table_no_border results_info_table"
- style="margin-left:40px;">
+ class="table_no_border_space table_no_cell_pad table_no_border results_info_table call_number_box">
[% UNLESS rec.mmr_id %]
[% IF args.holdings.size > 0 %]
<tr name='bib_cn_list' class='result_table_title_cell'>
<span class='search_box_wrapper'>
[%- # autosuggest breaks accessibility, as the aria-label
# attribute is removed when the Dijit is created. :( %]
- <label id="search_box_label" for="search_box">[% l('Search for: ') %]
- <input type="text" id="search_box" name="query" style="width:90%;max-width:600px;height:20px;padding:3px;" aria-label="[%
+ <label id="search_box_label" for="search_box">[% l('Search for: ') %]</label>
+ <input type="text" id="search_box" name="query" aria-label="[%
l('Enter search query:');
%]" value="[% is_advanced ? ctx.naive_query_scrub(ctx.user_query) : CGI.param('query') | html %]"
[%- IF use_autosuggest.enabled == "t" %]
[%- ELSE -%]
[% IF basic_search != "f" %] autofocus [% END %] x-webkit-speech
[%- END # autosuggest enabled %] />
- </label>
</span>
<br/>
- <label id="search_qtype_label" for="qtype">
+ <label id="search_qtype_label" for="qtype"></label>
[%-
l('Search by: ');
INCLUDE "opac/parts/qtype_selector.tt2" id="qtype";
-%]
- </label>
- <label id="search_itype_label" for="search_itype_selector">
+
+ <label id="search_itype_label" for="search_itype_selector"></label>
[%-
l('Limit to: ');
IF search.basic_config.type == 'attr';
none_label=search.basic_config.none_label;
END;
-%]
- </label>
- <label id="search_locg_label" for="search_org_selector">
+
+ <label id="search_locg_label" for="search_org_selector"></label>
[%-
l('Search within: ');
select_lib_label = l("Select search library");
INCLUDE build_org_selector arialabel=select_lib_label
id='search_org_selector' show_loc_groups=1
-%]
- </label>
<span>
<input id="detail" type="hidden" name="detail_record_view" value="[% show_detail_view %]"/>
<input id='search-submit-go' type="submit" value="[% l('Search') %]" class="opac-button"