c18ddc3ddc
Remove line breaks and indentation around links text: At least Chrome/Firefox on Windows add the white space(s) from the HTML Code to the link text, which results in "jumping" labels. The behaviour can be observed with the Hello Theme while toggling the bookmark status.
20 lines
827 B
PHP
20 lines
827 B
PHP
<li class="hide-mobile">
|
|
<?php if ($item['bookmark']): ?>
|
|
<a
|
|
id="bookmark-<?= $item['id'] ?>"
|
|
href="?action=bookmark&value=0&id=<?= $item['id'] ?>&menu=<?= $menu ?>&offset=<?= $offset ?>&source=<?= $source ?>"
|
|
data-action="bookmark"
|
|
data-item-id="<?= $item['id'] ?>"
|
|
data-reverse-label="<?= t('bookmark') ?>"
|
|
><?= t('remove bookmark') ?></a>
|
|
<?php else: ?>
|
|
<a
|
|
id="bookmark-<?= $item['id'] ?>"
|
|
class="item-bookmark"
|
|
href="?action=bookmark&value=1&id=<?= $item['id'] ?>&menu=<?= $menu ?>&offset=<?= $offset ?>&source=<?= $source ?>"
|
|
data-action="bookmark"
|
|
data-item-id="<?= $item['id'] ?>"
|
|
data-reverse-label="<?= t('remove bookmark') ?>"
|
|
><?= t('bookmark') ?></a>
|
|
<?php endif ?>
|
|
</li>
|