From ef9633e0d1689fd8869170f3aa0af6c90c2e5e7f Mon Sep 17 00:00:00 2001
From: loulijun2021 <1694218219@qq.com>
Date: 星期三, 07 九月 2022 16:18:24 +0800
Subject: [PATCH] 1.优化项目2.搜索栏多行的变为一行可展开

---
 src/styles/global.css |   29 +++++++++++++++++++++++------
 1 files changed, 23 insertions(+), 6 deletions(-)

diff --git a/src/styles/global.css b/src/styles/global.css
index 11a632a..76b28fc 100644
--- a/src/styles/global.css
+++ b/src/styles/global.css
@@ -24,7 +24,7 @@
 }
 
 /*澶撮儴鎸夐挳缁勬牱寮�*/
-.bodyTopButtonGroup{
+.bodyTopButtonGroup {
   /*padding-left: 10px;*/
   display: flex;
   background-color: #f8f8fa;
@@ -34,9 +34,17 @@
 }
 
 /*澶撮儴琛ㄥ崟缁勬牱寮�*/
-.bodyTopFormGroup{
+.bodyTopFormGroup {
   background-color: #f8f8fa;
   padding: 10px;
+}
+
+.bodyTopFormExpand {
+  display: flex;
+  justify-content: center;
+  align-items: center;
+  background-color: #eee;
+  cursor: pointer;
 }
 
 .elForm {
@@ -69,6 +77,11 @@
   justify-content: end;
 }
 
+.ellipsis {
+  text-overflow: ellipsis;
+  overflow: hidden;
+  white-space: nowrap;
+}
 
 
 /*
@@ -78,12 +91,15 @@
 ::-webkit-scrollbar {
   width: 7px;
   height: 7px;
-  background-color: white;
+  /*background-color: white;*/
+  background-color: #f8f8fa;
 }
 
 ::-webkit-scrollbar-thumb {
-  box-shadow: inset 0 0 0px white;
-  -webkit-box-shadow: inset 0 0 0px white;
+  /*box-shadow: inset 0 0 0px white;*/
+  box-shadow: inset 0 0 0px #f8f8fa;
+  /*-webkit-box-shadow: inset 0 0 0px white;*/
+  -webkit-box-shadow: inset 0 0 0px #f8f8fa;
   background-color: rgb(193, 193, 193);
   /*婊氬姩鏉$殑鑳屾櫙棰滆壊*/
   border-radius: 20px;
@@ -100,7 +116,8 @@
 
 .el-table__fixed-right::before,
 .el-table__fixed::before {
-  background-color: unset !important;
+  /*background-color: unset !important;*/
+  background-color: #f8f8fa !important;
 }
 
 /*scrollbar END*/

--
Gitblit v1.9.3