2025-11-03 14:28:49 +08:00

26 lines
596 B
Stylus

if (hexo-config('gitalk.enable')) {
.gt-header a, .gt-comments a, .gt-popup a {
border-bottom: 0;
}
.gt-container .gt-popup .gt-action.is--active::before {
top: .7em;
}
if (hexo-config('darkmode')) {
@media (prefers-color-scheme: dark) {
.gt-container .gt-header-textarea {
background-color: var(--card-bg-color) !important;
}
}
}
if (hexo-config('lightdark.enable')) {
+light-dark-block() {
.gt-container .gt-header-textarea {
background-color: light-dark(#f6f6f6, var(--card-bg-color-dark)) !important;
}
}
}
}