@import '../variable.less';

@bixi-key-value-close-icon-width: 12px;
@bixi-key-value-default-color: #6a90dd;

.bixi-key-value {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  height: 20px;
  font-size: 12px;
  border: 1px solid @bixi-key-value-default-color;
  border-radius: 4px;

  .bixi-key-value-inner {
    display: flex;
  }

  .bixi-key-value-item {
    display: inline-block;
    height: 100%;
    padding: 0 12px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    border-radius: 2px 0 0 2px;
  }

  .bixi-key-value-label {
    max-width: 120px;
    color: #fff;
    border-right: 1px solid @bixi-key-value-default-color;
  }

  .bixi-key-value-value {
    max-width: 220px;
  }

  .bixi-key-value-close-icon {
    position: absolute;
    top: -(@bixi-key-value-close-icon-width / 2);
    right: -(@bixi-key-value-close-icon-width / 2);
    width: @bixi-key-value-close-icon-width;
    height: @bixi-key-value-close-icon-width;
    color: #324558;
    line-height: @bixi-key-value-close-icon-width;
    text-align: center;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
  }
}
