]> git.mxchange.org Git - friendica.git/commitdiff
Frio - add desktop or mobile view class to the html body
authorrabuzarus <rabuzarus@t-online.de>
Wed, 31 Oct 2018 09:07:51 +0000 (10:07 +0100)
committerrabuzarus <rabuzarus@t-online.de>
Wed, 31 Oct 2018 09:07:51 +0000 (10:07 +0100)
view/theme/frio/php/default.php

index aa86c9723880c8b383c26e2d5ebd091105c65b6b..148f60c23acbc2111d68fa411b52b73fc32c8fc7 100644 (file)
@@ -18,6 +18,8 @@ require_once 'view/theme/frio/php/frio_boot.php';
 if (!isset($minimal)) {
        $minimal = false;
 }
+
+$view_mode_class = ($a->is_mobile || $a->is_tablet) ? 'mobile-view' : 'desktop-view';
 ?>
 <html>
        <head>
@@ -63,7 +65,7 @@ if (!isset($minimal)) {
 ?>
        </head>
 
-       <body id="top" class="mod-<?php echo $a->module." ".$is_singleuser_class;?>">
+       <body id="top" class="mod-<?php echo $a->module . " " . $is_singleuser_class . " " . $view_mode_class;?>">
                <a href="#content" class="sr-only sr-only-focusable">Skip to main content</a>
 <?php
        if (x($page, 'nav') && !$minimal) {