Frio - add desktop or mobile view class to the html body
This commit is contained in:
parent
2f28c2ebbf
commit
ec9f22de92
|
@ -18,6 +18,8 @@ require_once 'view/theme/frio/php/frio_boot.php';
|
||||||
if (!isset($minimal)) {
|
if (!isset($minimal)) {
|
||||||
$minimal = false;
|
$minimal = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$view_mode_class = ($a->is_mobile || $a->is_tablet) ? 'mobile-view' : 'desktop-view';
|
||||||
?>
|
?>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
|
@ -63,7 +65,7 @@ if (!isset($minimal)) {
|
||||||
?>
|
?>
|
||||||
</head>
|
</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>
|
<a href="#content" class="sr-only sr-only-focusable">Skip to main content</a>
|
||||||
<?php
|
<?php
|
||||||
if (x($page, 'nav') && !$minimal) {
|
if (x($page, 'nav') && !$minimal) {
|
||||||
|
|
Loading…
Reference in a new issue