Newer
Older
operation_web / src / assets / css / common.css
* {
  padding: 0;
  margin: 0;
  list-style: none;
  text-decoration: none;
}
a {
  text-decoration: none;
}
.h-100 {
  height: 100%;
}
/* //图标位置 */
.iconfont[class^="icon"] {
  display: inline-block;
  font-size: 8px;
}

/* // 计划任务和规则列表中的添加数据表头样式 */

.formJcDoc {
  position: relative;
  font-size: 20px;
  color: var(--white);
  padding: 16px 0px 16px 38px;
  border-bottom: 1px solid var(--white);
  margin-bottom: 10px;
  text-align: left;
}

.formJcDoc::before {
  content: "";
  position: absolute;
  left: 22px;
  top: calc(50% - 7px);
  width: 4px;
  height: 14px;
  border-radius: 5px;
  background-color: #1890ff;
}

.aboutType {
  color: rgb(102, 177, 255);
}

.aboutType span {
  cursor: pointer;
}

hr {
  opacity: 0.3;
}

/*滚动条样式*/
::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 3px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 5px;
}

::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 5px;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: aqua;
}

::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.1);
}
/****级联样式重置****/
.form-cascader {
  background-color: #3c3939 !important;
  border: 1px solid rgb(4, 51, 52) !important;
}
.form-cascader .el-cascader-panel .el-radio {
  display: none;
}
.form-cascader .el-cascader-panel .el-radio__input {
  visibility: hidden;
}
.form-cascader .el-cascader-menu {
  color: #fff !important;
  border-right-color: #474f5f;
}
.form-cascader .el-cascader-node {
  padding-left: 10px;
}
.form-cascader .el-cascader-menu__list {
  border: none !important;
}
.form-cascader .el-scrollbar__bar.is-vertical {
  width: 3px;
}
.form-cascader .el-scrollbar__thumb {
  background-color: aqua;
}
/****日期样式重置****/
.el-date-table th {
  border-bottom-color: #606266;
}
.el-picker-panel__icon-btn {
  color: #fff;
}
.el-textarea .el-input__count {
  background: transparent;
}
/****页面通用样式****/
.flex {
  display: flex;
}
.flex-1 {
  flex: 1;
}
.flex-d {
  flex-direction: column;
}
.table-p {
  font-size: 13px;
  text-align: center;
  line-height: 18px;
}
.table-p-cursor {
  color: #409eff;
  cursor: pointer;
}
.table-status {
  color: #409eff;
}
.table-status.red {
  color: #e52027;
}
.table-status.yellow {
  color: #f19c33;
}
.noData {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}
.page-data {
  display: flex;
  flex-direction: column;
}
.page-data .page-filter {
  text-align: left;
}
.page-data .page-content,
.el-dialog__body .page-content {
  flex: 1;
  overflow: hidden;
}
.page-data .page-content .page-table {
  height: 100%;
}
.page-data .page-content .page-table .red {
  color: red;
}
.page-data-dialog .el-dialog {
  display: flex;
  flex-direction: column;
  height: 60%;
  max-height: 60%;
  margin-top: 10vh !important;
}
.page-data-dialog .el-dialog__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px;
  padding-bottom: 0 !important;
  overflow-y: auto;
}
.page-data-dialog .el-pagination__sizes,
.page-data-dialog .el-pagination__jump {
  display: none !important;
}