From 7f8dd744f26157edf3d228003dddef30de5cfe0b Mon Sep 17 00:00:00 2001 From: jxxghp Date: Tue, 1 Jul 2025 12:39:44 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E8=A1=A8=E6=A0=BC=E5=92=8C?= =?UTF-8?q?=E8=BE=93=E5=85=A5=E6=A1=86=E7=9A=84=E8=83=8C=E6=99=AF=E9=A2=9C?= =?UTF-8?q?=E8=89=B2=E4=BB=A5=E9=80=82=E5=BA=94=E9=80=8F=E6=98=8E=E4=B8=BB?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/styles/custom.scss | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/src/styles/custom.scss b/src/styles/custom.scss index 1dcf205b..77024f67 100644 --- a/src/styles/custom.scss +++ b/src/styles/custom.scss @@ -356,7 +356,11 @@ html.v-overlay-scroll-blocked { // 表格 .v-table { border-radius: 0; - background-color: rgba(var(--v-theme-surface), 0.3); + background-color: rgba(var(--v-theme-surface), 0); + + .v-table__wrapper > table > thead { + background-color: rgba(var(--v-theme-surface), 0.3); + } } // 页脚 @@ -396,11 +400,17 @@ html.v-overlay-scroll-blocked { .v-skeleton-loader { background-color: rgba(var(--v-theme-surface), 0.3); } + + // 输入框和搜索框 + .v-field { + background-color: rgba(var(--v-theme-surface), 0); + } + } // 透明主题下的弹出窗口样式 html[data-theme="transparent"] { - .v-overlay__content { + .v-overlay__content { border-radius: 12px !important; backdrop-filter: blur(10px) !important; @@ -414,8 +424,8 @@ html[data-theme="transparent"] { background-color: rgb(var(--v-theme-surface), 0.5) !important; } - .v-table thead { - background-color: rgb(var(--v-theme-surface), 0.5) !important; + .v-table__wrapper table thead { + background-color: rgba(var(--v-theme-surface), 0.3); } } }