aboutsummaryrefslogtreecommitdiff
path: root/app/layout
diff options
context:
space:
mode:
authorGravatar Kevin Papst <kpapst@gmx.net> 2018-01-24 19:37:24 +0100
committerGravatar Kevin Papst <kpapst@gmx.net> 2018-01-24 19:37:24 +0100
commit047fa17aeb65dfb6b551bf73e610057e8d78142c (patch)
treeb57f33bdfcdfb88b51849a365fd15f4d5e5d8168 /app/layout
parentdfc638dd9856e5507e482583c4e7339fcd2bb915 (diff)
fixed css classes for reading mode buttons #1714
Diffstat (limited to 'app/layout')
-rw-r--r--app/layout/nav_menu.phtml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/layout/nav_menu.phtml b/app/layout/nav_menu.phtml
index 7632b944c..e9128d44a 100644
--- a/app/layout/nav_menu.phtml
+++ b/app/layout/nav_menu.phtml
@@ -138,7 +138,7 @@
/** @var FreshRSS_ReadingMode $mode */
foreach ($readingModes as $mode) {
?>
- <a class="view_normal btn <?php if ($mode->isActive()) { echo 'active'; } ?>" title="<?php echo $mode->getTitle(); ?>" href="<?php echo Minz_Url::display($mode->getUrlParams()); ?>">
+ <a class="<?php echo $mode->getId(); ?> btn <?php if ($mode->isActive()) { echo 'active'; } ?>" title="<?php echo $mode->getTitle(); ?>" href="<?php echo Minz_Url::display($mode->getUrlParams()); ?>">
<?php echo $mode->getName(); ?>
</a>
<?php