diff options
Diffstat (limited to 'app/views/configure/display.phtml')
| -rw-r--r-- | app/views/configure/display.phtml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/app/views/configure/display.phtml b/app/views/configure/display.phtml index 1c415390a..adb305147 100644 --- a/app/views/configure/display.phtml +++ b/app/views/configure/display.phtml @@ -47,7 +47,7 @@ <div class="form-group"> <label class="group-name" for="theme"><?= _t('conf.display.theme') ?></label> <div class="group-controls"> - <ul class="slides"> + <ul class="theme-preview-list"> <?php $slides = count($this->themes); $i = 1; $themeAvailable = false; ?> <?php /** @var array{'id':string, 'deprecated':bool, 'author':string, 'name':string, 'description':string} $theme */ foreach($this->themes as $theme) { ?> @@ -59,8 +59,8 @@ } ?> <input type="radio" name="theme" id="img-<?= $i ?>" <?= $checked ?> value="<?= $theme['id'] ?>" data-leave-validation="<?= (FreshRSS_Context::$user_conf->theme === $theme['id']) ? 1 : 0 ?>" /> - <li class="slide-container"> - <div class="slide"> + <li class="preview-container"> + <div class="preview"> <img src="<?= Minz_Url::display('/themes/' . $theme['id'] . '/thumbs/original.png') ?>" loading="lazy" /> </div> <div class="nav"> @@ -91,8 +91,8 @@ <?php } ?> <?php if (!$themeAvailable) {?> <input type="radio" name="theme" checked="checked" value="Origine" data-leave-validation="0" /> - <li class="slide-container"> - <div class="slide"> + <li class="preview-container"> + <div class="preview"> </div> <div class="nav"> <label for="img-<?= $i - 1 ?>" class="prev">‹</label> |
