loulijun2021
2022-09-07 ef9633e0d1689fd8869170f3aa0af6c90c2e5e7f
src/styles/global.css
@@ -18,9 +18,33 @@
  display: flex;
  flex-direction: column;
  height: 100%;
  /*background-color: #eee;*/
  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 {
@@ -33,9 +57,32 @@
.elTableDiv {
  display: flex;
  border: 1px solid #eee;
  width: 99%;
  margin: 0 auto;
  /*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;
}
/*
定义滚动条高宽及背景
@@ -44,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;
@@ -66,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*/