Skip to content
Snippets Groups Projects
Commit b1e654c2 authored by Dorian Merz's avatar Dorian Merz
Browse files

Merge branch 'master' into instance/fid

parents 234813e0 5c3b2368
Branches
Tags
No related merge requests found
...@@ -1648,12 +1648,34 @@ footer { ...@@ -1648,12 +1648,34 @@ footer {
//// Off-Canvas //// Off-Canvas
@media only screen and (max-width: $screen-sm-max) { @media only screen and (max-width: $screen-sm-max) {
// Define position of VF5.1 offcanvas toggler // Define position of VF5.1 offcanvas toggler
// FIXME: CHECK THIS! CK
.search-stats, .search-stats,
.search-controls { .search-controls {
clear: both; clear: both;
} }
} }
//// Re-define button arrows by adding space to the :after/:before elements -- see offcanvas.scss
.offcanvas-left {
.close-offcanvas::after {
content: '\00a0\f105';
}
.search-filter-toggle::before {
content: '\f100\00a0';
}
}
.offcanvas-right {
.close-offcanvas::before {
content: '\f104\00a0';
}
.search-filter-toggle::after {
content: '\00a0\f101';
}
}
// make 100% wide to avoid conflict with other elements, for back-toggler see below // make 100% wide to avoid conflict with other elements, for back-toggler see below
.offcanvas-toggler, .offcanvas-toggler,
.offcanvas-toggler button { .offcanvas-toggler button {
......
<!-- finc: RecordDriver - SolrAI - data-jTitle -->
<?php $jtitle = []; ?>
<?php if (!(empty($data))): ?>
<?php $issns = $this->driver->tryMethod('getISSNs'); ?>
<?php ob_start(); ?>
<?php if (!empty($issns)): ?>
<a href="<?=$this->record($this->driver)->getLink('isn', $issns)?>">
<?=$this->escapeHtml($data)?>
</a>
<?php else: ?>
<?=$this->escapeHtml($data)?>
<?php endif; ?>
<?php
$jtitle[] = trim(preg_replace('/\s+<\//', '</', ob_get_contents()));
ob_end_clean();
?>
<?php endif; ?>
<?php
// please note: direction of iteration will be displayed
$methods = ['getVolume', 'getPublishDateSort', 'getIssues', 'getPages'];
foreach ($methods as $method) {
if (!(empty($retval = $this->driver->tryMethod($method)))) {
$jtitle[] = ($method == 'getPages')
? $this->transEsc('p.') . ' ' . $this->escapeHtml($retval)
: $this->escapeHtml($retval);
}
}
?>
<?php /* finc: add schema tags for parent publication #13850 - VE */ ?>
<span property="isPartOf" typeof="Periodical" resource="#periodical">
<span property="name">
<?=implode(', ', $jtitle)?>
</span>
</span>
<!-- finc: RecordDriver - SolrAi - data-jTitle - END -->
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment