Bump version to 2.5.0 and update story outline

This commit is contained in:
RT15548
2026-02-16 17:29:20 +08:00
parent 3ea3a62cad
commit ac93a38a6f
2 changed files with 40 additions and 13 deletions

View File

@@ -6,7 +6,7 @@
"js": "index.js", "js": "index.js",
"css": "style.css", "css": "style.css",
"author": "biex", "author": "biex",
"version": "2.4.0", "version": "2.5.0",
"homePage": "https://github.com/RT15548/LittleWhiteBox", "homePage": "https://github.com/RT15548/LittleWhiteBox",
"generate_interceptor": "xiaobaixGenerateInterceptor" "generate_interceptor": "xiaobaixGenerateInterceptor"
} }

View File

@@ -96,6 +96,31 @@
--shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.8), 0 10px 10px -5px rgba(0, 0, 0, 0.6) --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.8), 0 10px 10px -5px rgba(0, 0, 0, 0.6)
} }
/* === 滚动条样式 === */
::-webkit-scrollbar {
width: 8px;
height: 8px
}
::-webkit-scrollbar-track {
background: var(--bg2)
}
::-webkit-scrollbar-thumb {
background: var(--bd);
border-radius: 4px
}
::-webkit-scrollbar-thumb:hover {
background: var(--c3)
}
/* Firefox scrollbar */
* {
scrollbar-width: thin;
scrollbar-color: var(--bd) var(--bg2)
}
[data-theme="dark"] .side-glass { [data-theme="dark"] .side-glass {
background: rgba(24, 24, 27, 0.7); background: rgba(24, 24, 27, 0.7);
backdrop-filter: blur(12px); backdrop-filter: blur(12px);
@@ -1448,11 +1473,12 @@
} }
.mob-pop.act { .mob-pop.act {
display: flex display: flex;
min-height: 1em
} }
.pop-hd { .pop-hd {
padding: 12px; padding: .3em;
cursor: grab; cursor: grab;
touch-action: none; touch-action: none;
flex-shrink: 0 flex-shrink: 0
@@ -2205,6 +2231,16 @@
transition: transform .3s transition: transform .3s
} }
/* 默认(亮色):显示月亮,隐藏太阳 */
.theme-toggle i.fa-sun {
display: none
}
.theme-toggle i.fa-moon {
display: inline
}
/* 暗色主题:显示太阳,隐藏月亮 */
[data-theme="dark"] .theme-toggle i.fa-moon { [data-theme="dark"] .theme-toggle i.fa-moon {
display: none display: none
} }
@@ -2213,14 +2249,6 @@
display: inline display: inline
} }
:root .theme-toggle i.fa-sun {
display: none
}
:root .theme-toggle i.fa-moon {
display: inline
}
[data-theme="dark"] .adv-var-item code { [data-theme="dark"] .adv-var-item code {
background: rgba(255, 255, 255, 0.1); background: rgba(255, 255, 255, 0.1);
border-color: rgba(255, 255, 255, 0.1) border-color: rgba(255, 255, 255, 0.1)
@@ -2320,7 +2348,6 @@
left: 48px left: 48px
} }
} }
</style> </style>
</head> </head>