fix(ui): update halo image version and enhance header styles with animations

这个提交包含在:
rohow
2026-01-28 15:56:25 +08:00
未验证
父节点 244a7fa1a7
当前提交 9fa32cdd5a
修改 3 个文件,包含 91 行新增4 行删除
+4 -2
查看文件
@@ -51,6 +51,7 @@
<a
class="text-gray-600 hover:text-blue-600"
th:href="${menuItem.status.href}"
th:target="${menuItem.spec.target?.value}"
th:text="${menuItem.status.displayName + (not #lists.isEmpty(menuItem.children) ? '▾' : '')}"
></a>
<ul
@@ -61,8 +62,9 @@
<li th:each="childMenuItem : ${menuItem.children}">
<a
class="text-gray-600 hover:text-blue-600"
th:href="${childMenuItem.status.href} "
th:text="${childMenuItem.status.displayName} "
th:href="${childMenuItem.status.href}"
th:target="${childMenuItem.spec.target?.value}"
th:text="${childMenuItem.status.displayName}"
></a>
</li>
</ul>