chore(release): polish 3.2.0 changes\n\n- Docs: add 3.2.0 release notes to CHANGELOG\n- UI: silence debug logs in production via import.meta.env.DEV\n- CSS: replace pseudo-element Tailwind @apply with explicit selectors to fix minifier warnings
This commit is contained in:
@@ -26,13 +26,29 @@ html.dark {
|
||||
}
|
||||
|
||||
/* 滚动条样式(避免在伪元素中使用自定义 dark 变体,消除构建警告) */
|
||||
::-webkit-scrollbar { width: 0.375rem; height: 0.375rem; }
|
||||
::-webkit-scrollbar-track { background-color: #f4f4f5; }
|
||||
html.dark ::-webkit-scrollbar-track { background-color: #27272a; }
|
||||
::-webkit-scrollbar-thumb { background-color: #d4d4d8; border-radius: 0.25rem; }
|
||||
html.dark ::-webkit-scrollbar-thumb { background-color: #52525b; }
|
||||
::-webkit-scrollbar-thumb:hover { background-color: #a1a1aa; }
|
||||
html.dark ::-webkit-scrollbar-thumb:hover { background-color: #71717a; }
|
||||
::-webkit-scrollbar {
|
||||
width: 0.375rem;
|
||||
height: 0.375rem;
|
||||
}
|
||||
::-webkit-scrollbar-track {
|
||||
background-color: #f4f4f5;
|
||||
}
|
||||
html.dark ::-webkit-scrollbar-track {
|
||||
background-color: #27272a;
|
||||
}
|
||||
::-webkit-scrollbar-thumb {
|
||||
background-color: #d4d4d8;
|
||||
border-radius: 0.25rem;
|
||||
}
|
||||
html.dark ::-webkit-scrollbar-thumb {
|
||||
background-color: #52525b;
|
||||
}
|
||||
::-webkit-scrollbar-thumb:hover {
|
||||
background-color: #a1a1aa;
|
||||
}
|
||||
html.dark ::-webkit-scrollbar-thumb:hover {
|
||||
background-color: #71717a;
|
||||
}
|
||||
|
||||
/* 焦点样式 */
|
||||
*:focus-visible {
|
||||
|
||||
Reference in New Issue
Block a user