DownloadList.less 782 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. @import "~assets/less/variable";
  2. .downloadList {
  3. min-width: 200px;
  4. max-height: 360px;
  5. overflow-y: auto;
  6. .item {
  7. display: flex;
  8. align-items: center;
  9. height: 40px;
  10. border-bottom: 1px solid @border-color-base;
  11. &:last-child {
  12. border-bottom: 0;
  13. }
  14. i {
  15. margin-right: 8px;
  16. }
  17. p {
  18. flex: 1;
  19. font-size: 1.08em;
  20. color: @disabled-text-color;
  21. .ellipsis;
  22. &.success {
  23. color: @text-color;
  24. font-weight: bold;
  25. text-decoration: underline;
  26. cursor: pointer;
  27. }
  28. &.downloaded {
  29. text-decoration: underline;
  30. cursor: pointer;
  31. }
  32. }
  33. :global(.ant-tag) {
  34. flex-shrink: 0;
  35. margin-left: 8px;
  36. }
  37. }
  38. }
  39. .badge {
  40. pointer-events: none
  41. }