global.scss 1004 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. $darkBlue: #3475c5;
  2. $ashen: #fefefe;
  3. $backColor: #eef3f6;
  4. $black: #606266;
  5. $fontBlack: #333;
  6. $fontGray: #999;
  7. $modena: #6f4afe;
  8. .text-gray {
  9. color: $fontGray;
  10. }
  11. .text-black {
  12. color: $fontBlack;
  13. }
  14. .back-dark {
  15. background-color: $darkBlue;
  16. }
  17. // 设置滚动条样式
  18. .scroll-bar::-webkit-scrollbar {
  19. width: 4px;
  20. height: 10px;
  21. }
  22. .scroll-bar::-webkit-scrollbar-thumb {
  23. background: linear-gradient(to bottom right, #DDDEE0 0%, #c1c1c1 100%);
  24. border-radius: 5px;
  25. }
  26. .scroll-bar::-webkit-scrollbar-track {
  27. background-color: none;
  28. border: 1px solid none;
  29. }
  30. .scroll-bar::-webkit-scrollbar-button {
  31. height: 0px;
  32. }
  33. .scroll-bar::-webkit-scrollbar-button:hover {
  34. background-color: #999999;
  35. }
  36. .scroll-bar-hide::-webkit-scrollbar {
  37. width: 1px;
  38. height: 0px;
  39. }
  40. .el-dialog__header,
  41. .el-dialog__body {
  42. margin: 0 !important;
  43. padding: 0 !important;
  44. }
  45. .table-text-textnowrap {
  46. white-space: nowrap;
  47. overflow: hidden;
  48. text-overflow: ellipsis;
  49. color: #075985;
  50. cursor: pointer;
  51. }