@import "./dark-blue-var.scss";

.dark-blue {

  $table-cell-font-color: #313233;

  // 表头背景颜色 包括组合表头 已经当表头有空白列表头
  .el-table th {
    background-color: $th-cell-background !important;
  }

  .el-table__header-wrapper {
    background-color: $th-cell-background;
  }

  // .el-table th.el-table__cell {
  //   background-color: $th-cell-background;
  // }

  // .el-table thead.is-group th.el-table__cell {
  //   background-color: $th-cell-background;
  // }

  .el-table .el-table__cell {
    color: $table-cell-font-color;
    padding: 0;
  }

  // 表头字体样式
  .el-table th.el-table__cell>.cell {
    // color: $table-cell-font-color;  不能在这里设置，不然会覆盖header-cell-style事件 传递的样式
    font-family: Source Han Sans CN;
    font-weight: medium;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0px;
    // text-align: left;
  }

  // 表格内容颜色
  .el-table .cell {
    font-family: Source Han Sans CN;
    font-weight: regular;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0px;
    // text-align: left;

  }

  .el-button--text {
    color: $--color-primary;
    font-family: Source Han Sans CN;
    font-weight: regular;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0px;
    text-align: center;
  }
}