_cover.scss 685 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. ::-webkit-scrollbar {
  2. width: 6px;
  3. height: 6px;
  4. }
  5. ::-webkit-scrollbar-track-piece {
  6. background-color: transparent;
  7. }
  8. ::-webkit-scrollbar-thumb {
  9. border-radius: 6px;
  10. background-color: #99a9bf;
  11. }
  12. .el-message-box__message {
  13. word-wrap: break-word;
  14. }
  15. .el-range-separator {
  16. box-sizing: content-box;
  17. }
  18. .el-pagination__jump {
  19. margin-left: $spacing--xs;
  20. }
  21. .el-result {
  22. padding: $padding--2xl $padding--lg;
  23. }
  24. .el-drawer__body {
  25. display: flex;
  26. flex-direction: column;
  27. }
  28. .el-tree.inline-flex {
  29. display: inline-flex;
  30. flex-direction: column;
  31. min-width: 100%;
  32. }
  33. .el-tree.ellipsis {
  34. .el-tree-node__label {
  35. overflow: hidden;
  36. text-overflow: ellipsis;
  37. }
  38. }