custom.scss 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. // 自定义table-header
  2. .el-table .el-table__row td {
  3. color: #7e8bab;
  4. border-bottom: 1px solid #f4f4f4;
  5. }
  6. .el-table .el-table__header tr th:first-child {
  7. border-radius: 10px 0px 0px 10px;
  8. }
  9. .el-table .el-table__header tr th:nth-last-child(2) {
  10. border-radius: 0px 10px 10px 0px;
  11. }
  12. .el-table .el-table__header tr th {
  13. background: #f1f6ff;
  14. color: #13171e;
  15. border-bottom: 0px;
  16. }
  17. // 搜索button
  18. .long-btn {
  19. width: 240px;
  20. }
  21. .export-btn {
  22. background: #185da6;
  23. &:hover {
  24. background: #185da6;
  25. opacity: 0.8;
  26. }
  27. }
  28. // 不允许复制
  29. .nocopy {
  30. user-select: none !important;
  31. }
  32. // 修改默认滚动条
  33. // ::-webkit-scrollbar {
  34. // width: 6px;
  35. // height: 6px;
  36. // background: transparent;
  37. // }
  38. // ::-webkit-scrollbar-thumb {
  39. // background: transparent;
  40. // border-radius: 4px;
  41. // }
  42. // :hover::-webkit-scrollbar-thumb {
  43. // background: hsla(0, 0%, 53%, 0.4);
  44. // }
  45. // :hover::-webkit-scrollbar-track {
  46. // background: hsla(0, 0%, 53%, 0.1);
  47. // }
  48. // 卡片背景
  49. .bg-box {
  50. padding: 13px;
  51. width: 100%;
  52. .bg-card {
  53. padding: 20px;
  54. background: #fff;
  55. border-radius: 5px;
  56. overflow-x: hidden;
  57. }
  58. .mb20 {
  59. margin-bottom: 20px;
  60. }
  61. .bg185DA6 {
  62. background: #185DA6;
  63. }
  64. .text-right {
  65. text-align: right;
  66. }
  67. .text-center {
  68. text-align: center;
  69. }
  70. .link {
  71. text-decoration: underline;
  72. color: #FF786F;
  73. }
  74. .c_FF786F {
  75. color: #FF786F;
  76. }
  77. }