mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-04-02 13:46:09 -04:00
Add space after tag icon
Fix https://github.com/marienfressinaud/FreshRSS/issues/643
This commit is contained in:
@@ -153,14 +153,15 @@ if (!empty($this->entries)) {
|
||||
if (!empty($tags)) {
|
||||
?><li class="item">
|
||||
<div class="dropdown">
|
||||
<div id="dropdown-tags-<?php echo $item->id ();?>" class="dropdown-target"></div>
|
||||
<a class="dropdown-toggle" href="#dropdown-tags-<?php echo $item->id ();?>"><?php
|
||||
echo FreshRSS_Themes::icon('tag'), Minz_Translate::t ('related_tags');
|
||||
<div id="dropdown-tags-<?php echo $item->id();?>" class="dropdown-target"></div>
|
||||
<?php echo _i('tag'); ?>
|
||||
<a class="dropdown-toggle" href="#dropdown-tags-<?php echo $item->id();?>"><?php
|
||||
echo _t('related_tags');
|
||||
?></a>
|
||||
<ul class="dropdown-menu">
|
||||
<li class="dropdown-close"><a href="#close">❌</a></li><?php
|
||||
foreach($tags as $tag) {
|
||||
?><li class="item"><a href="<?php echo _url ('index', 'index', 'search', urlencode ('#' . $tag)); ?>"><?php echo $tag; ?></a></li><?php
|
||||
?><li class="item"><a href="<?php echo _url('index', 'index', 'search', urlencode('#' . $tag)); ?>"><?php echo $tag; ?></a></li><?php
|
||||
} ?>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user