From 5eeb8864bebb1dc4f97f2feef32b742d8a9a10d5 Mon Sep 17 00:00:00 2001
From: loulijun2021 <1694218219@qq.com>
Date: 星期三, 14 九月 2022 15:43:04 +0800
Subject: [PATCH] 1.新增报表管理菜单
---
src/styles/global.css | 84 ++++++++++++++++++++++++++++++++++++++----
1 files changed, 76 insertions(+), 8 deletions(-)
diff --git a/src/styles/global.css b/src/styles/global.css
index 84c6dc0..76b28fc 100644
--- a/src/styles/global.css
+++ b/src/styles/global.css
@@ -3,21 +3,85 @@
height: 100%;
margin: 0;
padding: 0;
- min-width: 1800px;
+ /*min-width: 1800px;*/
/*overflow-y: hidden;*/
/*overflow-x: hidden;*/
+
+ -moz-osx-font-smoothing: grayscale;
+ -webkit-font-smoothing: antialiased;
+ text-rendering: optimizeLegibility;
+ font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif;
}
.body {
display: flex;
flex-direction: column;
- height: 800px;
- background-color: #eee;
+ height: 100%;
+ background-color: #eaecef;
margin: 0;
- padding: 30px 10px 0 20px;
+ padding: 0 10px;
}
+/*澶撮儴鎸夐挳缁勬牱寮�*/
+.bodyTopButtonGroup {
+ /*padding-left: 10px;*/
+ display: flex;
+ background-color: #f8f8fa;
+ margin-top: 10px;
+ padding: 5px 10px;
+ border-bottom: 3px solid #eee;
+}
+
+/*澶撮儴琛ㄥ崟缁勬牱寮�*/
+.bodyTopFormGroup {
+ background-color: #f8f8fa;
+ padding: 10px;
+}
+
+.bodyTopFormExpand {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ background-color: #eee;
+ cursor: pointer;
+}
+
+.elForm {
+ display: flex;
+ justify-content: flex-start;
+ width: 100%;
+ flex-wrap: wrap;
+}
+
+.elTableDiv {
+ display: flex;
+ border: 1px solid #eee;
+ /*width: 99%;*/
+ width: 100%;
+ margin: 10px auto;
+ /*margin-top: 20px;*/
+}
+
+.operationClass {
+ height: 23px;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+}
+
+
+/*瀵硅瘽妗嗘寜閽簳閮�*/
+.footerButton {
+ display: flex;
+ justify-content: end;
+}
+
+.ellipsis {
+ text-overflow: ellipsis;
+ overflow: hidden;
+ white-space: nowrap;
+}
/*
@@ -27,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;
@@ -49,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