更新
This commit is contained in:
parent
0c509a16c6
commit
fc2694300e
File diff suppressed because one or more lines are too long
@ -533,6 +533,13 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
.current {
|
||||
a {
|
||||
color: var(--theme);
|
||||
font-weight: 500;
|
||||
font-size: 15px;
|
||||
}
|
||||
}
|
||||
.slides {
|
||||
display: none;
|
||||
border-left: 1px solid var(--classC);
|
||||
@ -540,6 +547,11 @@
|
||||
.link {
|
||||
color: var(--routine);
|
||||
}
|
||||
.current {
|
||||
color: var(--theme);
|
||||
font-weight: 500;
|
||||
font-size: 15px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -396,6 +396,7 @@ document.addEventListener('DOMContentLoaded', () => {
|
||||
|
||||
/* 移动端侧边栏菜单手风琴 */
|
||||
{
|
||||
$('.joe_header__slideout-menu .current').parents('.panel-body').show().siblings('.panel').addClass('in')
|
||||
$('.joe_header__slideout-menu .panel').on('click', function () {
|
||||
const panelBox = $(this).parent().parent()
|
||||
/* 清除全部内容 */
|
||||
|
@ -3,7 +3,7 @@
|
||||
/* 获取主题当前版本号 */
|
||||
function _getVersion()
|
||||
{
|
||||
return "5.0.3";
|
||||
return "5.0.4";
|
||||
};
|
||||
|
||||
/* 判断是否是手机 */
|
||||
|
@ -304,11 +304,11 @@
|
||||
<?php $children = $category->getAllChildren($category->mid); ?>
|
||||
<?php if (empty($children)) : ?>
|
||||
<li>
|
||||
<a class="link" href="<?php $category->permalink(); ?>" title="<?php $category->name(); ?>"><?php $category->name(); ?></a>
|
||||
<a class="link <?php echo $this->is('category', $category->slug) ? 'current' : '' ?>" href="<?php $category->permalink(); ?>" title="<?php $category->name(); ?>"><?php $category->name(); ?></a>
|
||||
</li>
|
||||
<?php else : ?>
|
||||
<li>
|
||||
<div class="link panel">
|
||||
<div class="link panel <?php echo $this->is('category', $category->slug) ? 'current' : '' ?>">
|
||||
<a href="<?php $category->permalink(); ?>" title="<?php $category->name(); ?>"><?php $category->name(); ?></a>
|
||||
<svg class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" width="13" height="13">
|
||||
<path d="M624.86499999 512.247l-292.15499999-292.159c-12.28-12.27-12.28-32.186 0-44.457 12.27-12.28 32.186-12.28 44.457 0l314.388 314.388c12.28 12.27 12.28 32.186 0 44.457l-314.388 314.387c-6.136 6.14-14.183 9.211-22.228 9.211s-16.092-3.071-22.228-9.211c-12.28-12.27-12.28-32.186 0-44.457l292.155-292.16z" p-id="1742"></path>
|
||||
@ -318,7 +318,7 @@
|
||||
<?php foreach ($children as $mid) : ?>
|
||||
<?php $child = $category->getCategory($mid); ?>
|
||||
<li>
|
||||
<a class="link" href="<?php echo $child['permalink'] ?>" title="<?php echo $child['name']; ?>"><?php echo $child['name']; ?></a>
|
||||
<a class="link <?php echo $this->is('category', $child['slug']) ? 'current' : '' ?>" href="<?php echo $child['permalink'] ?>" title="<?php echo $child['name']; ?>"><?php echo $child['name']; ?></a>
|
||||
</li>
|
||||
<?php endforeach; ?>
|
||||
</ul>
|
||||
@ -339,7 +339,7 @@
|
||||
<ul class="slides panel-body">
|
||||
<?php foreach ($pages->stack as $item) : ?>
|
||||
<li>
|
||||
<a class="link" href="<?php echo $item['permalink'] ?>" title="<?php echo $item['title'] ?>"><?php echo $item['title'] ?></a>
|
||||
<a class="link <?php echo $this->is('page', $item['slug']) ? 'current' : '' ?>" href="<?php echo $item['permalink'] ?>" title="<?php echo $item['title'] ?>"><?php echo $item['title'] ?></a>
|
||||
</li>
|
||||
<?php endforeach; ?>
|
||||
</ul>
|
||||
|
@ -64,7 +64,7 @@
|
||||
<!-- 全局公用CSS(静态资源放在了CDN上,如果你的服务器带宽不够,请不要修改成本地,cdn采用jsdelivr放心不会失效) -->
|
||||
<link rel="stylesheet" href="<?php $this->options->themeUrl('assets/css/joe.mode.css'); ?>">
|
||||
<link rel="stylesheet" href="<?php $this->options->themeUrl('assets/css/joe.normalize.css'); ?>">
|
||||
<link rel="stylesheet" href="<?php $this->options->themeUrl('assets/css/joe.global.css?v=214'); ?>">
|
||||
<link rel="stylesheet" href="<?php $this->options->themeUrl('assets/css/joe.global.css?v=216'); ?>">
|
||||
<link rel="stylesheet" href="<?php $this->options->themeUrl('assets/css/joe.responsive.css?v=214'); ?>">
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/HaoOuBa/Joe@master/plugin/qmsg/qmsg.css" />
|
||||
<link rel="stylesheet" href="https://apip.weatherdt.com/standard/static/css/weather-standard.css">
|
||||
@ -78,7 +78,7 @@
|
||||
<script src="https://cdn.jsdelivr.net/gh/HaoOuBa/Joe@master/plugin/sketchpad/joe.sketchpad.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/@fancyapps/fancybox@3.5.7/dist/jquery.fancybox.min.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/gh/HaoOuBa/Joe@master/plugin/qmsg/qmsg.js"></script>
|
||||
<script src="<?php $this->options->themeUrl('assets/js/joe.global.js?v=215'); ?>"></script>
|
||||
<script src="<?php $this->options->themeUrl('assets/js/joe.global.js?v=216'); ?>"></script>
|
||||
<!-- 异步加载的JS -->
|
||||
<script async src="https://apip.weatherdt.com/standard/static/js/weather-standard.js?v=2.0"></script>
|
||||
<script async src="https://cdn.jsdelivr.net/gh/HaoOuBa/Joe@master/plugin/smooth/joe.smooth.js"></script>
|
||||
|
Loading…
Reference in New Issue
Block a user