global.scss 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. $darkBlue: #3475c5;
  2. $ashen: #fefefe;
  3. $backColor: #eef3f6;
  4. $black: #000;
  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, #c1c1c1 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. background-color: #c1c1c1;
  32. border-radius: 2px;
  33. height: 4px;
  34. }
  35. .scroll-bar::-webkit-scrollbar-button:hover {
  36. background-color: #999999;
  37. }
  38. .scroll-bar-hide::-webkit-scrollbar {
  39. width: 1px;
  40. height: 0px;
  41. }
  42. .el-dialog__header,
  43. .el-dialog__body {
  44. margin: 0 !important;
  45. padding: 0 !important;
  46. }
  47. .table-text-textnowrap {
  48. white-space: nowrap;
  49. overflow: hidden;
  50. text-overflow: ellipsis;
  51. color: #075985;
  52. cursor: pointer;
  53. }