table.bookbag-specific {
border-right: 1px solid [% css_colors.accent_dark %];
border-bottom: 1px solid [% css_colors.accent_medium %];
- margin-bottom: 2px;
+ 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 {
padding-left: 0px !important;
}
.bookbag-specific td.list_entry {
+ display: inline-block;
min-width: 5em;
- padding-left: 5px !important;
+ [% IF rtl == 't' -%]
+ 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 -%]
+ left: 10px;
+ [% END -%]
}
.bbag-navigate-list {
display: none;
<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="hide_on_small_screens">
- <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'>
['page', 'id', 'edit_notes']
)
-%]">[% attrs.author | html %]</a></td>
- <td class="list_entry mobile_hide" data-label="[% l('Local Call Number') %]">
+ <td class="list_entry " data-label="[% l('Local Call Number') %]">
[%
copy = attrs.holdings.0;
IF copy;