update at 2025-10-09 14:46:24

This commit is contained in:
douboer
2025-10-09 14:46:24 +08:00
parent cab675abcc
commit 52110c6024
14 changed files with 180 additions and 62 deletions

View File

@@ -604,12 +604,38 @@ label:hover { color: var(--c-primary); }
border-color: var(--c-primary);
}
.xhs-page-number {
.xhs-page-indicator {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 14px;
min-width: 50px;
text-align: center;
color: #202124;
font-weight: 500;
color: #202124;
}
.xhs-page-number-input {
width: 56px;
padding: 4px 6px;
text-align: center;
border: 1px solid var(--c-border);
border-radius: 6px;
background: white;
color: inherit;
font: inherit;
box-shadow: inset 0 1px 2px rgba(0,0,0,0.08);
transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.xhs-page-number-input:focus {
outline: none;
border-color: var(--c-primary);
box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.15);
}
.xhs-page-number-total {
font-size: 14px;
color: #5f6368;
user-select: none;
}
.xhs-bottom-toolbar {