12345678910111213141516171819202122232425262728293031323334 |
- .dataItem {
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: space-between;
- height: 32px;
- padding-right: 8px;
- padding-left: 8px;
- margin-bottom: 4px;
- font-weight: 400;
- color: #666;
- background-color: #f1f1f1;
- border-radius: 4px;
- align-items: center;
- font-size: 12px;
- .targetingName {
- max-width: 80%;
- flex: 1;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- margin-bottom: 0;
- }
- .edit,
- .close {
- cursor: pointer;
- color: #1890ff;
- }
- .close {
- color: #ff0000;
- }
- }
|