diff options
| author | 2021-08-20 14:07:14 +0200 | |
|---|---|---|
| committer | 2021-08-20 14:07:14 +0200 | |
| commit | f1e15cdd82e99342a58250f62535f4e2e05ba94a (patch) | |
| tree | d3cd74e0f6022e77e880b380e9ad06884cfce844 /app/views/subscription | |
| parent | 051cf5be10b7f28576f8a6b6af4921ded75c61b1 (diff) | |
Improve the link "back to RSS feeds": set a CSS class (#3761)
* templates
* improved CSS class names
Diffstat (limited to 'app/views/subscription')
| -rw-r--r-- | app/views/subscription/add.phtml | 4 | ||||
| -rw-r--r-- | app/views/subscription/bookmarklet.phtml | 4 | ||||
| -rw-r--r-- | app/views/subscription/index.phtml | 4 |
3 files changed, 9 insertions, 3 deletions
diff --git a/app/views/subscription/add.phtml b/app/views/subscription/add.phtml index 63272dccb..70b9267aa 100644 --- a/app/views/subscription/add.phtml +++ b/app/views/subscription/add.phtml @@ -1,7 +1,9 @@ <?php $this->partial('aside_subscription'); ?> <div class="post drop-section"> - <a href="<?= _url('index', 'index') ?>"><?= _t('gen.action.back_to_rss_feeds') ?></a> + <div class="link-back-wrapper"> + <a class="link-back" href="<?= _url('index', 'index') ?>"><?= _t('gen.action.back_to_rss_feeds') ?></a> + </div> <form action="<?= _url('category', 'create') ?>" method="post"> diff --git a/app/views/subscription/bookmarklet.phtml b/app/views/subscription/bookmarklet.phtml index 981304933..48ff44135 100644 --- a/app/views/subscription/bookmarklet.phtml +++ b/app/views/subscription/bookmarklet.phtml @@ -1,7 +1,9 @@ <?php $this->partial('aside_subscription'); ?> <div class="post"> - <a href="<?= _url('index', 'index') ?>"><?= _t('gen.action.back_to_rss_feeds') ?></a> + <div class="link-back-wrapper"> + <a class="link-back" href="<?= _url('index', 'index') ?>"><?= _t('gen.action.back_to_rss_feeds') ?></a> + </div> <h2><?= _t('sub.bookmarklet.title') ?></h2> <p><a class="btn btn-important" diff --git a/app/views/subscription/index.phtml b/app/views/subscription/index.phtml index 7b36a02c1..ff0684a9f 100644 --- a/app/views/subscription/index.phtml +++ b/app/views/subscription/index.phtml @@ -1,7 +1,9 @@ <?php $this->partial('aside_subscription'); ?> <div class="post drop-section"> - <a href="<?= _url('index', 'index') ?>"><?= _t('gen.action.back_to_rss_feeds') ?></a> + <div class="link-back-wrapper"> + <a class="link-back" href="<?= _url('index', 'index') ?>"><?= _t('gen.action.back_to_rss_feeds') ?></a> + </div> <h2><?= _t('sub.title') ?></h2> |
