From 89380e6260a75d1d3b94de687ebcc2f50d50659d Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Tue, 03 Feb 2026 15:44:33 +0800
Subject: [PATCH] feat:环境变量配置调整
---
applications/drone-command/src/styles/common/cockpit.scss | 78 ++++++++++++++++++++++++++------------
1 files changed, 53 insertions(+), 25 deletions(-)
diff --git a/applications/drone-command/src/styles/common/cockpit.scss b/applications/drone-command/src/styles/common/cockpit.scss
index 61579d7..be0e93d 100644
--- a/applications/drone-command/src/styles/common/cockpit.scss
+++ b/applications/drone-command/src/styles/common/cockpit.scss
@@ -76,25 +76,12 @@
color: #c3c3dd;
}
- .el-tree-node__expand-icon {
- order: 3;
- margin-left: auto;
- }
-
- .el-tree-node__expand-icon.is-leaf {
- visibility: hidden;
- }
-
.el-checkbox {
order: 1;
}
.el-tree-node__label {
order: 2;
- }
-
- .el-tree-node__expand-icon:not(.is-leaf)~.el-checkbox {
- display: none;
}
.el-tree-node__content:hover,
@@ -111,14 +98,42 @@
color: #ffffff;
}
- .el-checkbox__input.is-checked .el-checkbox__inner {
- background-color: #023aff;
- border-color: #023aff;
+ .el-checkbox__input {
+ .el-checkbox__inner {
+ width: 16px;
+ height: 16px;
+ background: transparent !important;
+ border-radius: 2px 2px 2px 2px;
+ border: 2px solid #A1A3D4 !important;
+ box-shadow: none;
+ box-sizing: border-box;
+ }
+
+ &.is-checked {
+ .el-checkbox__inner {
+ border: none !important;
+ background: url("@/assets/images/common/checkbox.png") no-repeat center / 100% 100% !important;
+
+ &::after {
+ content: none !important;
+ }
+ }
+ }
+ }
+}
+
+.map-layer-tree {
+ .el-tree-node__expand-icon:not(.is-leaf)~.el-checkbox {
+ display: none !important;
}
- .el-checkbox__inner {
- background-color: transparent;
- border-color: #a1a3d4;
+ .el-tree-node__expand-icon {
+ order: 3;
+ margin-left: auto;
+ }
+
+ .el-tree-node__expand-icon.is-leaf {
+ visibility: hidden;
}
}
@@ -561,6 +576,10 @@
}
}
+ .el-select__wrapper.is-disabled .el-select__selected-item {
+ color: #a8abb2;
+ }
+
.el-select {
--el-select-border-color-hover: rgb(0, 162, 255) !important;
}
@@ -575,6 +594,15 @@
.el-input__wrapper {
--el-input-text-color: #161B2C !important;
+ }
+
+ .el-select__selection.is-near {
+ margin-left: 0;
+
+ .el-tag {
+ color: #ffffff;
+ background: #161B2C;
+ }
}
}
@@ -1288,7 +1316,7 @@
align-items: center;
.label {
- width: 88px;
+ min-width: 88px;
font-family: Source Han Sans CN, Source Han Sans CN;
font-weight: 500;
font-size: 14px;
@@ -1496,7 +1524,7 @@
.el-tabs__item {
position: relative;
margin-left: 26px;
-
+
font-family: Source Code Pro, Source Code Pro;
font-weight: 400;
font-size: 14px;
@@ -1505,16 +1533,16 @@
font-style: normal;
text-transform: none;
cursor: pointer;
-
+
&:first-child {
margin-left: 0;
}
-
+
&.is-active {
font-weight: normal;
color: #FFFFFF;
}
-
+
&::after {
content: '';
position: absolute;
@@ -1523,7 +1551,7 @@
width: 100%;
height: 0;
}
-
+
&.is-active::after {
height: 3px;
background: #284FE3;
--
Gitblit v1.9.3