398c903297a9d26ff3527233a95d27540dbe2c28.svn-base 1003 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. @import "../index";
  2. @avatar-list-prefix-cls: ~"@{ant-pro-prefix}-avatar-list";
  3. @avatar-list-item-prefix-cls: ~"@{ant-pro-prefix}-avatar-list-item";
  4. .@{avatar-list-prefix-cls} {
  5. display: inline-block;
  6. ul {
  7. list-style: none;
  8. display: inline-block;
  9. padding: 0;
  10. margin: 0 0 0 8px;
  11. font-size: 0;
  12. }
  13. }
  14. .@{avatar-list-item-prefix-cls} {
  15. display: inline-block;
  16. font-size: @font-size-base;
  17. margin-left: -8px;
  18. width: @avatar-size-base;
  19. height: @avatar-size-base;
  20. :global {
  21. .ant-avatar {
  22. border: 1px solid #fff;
  23. cursor: pointer;
  24. }
  25. }
  26. &.large {
  27. width: @avatar-size-lg;
  28. height: @avatar-size-lg;
  29. }
  30. &.small {
  31. width: @avatar-size-sm;
  32. height: @avatar-size-sm;
  33. }
  34. &.mini {
  35. width: 20px;
  36. height: 20px;
  37. :global {
  38. .ant-avatar {
  39. width: 20px;
  40. height: 20px;
  41. line-height: 20px;
  42. .ant-avatar-string {
  43. font-size: 12px;
  44. line-height: 18px;
  45. }
  46. }
  47. }
  48. }
  49. }