diff options
| author | 2022-10-03 18:04:10 +0200 | |
|---|---|---|
| committer | 2022-10-03 18:04:10 +0200 | |
| commit | 46d0b4140ebc3365618b23b01c094b0860baed9d (patch) | |
| tree | ee7e1d2e3a2fdf9e4932fc5de515f8a93ee20e53 /app/views/subscription/index.phtml | |
| parent | 117b9c115d3fb421820fbef44e39ac4328f3c7c1 (diff) | |
Improved: better semantic HTML for boxes (#4665)
* add h1 title on views
* add h2 titles into box-title
* thin scrollbar in box-content
Diffstat (limited to 'app/views/subscription/index.phtml')
| -rw-r--r-- | app/views/subscription/index.phtml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/views/subscription/index.phtml b/app/views/subscription/index.phtml index 71bf5b429..3368c5ab0 100644 --- a/app/views/subscription/index.phtml +++ b/app/views/subscription/index.phtml @@ -35,10 +35,10 @@ <div class="box"> <div class="box-title"> <a class="configure open-slider" href="<?= _url('subscription', 'category', 'id', $cat->id()) ?>" data-cat-position="<?= $cat->attributes('position') ?>"><?= _i('configure') ?></a> - <?= $cat->name() ?> + <h2><?= $cat->name() ?></h2> <?php if ($cat->kind() == FreshRSS_Category::KIND_DYNAMIC_OPML) { echo _i('opml-dyn'); } ?> </div> - <ul class="box-content drop-zone" dropzone="move" data-cat-id="<?= $cat->id() ?>"> + <ul class="box-content drop-zone scrollbar-thin" dropzone="move" data-cat-id="<?= $cat->id() ?>"> <?php if (!empty($feeds)) { foreach ($feeds as $feed) { @@ -82,7 +82,7 @@ <div class="box visible-semi"> <div class="box-title"> - ✚ <a href="<?= _url('subscription', 'add') ?>"><?= _t('sub.category.add') ?></a> + ✚ <a href="<?= _url('subscription', 'add') ?>"><h2><?= _t('sub.category.add') ?></h2></a> </div> <div class="box-content"> </div> |
