feat: 首页门面 Feed 密度与侧栏分组

对齐 SPA 信息密度:头像/摘要/互动、高级搜索收起、浏览/板块分区。

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-08-30 05:55:45 +08:00
parent e0683ef262
commit 6e7b46a2e9
10 changed files with 415 additions and 75 deletions

View File

@@ -27,9 +27,15 @@ document.documentElement.dataset.j13Ssr = "1";
} catch (e) {}
var btn = document.getElementById("j13-theme-toggle");
if (btn) {
btn.textContent = LABELS[pref] || LABELS.system;
btn.setAttribute("aria-label", "主题:" + (LABELS[pref] || ""));
btn.title = "当前:" + (LABELS[pref] || "") + "(点击切换)";
var label = btn.querySelector(".j13-theme-toggle__label");
var text = LABELS[pref] || LABELS.system;
if (label) {
label.textContent = text;
} else {
btn.textContent = text;
}
btn.setAttribute("aria-label", "主题:" + text);
btn.title = "当前:" + text + "(点击切换)";
}
}