doum
2026-06-17 ea689dd91eaa72425dc01759042c3b4eb2186512
admin/src/assets/style/style.scss
@@ -41,7 +41,21 @@
    // overflow: hidden;
  }
}
.primaryColor{
  color: $primary-color;
}
.orange{
  color: #e89e42;
}
.green{
  color: #75a236;
}
.gary{
  color: #aaaaaa;
}
.cu{
  cursor: pointer;
}
.bg {
  z-index: 9990 !important;
}
@@ -240,7 +254,7 @@
  margin-bottom: 20px;
}
.red{
  color: red !important;
  color: #f56c6c !important;
}
.green{
  color: #00BA67;
@@ -334,3 +348,51 @@
.tac{
  text-align: center;
}
/* 删除按钮统一样式 */
$btn-delete-color: #f56c6c;
$btn-delete-hover: #f78989;
$btn-delete-bg: #fef0f0;
$btn-delete-border: #fbc4c4;
.el-button.btn-delete,
.el-button--text.btn-delete {
  color: $btn-delete-color !important;
  &:hover,
  &:focus {
    color: $btn-delete-hover !important;
  }
}
.el-button--text:has(.el-icon-delete) {
  color: $btn-delete-color;
  &:hover,
  &:focus {
    color: $btn-delete-hover;
  }
}
.el-button:not(.el-button--text):not(.el-button--primary):not(.el-button--success):not(.el-button--warning):not(.el-button--info):not(.el-button--danger):not(.is-disabled):has(.el-icon-delete) {
  color: $btn-delete-color;
  border-color: $btn-delete-border;
  background-color: $btn-delete-bg;
  &:hover,
  &:focus {
    color: #fff;
    background-color: $btn-delete-color;
    border-color: $btn-delete-color;
  }
}
span.btn-delete,
.cu.btn-delete {
  color: $btn-delete-color !important;
  cursor: pointer;
  &:hover {
    color: $btn-delete-hover !important;
  }
}