This commit is contained in:
j m 2024-05-17 08:49:17 +08:00
parent d427f2ab5b
commit 0fa9ba562a
5 changed files with 9 additions and 4 deletions

View File

@ -4299,6 +4299,10 @@ button.swiper-pagination-bullet {
.container {
.column-left.top-sticky, .column-right.top-sticky {
top: 1rem;
&.fixed {
top: 4rem !important;
}
}
}
}

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,7 @@
<aside xmlns:th="https://www.thymeleaf.org"
th:fragment="widget (position)"
th:class="'column column-side column-' + ${position} + ' ' + ${position == 'left'?theme.config.basic_style.left_sidebar_sticky:theme.config.basic_style.right_sidebar_sticky} + '-sticky'">
th:class="'column column-side column-' + ${position} + ' ' + ${position == 'left'?theme.config.basic_style.left_sidebar_sticky:theme.config.basic_style.right_sidebar_sticky} + '-sticky'"
th:classappend="${theme.config.basic_info.header_fixed}? 'fixed'">
<th:block th:each="sidebar :${theme.config.sidebar.sidebar_show}">
<th:block th:if="${sidebar.position == position}">
<th:block th:replace="~{${'/widget/' + sidebar.type} :: widget ( sidebar = ${sidebar})}" />

View File

@ -30,7 +30,7 @@ spec:
settingName: theme-dream2-plus-setting
configMapName: theme-dream2-plus-configMap
# 版本号
version: 1.2.2.000000000025
version: 1.2.2.000000000026
# 最低支持的 Halo 版本
require: ">=2.12.0"
# 许可

View File

@ -1 +1 @@
1.2.2
1.2.1