Add files via upload

This commit is contained in:
2025-07-17 19:30:11 +08:00
committed by GitHub
parent 933ecef974
commit 4834fbb3fe
5 changed files with 732 additions and 347 deletions

View File

@@ -401,3 +401,37 @@ hr { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 0; }
font-size: 9px;
font-weight: normal;
}
/* 左侧容器:垂直布局 */
.header-left-panel {
display: flex; /* 弹性布局 */
flex-direction: column; /* 垂直排列 */
align-items: flex-start;/* 左对齐 */
gap: 10px; /* 内部元素间距 */
}
/* 翰林院入口容器 (简化无背景) */
.rag-palace-entry-container {
width: auto; /* 自适应宽度 */
}
/* 翰林院按钮 - 与内阁密室一致 */
#amily2_open_rag_palace {
/* 完全复用内阁密室的样式 */
background: none !important;
border: none !important;
box-shadow: none !important;
padding: 0;
font-size: 14px;
color: var(--SmartThemeBodyColor);
}
/* 确保所有可切换面板表现一致 */
#rag_palace_panel {
display: none;
}
.amily2-panel-visible {
display: flex;
flex-direction: column;
flex-grow: 1;
}