This commit is contained in:
maTh
2022-10-26 00:03:10 +02:00
committed by GitHub
parent 45f6d84b69
commit c5539009c9

View File

@@ -20,7 +20,7 @@
if ($this->entry->isRead()) {
$arUrl['params']['is_read'] = 0;
}
?><a class="read" href="<?= Minz_Url::display($arUrl) ?>" title="<?= _t('conf.shortcut.mark_read') ?>"><?php
?><a class="item-element read" href="<?= Minz_Url::display($arUrl) ?>" title="<?= _t('conf.shortcut.mark_read') ?>"><?php
echo _i($this->entry->isRead() ? 'read' : 'unread'); ?></a><?php
?></li><?php
}
@@ -30,7 +30,7 @@
if ($this->entry->isFavorite()) {
$arUrl['params']['is_favorite'] = 0;
}
?><a class="bookmark" href="<?= Minz_Url::display($arUrl) ?>" title="<?= _t('conf.shortcut.mark_favorite') ?>"><?php
?><a class="item-element bookmark" href="<?= Minz_Url::display($arUrl) ?>" title="<?= _t('conf.shortcut.mark_favorite') ?>"><?php
echo _i($this->entry->isFavorite() ? 'starred' : 'non-starred'); ?></a><?php
?></li><?php
}
@@ -38,7 +38,7 @@
// @phpstan-ignore-next-line
if ($bottomline_labels) {
?><li class="item labels">
<div class="dropdown dynamictags">
<div class="item-element dropdown dynamictags">
<div id="dropdown-labels-<?= $this->entry->id() ?>" class="dropdown-target"></div>
<a class="dropdown-toggle" href="#dropdown-labels-<?= $this->entry->id() ?>">
<?= _i('label') ?><?= _t('index.menu.tags') ?>
@@ -59,7 +59,7 @@
$tags = $bottomline_tags ? $this->entry->tags() : null;
if (!empty($tags)) {
?><li class="item tags">
<div class="dropdown">
<div class="item-element dropdown">
<div id="dropdown-tags-<?= $this->entry->id() ?>" class="dropdown-target"></div>
<a class="dropdown-toggle" href="#dropdown-tags-<?= $this->entry->id() ?>">
<?= _i('tag') ?><?= _t('index.tag.related') ?>
@@ -76,7 +76,7 @@
}
?><li class="item share"><?php
if ($bottomline_sharing) {
?><div class="dropdown">
?><div class="item-element dropdown">
<div id="dropdown-share-<?= $this->entry->id() ?>" class="dropdown-target"></div>
<a class="dropdown-toggle" href="#dropdown-share-<?= $this->entry->id() ?>">
<?= _i('share') ?><?= _t('index.share') ?>
@@ -119,9 +119,9 @@
<?php } ?>
</li><?php
if ($bottomline_date) {
?><li class="item date"><time datetime="<?= $this->entry->machineReadableDate() ?>"><?= $this->entry->date() ?></time>&nbsp;</li><?php
?><li class="item date"><time datetime="<?= $this->entry->machineReadableDate() ?>" class="item-element"><?= $this->entry->date() ?></time>&nbsp;</li><?php
}
if ($bottomline_link) {
?><li class="item link"><a target="_blank" rel="noreferrer" href="<?= $this->entry->link() ?>" title="<?= _t('conf.shortcut.see_on_website') ?>"><?= _i('link') ?></a></li><?php
?><li class="item link"><a target="_blank" class="item-element" rel="noreferrer" href="<?= $this->entry->link() ?>" title="<?= _t('conf.shortcut.see_on_website') ?>"><?= _i('link') ?></a></li><?php
} ?>
</ul>