costAudit.scss 1001 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. // 内容容器样式
  2. .content-container {
  3. padding: $base-padding; // 使用基础内边距变量
  4. }
  5. // 操作栏样式
  6. .operation-bar {
  7. margin-bottom: $base-margin; // 使用基础外边距变量
  8. }
  9. // 禁用状态的按钮样式(使用v-deep穿透组件样式隔离)
  10. ::v-deep .el-button.is-disabled {
  11. background-color: #f9f9f9 !important; // 禁用状态的背景色
  12. border-color: #f3f3f4 !important; // 禁用状态的边框颜色
  13. color: #cccccc !important; // 禁用状态的文字颜色
  14. }
  15. ::v-deep .el-button {
  16. font-size: 14px;
  17. }
  18. // 删除按钮样式
  19. .delete-btn {
  20. color: #fe6654; // 使用基础红色变量 $base-color-red
  21. }
  22. .table-description {
  23. color: #fe6654;
  24. }
  25. .mt20 {
  26. margin-top: 20px;
  27. }
  28. .ml20 {
  29. margin-left: 20px;
  30. }
  31. .mb20 {
  32. margin-bottom: 20px;
  33. }
  34. .mr20 {
  35. margin-right: 20px;
  36. }
  37. .dialog-footer {
  38. text-align: right;
  39. }
  40. .link-text {
  41. color: $base-color-default;
  42. cursor: pointer;
  43. }
  44. .disabled-text {
  45. color: #ccc !important;
  46. }
  47. .info-text {
  48. color: #333;
  49. }