aboutsummaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorGravatar maTh <math-home@web.de> 2022-10-26 00:03:10 +0200
committerGravatar GitHub <noreply@github.com> 2022-10-26 00:03:10 +0200
commitc5539009c910e5e5b2f2fca20c86c240a1d470da (patch)
tree6112688b224e50de4cd88631b73fe77e2158668f /app
parent45f6d84b69abe39f19ea9097a92c3cb4e925182a (diff)
fix (#4775)
Diffstat (limited to 'app')
-rw-r--r--app/views/helpers/index/normal/entry_bottom.phtml14
1 files changed, 7 insertions, 7 deletions
diff --git a/app/views/helpers/index/normal/entry_bottom.phtml b/app/views/helpers/index/normal/entry_bottom.phtml
index e58c37540..290a6f35f 100644
--- a/app/views/helpers/index/normal/entry_bottom.phtml
+++ b/app/views/helpers/index/normal/entry_bottom.phtml
@@ -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>