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/configure | |
| 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/configure')
| -rw-r--r-- | app/views/configure/archiving.phtml | 6 | ||||
| -rw-r--r-- | app/views/configure/display.phtml | 6 | ||||
| -rw-r--r-- | app/views/configure/integration.phtml | 4 | ||||
| -rw-r--r-- | app/views/configure/queries.phtml | 4 | ||||
| -rw-r--r-- | app/views/configure/reading.phtml | 4 | ||||
| -rw-r--r-- | app/views/configure/shortcut.phtml | 4 | ||||
| -rw-r--r-- | app/views/configure/system.phtml | 4 |
7 files changed, 23 insertions, 9 deletions
diff --git a/app/views/configure/archiving.phtml b/app/views/configure/archiving.phtml index 3cc014b15..9d091abf6 100644 --- a/app/views/configure/archiving.phtml +++ b/app/views/configure/archiving.phtml @@ -1,8 +1,10 @@ <?php $this->partial('aside_configure'); ?> <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> + <form method="post" action="<?= _url('configure', 'archiving') ?>"> <input type="hidden" name="_csrf" value="<?= FreshRSS_Auth::csrfToken() ?>" /> <legend><?= _t('conf.archiving') ?></legend> diff --git a/app/views/configure/display.phtml b/app/views/configure/display.phtml index 8e2105333..9ed5d9465 100644 --- a/app/views/configure/display.phtml +++ b/app/views/configure/display.phtml @@ -1,8 +1,10 @@ <?php $this->partial('aside_configure'); ?> <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> + <form method="post" action="<?= _url('configure', 'display') ?>"> <input type="hidden" name="_csrf" value="<?= FreshRSS_Auth::csrfToken() ?>" /> <legend><?= _t('conf.display') ?></legend> diff --git a/app/views/configure/integration.phtml b/app/views/configure/integration.phtml index c6deea5c2..278265aed 100644 --- a/app/views/configure/integration.phtml +++ b/app/views/configure/integration.phtml @@ -1,7 +1,9 @@ <?php $this->partial('aside_configure'); ?> <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> <form method="post" action="<?= _url('configure', 'integration') ?>" data-simple='<div class="form-group" id="group-share-##key##"><label class="group-name">##label##</label><div class="group-controls"><div class="stick"> diff --git a/app/views/configure/queries.phtml b/app/views/configure/queries.phtml index 9c13eeb0e..6402d63fb 100644 --- a/app/views/configure/queries.phtml +++ b/app/views/configure/queries.phtml @@ -1,7 +1,9 @@ <?php $this->partial('aside_configure'); ?> <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> <form method="post" action="<?= _url('configure', 'queries') ?>" class="draggableList"> <input type="hidden" name="_csrf" value="<?= FreshRSS_Auth::csrfToken() ?>" /> diff --git a/app/views/configure/reading.phtml b/app/views/configure/reading.phtml index 199bd5ab6..c73866486 100644 --- a/app/views/configure/reading.phtml +++ b/app/views/configure/reading.phtml @@ -1,7 +1,9 @@ <?php $this->partial('aside_configure'); ?> <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> <form method="post" action="<?= _url('configure', 'reading') ?>"> <input type="hidden" name="_csrf" value="<?= FreshRSS_Auth::csrfToken() ?>" /> diff --git a/app/views/configure/shortcut.phtml b/app/views/configure/shortcut.phtml index 1bc3f775b..49b7fd6ee 100644 --- a/app/views/configure/shortcut.phtml +++ b/app/views/configure/shortcut.phtml @@ -1,7 +1,9 @@ <?php $this->partial('aside_configure'); ?> <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> <datalist id="keys"> <?php foreach ($this->list_keys as $key) { ?> diff --git a/app/views/configure/system.phtml b/app/views/configure/system.phtml index f185fb1d3..d3ead87a8 100644 --- a/app/views/configure/system.phtml +++ b/app/views/configure/system.phtml @@ -1,7 +1,9 @@ <?php $this->partial('aside_configure'); ?> <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> <form method="post" action="<?= _url('configure', 'system') ?>"> <input type="hidden" name="_csrf" value="<?= FreshRSS_Auth::csrfToken() ?>" /> |
