Skip to content

Commit

Permalink
design changes
Browse files Browse the repository at this point in the history
  • Loading branch information
nczirjak-acdh committed May 8, 2023
1 parent f2deb83 commit 1aaeefc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion js/acdh_repo_gui.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jQuery(function ($) {
{data: 'sumcount', visible: false},
{data: 'image', width: "20%", render: function (data, type, row, meta) {
let acdhid = row.acdhid.replace('https://', '');
return '<div class="dt-single-res-thumb">\n\
return '<div class="dt-single-res-thumb bg-white">\n\
<center><a href="https://arche-thumbnails.acdh.oeaw.ac.at/' + acdhid + '?width=600" data-lightbox="detail-titleimage-' + row.id + '">\n\
<img class="img-responsive" src="https://arche-thumbnails.acdh.oeaw.ac.at/' + acdhid + '?width=150">\n\
</a></center>\n\
Expand Down
2 changes: 1 addition & 1 deletion js/api_search.js
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ jQuery(function ($) {
{data: 'image', width: "20%", render: function (data, type, row, meta) {
if (row.pid) {
let pid = row.pid.replace('https://', '');
return '<div class="dt-single-res-thumb">\n\
return '<div class="dt-single-res-thumb bg-white">\n\
<center><a href="https://arche-thumbnails.acdh.oeaw.ac.at/' + pid + '?width=600" data-lightbox="detail-titleimage-' + row.acdhid + '">\n\
<img class="img-responsive" src="https://arche-thumbnails.acdh.oeaw.ac.at/' + pid + '?width=150">\n\
</a></center>\n\
Expand Down
2 changes: 1 addition & 1 deletion js/arche_detail_api.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jQuery(function ($) {
let acdhid = row.acdhid.replace('https://', '');
return '<div class="dt-single-res-thumb">\n\
<center><a href="https://arche-thumbnails.acdh.oeaw.ac.at/' + acdhid + '?width=600" data-lightbox="detail-titleimage-' + row.id + '">\n\
<img class="img-responsive" src="https://arche-thumbnails.acdh.oeaw.ac.at/' + acdhid + '?width=75">\n\
<img class="img-responsive bg-white" src="https://arche-thumbnails.acdh.oeaw.ac.at/' + acdhid + '?width=75">\n\
</a></center>\n\
</div>';
}
Expand Down

0 comments on commit 1aaeefc

Please sign in to comment.