@mixin text-overflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: break-all;
  width: 100%;
}

.uiless-member-user-item {
  display: flex;
  flex: 1;
  overflow: hidden;
  .at-text-avatar {
    width: 32px !important;
    height: 32px !important;
    margin: 4px 8px 4px 0;
  }
  &-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    flex: 1;
  }
  &-tag {
    display: flex;
    flex-shrink: 0;
    align-items: center;
  }
  &-name {
    color: $gray-08;
    font-size: 14px;
    line-height: 20px;
    @include text-overflow;
  }
  &-email {
    color: $gray-06;
    font-size: 12px;
    line-height: 20px;
    @include text-overflow;
  }
}
.uiless-member-team-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  &-icon {
    color: $border-brand;
  }
  &-right {
    color: $gray-06;
  }
  &-info {
    flex: 1;
    padding-left: 8px;
    color: $gray-08;
    font-size: 14px;
    line-height: 20px;
    span {
      color: $gray-06;
    }
  }
}
.uiless-member-role-item {
  display: flex;
  align-items: center;
  height: 100%;
  color: $gray-08;
  font-size: 14px;
}
