From 4906474b50f1d42e2f62be2625af2a55303df6d3 Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Wed, 14 Jan 2026 16:24:01 +0800
Subject: [PATCH] feat:通用列表页弹窗样式调整
---
applications/drone-command/src/styles/common/cockpit.scss | 72 +++++++++++++++++++++++++++++++++++-
1 files changed, 70 insertions(+), 2 deletions(-)
diff --git a/applications/drone-command/src/styles/common/cockpit.scss b/applications/drone-command/src/styles/common/cockpit.scss
index 8ad2072..556d460 100644
--- a/applications/drone-command/src/styles/common/cockpit.scss
+++ b/applications/drone-command/src/styles/common/cockpit.scss
@@ -968,11 +968,30 @@
.el-form-item__content {
display: flex;
align-items: center;
+
+ .el-input {
+ width: 0;
+ flex: 1;
+ }
+
+ .el-textarea {
+
+ .el-textarea__inner {
+ color: #fff;
+ background: #2E2E48 !important;
+ border: none;
+ box-shadow: none;
+ }
+ }
}
.el-input {
.el-input__wrapper {
- background: #2E2E48;
+ background: #2E2E48 !important;
+
+ .el-input__inner {
+ color: #ffffff;
+ }
}
}
}
@@ -993,4 +1012,53 @@
}
}
}
-}
\ No newline at end of file
+}
+
+.ztzf-page-view-message-box {
+ background: #1A1A2A;
+ border-radius: 6px;
+ border: 1px solid #2E2E46;
+
+ .el-message-box__header {
+ .el-message-box__title {
+ font-family: Source Han Sans CN, Source Han Sans CN;
+ font-weight: bold;
+ font-size: 18px;
+ color: #FFFFFF;
+ line-height: 22px;
+ text-align: left;
+ font-style: normal;
+ text-transform: none;
+ }
+ }
+
+ .el-message-box__content {
+ color: #D4D5D7;
+ }
+
+ .el-message-box__btns {
+ display: flex;
+ justify-content: center;
+
+ .el-button {
+ margin-left: 16px;
+ width: 96px;
+ height: 36px;
+
+ &:first-child {
+ margin-left: 0;
+ }
+ }
+ }
+}
+
+.ztzf-message-box-confirm {
+ background: #284FE3 !important;
+ border-color: #284FE3 !important;
+}
+
+.ztzf-message-box-cancel {
+ background: #2B2B4C !important;
+ border-color: #2B2B4C !important;
+ color: #FFFFFF !important;
+}
--
Gitblit v1.9.3