diff options
| author | 2022-04-18 22:05:12 +0200 | |
|---|---|---|
| committer | 2022-04-18 22:05:12 +0200 | |
| commit | c9d0d20ef66d546d1a1e24380b1363d2471986e9 (patch) | |
| tree | a680ba511de00bd53ee25b0f4ad21617252d2ef8 /app/views/helpers/index/normal/entry_bottom.phtml | |
| parent | 34f7558cfb7bbfa3b6e82a6f5275fb1a0da19bb7 (diff) | |
Fix: article footer + improve: labeling (#4306)
* icon = open dropdown
* label icon
* added: link to edit labels
* dropdown-menu label: padding and hover
* improve input row
* CSS
* Update main.js
* Update main.js
* Update main.js
* fix
* make addItem button selectable via tabbing
* Fixed theme: Ansum
* tags menu: use the new icon
* Fixed theme: Flat design
make the manage button visible
* fixed Theme: Mapco
* Fixed theme: Pafat
Diffstat (limited to 'app/views/helpers/index/normal/entry_bottom.phtml')
| -rw-r--r-- | app/views/helpers/index/normal/entry_bottom.phtml | 23 |
1 files changed, 13 insertions, 10 deletions
diff --git a/app/views/helpers/index/normal/entry_bottom.phtml b/app/views/helpers/index/normal/entry_bottom.phtml index 8508acf71..05e62a41c 100644 --- a/app/views/helpers/index/normal/entry_bottom.phtml +++ b/app/views/helpers/index/normal/entry_bottom.phtml @@ -40,11 +40,16 @@ ?><li class="item"> <div class="dropdown dynamictags"> <div id="dropdown-labels-<?= $this->entry->id() ?>" class="dropdown-target"></div> - <?= FreshRSS_Themes::alt('label') ?> - <a class="dropdown-toggle" href="#dropdown-labels-<?= $this->entry->id() ?>"><?php - echo _t('index.menu.tags'); - ?></a> + <a class="dropdown-toggle" href="#dropdown-labels-<?= $this->entry->id() ?>"> + <?= _i('label') ?><?= _t('index.menu.tags') ?> + </a> <ul class="dropdown-menu dropdown-menu-scrollable scrollbar-thin"> + <li class="dropdown-header"> + <?= _t('index.menu.tags') ?> + <?php if (FreshRSS_Auth::hasAccess()) { ?> + <a href="<?= _url('tag', 'index') ?>"><?= _i('configure') ?></a> + <?php } ?> + </li> <!-- Ajax --> </ul> <a class="dropdown-close" href="#close">❌</a> @@ -56,10 +61,9 @@ ?><li class="item"> <div class="dropdown"> <div id="dropdown-tags-<?= $this->entry->id() ?>" class="dropdown-target"></div> - <?= _i('tag') ?> - <a class="dropdown-toggle" href="#dropdown-tags-<?= $this->entry->id() ?>"><?php - echo _t('index.tag.related'); - ?></a> + <a class="dropdown-toggle" href="#dropdown-tags-<?= $this->entry->id() ?>"> + <?= _i('tag') ?><?= _t('index.tag.related') ?> + </a> <ul class="dropdown-menu"> <?php foreach ($tags as $tag) { @@ -75,8 +79,7 @@ ?><div class="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') ?> + <?= _i('share') ?><?= _t('index.share') ?> </a> <ul class="dropdown-menu"> |
