loulijun2021
2022-09-07 ef9633e0d1689fd8869170f3aa0af6c90c2e5e7f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/*全局样式表*/
html, body, #app {
  height: 100%;
  margin: 0;
  padding: 0;
  /*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: 100%;
  background-color: #eaecef;
  margin: 0;
  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;
}
 
 
/*
定义滚动条高宽及背景
高宽分别对应横竖滚动条的尺寸
*/
::-webkit-scrollbar {
  width: 7px;
  height: 7px;
  /*background-color: white;*/
  background-color: #f8f8fa;
}
 
::-webkit-scrollbar-thumb {
  /*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;
}
 
/*解决表格固定列时的压样式问题*/
.el-table__fixed {
  height: calc(100% - 7px) !important;
}
 
.el-table__fixed-right {
  height: calc(100% - 12px) !important;
}
 
.el-table__fixed-right::before,
.el-table__fixed::before {
  /*background-color: unset !important;*/
  background-color: #f8f8fa !important;
}
 
/*scrollbar END*/