[% IF ctx.search_result_index >= 0 %]
<div id="rdetail_header">
- <div style="float:left;">
+ <span id="rdetail_results">
<a href='[% mkurl(ctx.opac_root _ '/results', {}, stop_parms); %]'>[% l('◄ Search Results') %]</a>
<span id="rdetail_result_count">
[% l('Showing Item [_1] of [_2]', ctx.search_result_index + 1, ctx.hit_count) %]
</span>
- </div>
+ </span>
<div id="rdetail_result_nav">
[%
IF ctx.prev_search_record;
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 %]'>◄ [% l('Previous') %]</a>
[% END %]
- <span style="padding:0px 10px;"> </span>
-
[%
IF ctx.next_search_record;
next_args = {};
ctx.next_rec_url = mkurl(ctx.next_search_record, next_args, stop_parms);
%]
<a class='np_nav_link classic_link' title='[% l("Next Record") %]'
- href='[% ctx.next_rec_url %]'>[% l('Next') %]<span class="nav_arrow_fix"> ►</span></a>
+ href='[% ctx.next_rec_url %]'>[% l('Next') %] ►</a>
[% END %]
</div>
}
#rdetail_header {
- font-size:14px;
- font-weight:bold;
- color:#074079;
- padding: 5px 7px 6px 0px;
+ padding: 5px 7px 6px 0px;
margin-left: 1em;
- border-bottom: 1px dotted #ccc;
+ border-bottom: 1px dotted #ccc;
+}
+
+#rdetail_results a {
+ color:#074079;
+ font-weight:bold;
+ font-size: 1.2em;
}
#rdetail_result_count {
- color: black;
- font-size: 11px;
- font-weight: normal;
- padding-left: 10px;
+ color: black;
+ font-weight: normal;
+ padding-left: 1em;
+ display: inline-block;
}
#rdetail_result_nav {
- float:right;
- font-size: 11px;
- font-weight:normal;
+ font-weight:normal;
+ padding-left: 1em;
+ display: inline-block;
}
#rdetail_details_table {
font-size: 11px;
}
-.nav_arrow_fix {
- font-size:8px;
- position:relative;
- top:-1px;
-}
-
#result_table_div {
margin-top: 1em;
}