picture-list.less 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. @import "../ms-admin/4.7.0/less/app.less";
  2. .ms-admin-picture-list {
  3. background: #fff;
  4. .ms-margin-padding(12px, 14px);
  5. display: flex;
  6. flex-wrap: wrap;
  7. //单个素材
  8. .ms-admin-picture-item {
  9. .ms-margin-padding(0 24px 0 0, 10px 10px 0 10px);
  10. width: 230px;
  11. display: flex;
  12. flex-direction: column;
  13. border: 1px solid #e6e6e6;
  14. border-radius: 4px;
  15. .body {
  16. display: flex;
  17. flex-direction: column;
  18. line-height: 2em;
  19. div {
  20. margin-top: 0.5em;
  21. display: flex;
  22. align-items: center;
  23. span {
  24. .ms-ellipsis;
  25. }
  26. }
  27. img {
  28. .ms-width-height(100%, 110px);
  29. object-fit: cover;
  30. }
  31. }
  32. .footer {
  33. display: flex;
  34. padding: 14px 0;
  35. i {
  36. color: @contentColor;
  37. margin: auto;
  38. cursor: pointer;
  39. }
  40. em {
  41. .ms-width-height(1px, 1em);
  42. background: #e6e6e6;
  43. }
  44. }
  45. }
  46. }