!1 调整Lists 区域标题在dark模式下的字体颜色,使其和欢迎语颜色一致,增加下载队列切换展开按钮在dark下的hover效果

Merge pull request !1 from zeqi/Erotica
This commit is contained in:
2026-06-10 12:44:34 +00:00
committed by Gitee
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -30,7 +30,7 @@
</button> </button>
<button <button
type="button" type="button"
class="inline-flex h-9 w-9 items-center justify-center rounded-full border border-slate-200/70 text-slate-500 transition hover:text-slate-900 dark:border-slate-700 dark:text-slate-400" class="inline-flex h-9 w-9 items-center justify-center rounded-full border border-slate-200/70 text-slate-500 transition hover:text-slate-900 dark:border-slate-700 dark:text-slate-400 dark:hover:bg-slate-800 dark:hover:text-white"
@click.stop="toggleExpand" @click.stop="toggleExpand"
> >
<i <i
+1 -1
View File
@@ -115,7 +115,7 @@
<div v-if="lists.length > 0" class="space-y-6 mt-6"> <div v-if="lists.length > 0" class="space-y-6 mt-6">
<section v-for="section in lists" :key="section.title"> <section v-for="section in lists" :key="section.title">
<div class="flex items-center justify-between"> <div class="flex items-center justify-between">
<h3 class="text-lg font-semibold text-slate-900"> <h3 class="text-lg font-semibold text-slate-900 dark:text-slate-200">
{{ section.title }} {{ section.title }}
</h3> </h3>
</div> </div>