global.scss 914 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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, .el-dialog__body{
  43. margin: 0 !important;
  44. padding: 0 !important;
  45. }