index.less 645 B

12345678910111213141516171819202122232425262728293031323334
  1. .dataItem {
  2. width: 100%;
  3. display: flex;
  4. align-items: center;
  5. justify-content: space-between;
  6. height: 32px;
  7. padding-right: 8px;
  8. padding-left: 8px;
  9. margin-bottom: 4px;
  10. font-weight: 400;
  11. color: #666;
  12. background-color: #f1f1f1;
  13. border-radius: 4px;
  14. align-items: center;
  15. font-size: 12px;
  16. .targetingName {
  17. max-width: 80%;
  18. flex: 1;
  19. overflow: hidden;
  20. white-space: nowrap;
  21. text-overflow: ellipsis;
  22. margin-bottom: 0;
  23. }
  24. .edit,
  25. .close {
  26. cursor: pointer;
  27. color: #1890ff;
  28. }
  29. .close {
  30. color: #ff0000;
  31. }
  32. }