@@ -260,7 +260,7 @@ const downloadPlugin = async (plugin) => {
.export-header {
width: 100%;
height: 40px;
- border-bottom: 1px solid #eee;
+ border-bottom: 1px solid var(--color-border-light);
text-align: right;
}
.key-item {
From 6d105e0f56f513206fb43eb9f739607825311bbc Mon Sep 17 00:00:00 2001
From: lumozx <969671691@qq.com>
Date: Fri, 20 Oct 2023 11:01:21 +0800
Subject: [PATCH 3/5] =?UTF-8?q?fix:=20drawer=E4=B8=8Emodel=E6=9A=97?=
=?UTF-8?q?=E9=BB=91=E9=80=82=E9=85=8D?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
feature/src/views/settings/database.vue | 40 ++++++++++++++++++++++++-
1 file changed, 39 insertions(+), 1 deletion(-)
diff --git a/feature/src/views/settings/database.vue b/feature/src/views/settings/database.vue
index 3eacaea8..ff6d6085 100644
--- a/feature/src/views/settings/database.vue
+++ b/feature/src/views/settings/database.vue
@@ -57,6 +57,7 @@
:closable="false"
:title="currentSelect.plugin.pluginName"
placement="right"
+ class="exportDrawer"
>
@@ -270,4 +277,35 @@ const downloadPlugin = async (plugin) => {
color: var(--ant-primary-color);
}
}
+.exportDrawer{
+ .ant-drawer-header{
+ background-color: var(--color-body-bg);
+ border-bottom: 1px solid var(--color-border-light);
+ .ant-drawer-title{
+ color: var(--color-text-primary);
+ }
+ }
+ .ant-drawer-body{
+ background-color: var(--color-body-bg);
+ color: var(--color-text-content)
+ }
+}
+.webdavModel{
+ .ant-modal-close-x{
+ color: var(--color-text-content);
+ }
+ .ant-modal-header{
+ background-color: var(--color-body-bg);
+ border-bottom: 1px solid var(--color-border-light);
+ .ant-modal-title{
+ color: var(--color-text-primary);
+ }
+ }
+ .ant-form-item-label>label {
+ color: var(--color-text-content);
+ }
+ .ant-modal-body{
+ background-color: var(--color-body-bg)
+ }
+}
\ No newline at end of file
From 88e4e325f3c16a68a323021eee7e6aeceb623f19 Mon Sep 17 00:00:00 2001
From: lumozx <969671691@qq.com>
Date: Fri, 20 Oct 2023 12:09:46 +0800
Subject: [PATCH 4/5] =?UTF-8?q?fix:=20=E9=80=89=E6=8B=A9=E5=99=A8=E5=92=8C?=
=?UTF-8?q?=E8=BE=93=E5=85=A5=E6=A1=86=E9=80=82=E9=85=8D=E6=9A=97=E9=BB=91?=
=?UTF-8?q?=E6=A8=A1=E5=BC=8F?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
feature/src/assets/ant-reset.less | 4 ++++
feature/src/views/settings/database.vue | 13 +++++++++++--
feature/src/views/settings/index.vue | 7 +++++++
3 files changed, 22 insertions(+), 2 deletions(-)
diff --git a/feature/src/assets/ant-reset.less b/feature/src/assets/ant-reset.less
index a7ff3d9a..19b4db9e 100644
--- a/feature/src/assets/ant-reset.less
+++ b/feature/src/assets/ant-reset.less
@@ -15,6 +15,8 @@
--color-input-hover: #fff;
// 边框
--color-border-light: #f0f0f0;
+ // 输入框附带icon
+ --color-action-color: rgba(0, 0, 0, 0.25);;
}
.dark {
@@ -29,4 +31,6 @@
--color-input-hover: #444d;
// 边框
--color-border-light: #444d;
+ // 输入框附带icon
+ --color-action-color: #ffffff4d;
}
diff --git a/feature/src/views/settings/database.vue b/feature/src/views/settings/database.vue
index ff6d6085..c978be46 100644
--- a/feature/src/views/settings/database.vue
+++ b/feature/src/views/settings/database.vue
@@ -304,8 +304,17 @@ const downloadPlugin = async (plugin) => {
.ant-form-item-label>label {
color: var(--color-text-content);
}
- .ant-modal-body{
- background-color: var(--color-body-bg)
+ .ant-modal-body {
+ background-color: var(--color-body-bg);
+ .ant-input,
+ .ant-input-password,
+ .ant-select-selector {
+ background: var(--color-input-hover) !important;
+ color: var(--color-text-content);
+ }
+ .ant-input-password-icon, .ant-select-arrow {
+ color: var(--color-action-color);
+ }
}
}
\ No newline at end of file
diff --git a/feature/src/views/settings/index.vue b/feature/src/views/settings/index.vue
index 0d36292b..6c5a826b 100644
--- a/feature/src/views/settings/index.vue
+++ b/feature/src/views/settings/index.vue
@@ -512,6 +512,13 @@ const changeLanguage = (value) => {
background: var(--color-list-hover);
}
}
+ .ant-select-selector {
+ background: var(--color-input-hover) !important;
+ color: var(--color-text-content);
+ }
+ .ant-input-password-icon, .ant-select-arrow {
+ color: var(--color-action-color);
+ }
}
}
}
From d8fabc6b4c3e644e34c593f6c68249aaa845355b Mon Sep 17 00:00:00 2001
From: lumozx <969671691@qq.com>
Date: Fri, 20 Oct 2023 12:12:10 +0800
Subject: [PATCH 5/5] =?UTF-8?q?fix:=20=E6=9A=97=E9=BB=91=E6=A8=A1=E5=BC=8F?=
=?UTF-8?q?=E4=B8=8B=EF=BC=8C=E7=82=B9=E5=87=BB=E5=88=B7=E6=96=B0=E6=8F=92?=
=?UTF-8?q?=E4=BB=B6=EF=BC=8C=E6=8F=92=E4=BB=B6=E5=90=8D=E7=A7=B0=E8=BE=93?=
=?UTF-8?q?=E5=85=A5=E6=A1=86=E6=9A=97=E9=BB=91=E6=A8=A1=E5=BC=8F=E5=A4=B1?=
=?UTF-8?q?=E6=95=88=E7=9A=84=E9=97=AE=E9=A2=98?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
feature/src/views/dev/index.vue | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/feature/src/views/dev/index.vue b/feature/src/views/dev/index.vue
index 3b88fd58..374e4042 100644
--- a/feature/src/views/dev/index.vue
+++ b/feature/src/views/dev/index.vue
@@ -103,7 +103,7 @@ const wrapperCol = { span: 14 };
color: var(--color-text-content);
}
:deep(.ant-input) {
- background: var(--color-input-hover);
+ background: var(--color-input-hover) !important;
color: var(--color-text-content);
}
}