border-right: 1px solid [% css_colors.accent_dark %];
border-bottom: 1px solid [% css_colors.accent_medium %];
margin-bottom: 2ex;
+ width: 100%;
}
.bookbag-share {
[% IF rtl == 't' -%]
.bookbag-specific div.sort select {
width:180px;
}
+ .bookbag-specific tr {
+ display: block;
+ border-bottom: 1px solid [% css_colors.border_standard %];
+ }
.bookbag-specific td.list_checkbox {
[% IF rtl == 't' -%]
padding-right: 0px !important;
[% END -%]
}
.bookbag-specific td.list_entry {
+ display: inline-block;
min-width: 5em;
[% IF rtl == 't' -%]
- padding-right: 5px !important;
+ padding-right: 40% !important;
+ [% ELSE -%]
+ padding-left: 40% !important;
+ [% END -%]
+ }
+ .bookbag-specific td.list_entry:before {
+ content: attr(data-label);
+ position: absolute;
+ [% IF rtl == 't' -%]
+ right: 10px;
[% ELSE -%]
- padding-left: 5px !important;
+ left: 10px;
[% END -%]
}
.bbag-navigate-list {
<td class="list_checkbox">
<input type="checkbox" name="selected_item" value="[% item.id %]" bbag='[% bbag.id %]'/>
</td>
- <td class="list_entry">
+ <td class="list_entry" data-label="[% l('Title') %]">
<a href="[% mkurl(ctx.opac_root _ '/record/' _ rec_id, {}, ['edit_notes', 'bbid']) %]">[% attrs.title | html %]</a>
</td>
- <td class="list_entry">
- <a href="[%-
+ <td class="list_entry" data-label="[% l('Author(s)') %]">
+ <a href="[%-
authorquery = attrs.author | replace('[,\.:;]', '');
mkurl(ctx.opac_root _ '/results', {qtype => 'author', query => authorquery}, ['page', 'bbid', 'edit_notes'])
-%]">[% attrs.author | html %]</a>
</td>
- <td class="list_entry mobile_hide">
+ <td class="list_entry" data-label="[% l('Local Call Number') %]">
[%
copy = attrs.holdings.0;
IF copy;
END;
%]
</td>
- <td class="list_entry mobile_hide">
+ <td class="list_entry" data-label="[% l('Publication Date') %]">
[% attrs.pubdate | html %]
</td>
- <td class="list_entry mobile_hide">
+ <td class="list_entry" data-label="[% l('Format') %]">
[% attrs.format_label | html %]
</td>
[% IF CGI.param("edit_notes") == bbag.id %]
- <td class="list_entry mobile_hide">
+ <td class="list_entry" data-label="[% l('Notes') %]">
[% FOR note IN item.notes %]
<input type="text" name="note-[% note.id %]" value="[% note.note | html %]" />
[% END %]
<input type="text" name="item-[% item.id %]" />
</td>
[% ELSE %]
- <td class="list_entry mobile_hide">
+ <td class="list_entry" data-label="[% l('Notes') %]">
[% FOR note IN item.notes %]
<div>[% note.note | html %]</div>
[% END %]
<input class="opac-button" type="submit" value="[% l('Go') %]" />
</div>
<div class="bbag-content">
- <table class="bookbag-specific table_no_cell_pad table_no_border_space table_no_border" width="100%">
+ <table class="bookbag-specific table_no_cell_pad table_no_border_space table_no_border">
<thead id="acct_list_header_anon">
<tr>
<td class='list_checkbox'>
<td class="list_checkbox">
<input type="checkbox" name="record" value="[% item %]" />
</td>
- <td class="list_entry"><a href="[% mkurl(ctx.opac_root _ '/record/' _ item, {}, ['edit_notes', 'id']) %]">[% attrs.title | html %]</a></td>
- <td class="list_entry"><a href="[%-
+ <td class="list_entry" data-label="[% l('Title') %]"><a href="[% mkurl(ctx.opac_root _ '/record/' _ item, {}, ['edit_notes', 'id']) %]">[% attrs.title | html %]</a></td>
+ <td class="list_entry" data-label="[% l('Author(s)') %]"><a href="[%-
authorquery = attrs.author | replace('[,\.:;]', '');
mkurl(
ctx.opac_root _ '/results',
['page', 'id', 'edit_notes']
)
-%]">[% attrs.author | html %]</a></td>
- <td class="list_entry mobile_hide">
+ <td class="list_entry" data-label="[% l('Local Call Number') %]">
[%
copy = attrs.holdings.0;
IF copy;