Merge pull request #6052 from rabuzarus/20181030_-_frio_fix_link_highlight
Frio - on mobiles the links in the thread will always have the link color (disabling thread hover effect)
This commit is contained in:
commit
f8ef92f84a
|
@ -1538,11 +1538,11 @@ aside .panel-body {
|
|||
}
|
||||
|
||||
/* Thread hover effects */
|
||||
.wall-item-container .wall-item-content a,
|
||||
.wall-item-container a,
|
||||
.wall-item-container .fakelink,
|
||||
.toplevel_item .fakelink,
|
||||
.toplevel_item .wall-item-container .wall-item-responses a {
|
||||
.desktop-view .wall-item-container .wall-item-content a,
|
||||
.desktop-view .wall-item-container a,
|
||||
.desktop-view .wall-item-container .fakelink,
|
||||
.desktop-view .toplevel_item .fakelink,
|
||||
.desktop-view .toplevel_item .wall-item-container .wall-item-responses a {
|
||||
color: #555;
|
||||
-webkit-transition: all 0.25s ease-in-out;
|
||||
-moz-transition: all 0.25s ease-in-out;
|
||||
|
|
|
@ -18,6 +18,12 @@ require_once 'view/theme/frio/php/frio_boot.php';
|
|||
if (!isset($minimal)) {
|
||||
$minimal = false;
|
||||
}
|
||||
|
||||
$basepath = $a->getURLPath() ? "/" . $a->getURLPath() . "/" : "/";
|
||||
$frio = "view/theme/frio";
|
||||
$view_mode_class = ($a->is_mobile || $a->is_tablet) ? 'mobile-view' : 'desktop-view';
|
||||
$is_singleuser = Config::get('system', 'singleuser');
|
||||
$is_singleuser_class = $is_singleuser ? "is-singleuser" : "is-not-singleuser";
|
||||
?>
|
||||
<html>
|
||||
<head>
|
||||
|
@ -26,9 +32,6 @@ if (!isset($minimal)) {
|
|||
<script type="text/javascript">var baseurl = "<?php echo System::baseUrl(); ?>";</script>
|
||||
<script type="text/javascript">var frio = "<?php echo 'view/theme/frio'; ?>";</script>
|
||||
<?php
|
||||
$basepath = $a->getURLPath() ? "/" . $a->getURLPath() . "/" : "/";
|
||||
$frio = "view/theme/frio";
|
||||
|
||||
// Because we use minimal for modals the header and the included js stuff should be only loaded
|
||||
// if the page is an standard page (so we don't have it twice for modals)
|
||||
//
|
||||
|
@ -52,18 +55,16 @@ if (!isset($minimal)) {
|
|||
} else {
|
||||
$nav_bg = PConfig::get($uid, 'frio', 'nav_bg');
|
||||
}
|
||||
|
||||
if (empty($nav_bg)) {
|
||||
$nav_bg = "#708fa0";
|
||||
}
|
||||
echo '
|
||||
<meta name="theme-color" content="' . $nav_bg . '" />';
|
||||
|
||||
$is_singleuser = Config::get('system','singleuser');
|
||||
$is_singleuser_class = $is_singleuser ? "is-singleuser" : "is-not-singleuser";
|
||||
echo '<meta name="theme-color" content="' . $nav_bg . '" />';
|
||||
?>
|
||||
</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) {
|
||||
|
|
Loading…
Reference in a new issue