From 5f85f550ccd7cf75f582a732bde9a2d44200c2e5 Mon Sep 17 00:00:00 2001
From: guoshilong <123456>
Date: Tue, 21 Feb 2023 10:44:19 +0800
Subject: [PATCH] 洪水淹没-打开面板时清空关联站和起点距
---
widgets/FloodAnalysis/css/style.css | 35 ++++++++++++++++++++++++++++++-----
1 files changed, 30 insertions(+), 5 deletions(-)
diff --git a/widgets/FloodAnalysis/css/style.css b/widgets/FloodAnalysis/css/style.css
index e8ee8c5..32f9d9b 100644
--- a/widgets/FloodAnalysis/css/style.css
+++ b/widgets/FloodAnalysis/css/style.css
@@ -149,7 +149,7 @@
.sw-input{
width: 201px;
height: 26px;
- margin-left: 9px !important;
+ margin-left: 1px !important;
border: 1px solid rgba(160, 160, 156, 1);
}
@@ -188,7 +188,7 @@
/**历史表格**/
.history-box-list{
/*margin-left: 1%;*/
- height: calc(100% - 117px);
+ height: calc(100% - 86px);
top:3px;
overflow-y: auto;
background-color: #fff;
@@ -298,8 +298,23 @@
}
/**洪水淹没分析表格**/
-#analysis-tab1-grid .dgrid-cell {
+#analysis-tab1-grid .dgrid-cell_200 {
+ width: 160px; /* force all columns to have SOME width */
+ text-align: left;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+}
+#analysis-tab1-grid .dgrid-cell_80 {
width: 80px; /* force all columns to have SOME width */
+ text-align: center;
+}
+#analysis-tab1-grid .dgrid-cell_60 {
+ width: 60px; /* force all columns to have SOME width */
+ text-align: center;
+}
+#analysis-tab1-grid .dgrid-cell_40 {
+ width: 40px; /* force all columns to have SOME width */
text-align: center;
}
#analysis-tab1-grid .field-col1 {
@@ -364,15 +379,16 @@
/**分析窗口**/
.evaluate-analysis{
- width: 840px;
+ width: 465px;
+ height: 808px;
position: fixed;
top: 10%;
right: 0%;
background: white;
- height: 628px;
margin: 15px;
border-radius: 4px;
border: 1px solid white;
+ z-index: 100;
}
.evaluate-title{
@@ -385,6 +401,14 @@
color: white;
}
+.evaluate-back-icon{
+ background-image: url("../images/fold_up.png");
+ width: 35px;
+ height: 100%;
+ position: relative;
+ left: 88%;
+}
+
.evaluate-lable{
width: 70px;
position: absolute;
@@ -393,6 +417,7 @@
.evaluate-box-top{
height: 30%;
+ width: 450px;
}
.evaluate-box-middle{
--
Gitblit v1.9.3