@import '../variable.less';

.bixi-attachment {
  @inner-height: 24px;

  display: flex;
  justify-content: space-between;
  padding: 8px;
  background: #f7f9fd;
  border-radius: 4px;

  &-bordered {
    border: 1px solid #e9ecf2;
  }

  .bixi-attachment-left {
    display: flex;
    flex: 1;
    justify-content: space-between;
    height: @inner-height;
    overflow: hidden;
    line-height: @inner-height;
  }

  .bixi-attachment-icon {
    display: inline-block;
    margin-right: 8px;
    padding-top: 1px;
    font-size: 20px;
  }

  .bixi-attachment-name {
    display: inline-block;
    flex: 1;
    height: @inner-height;
    overflow: hidden;
    color: @bixi-primary-color;
    line-height: @inner-height;
    white-space: nowrap;
    text-overflow: ellipsis;

    span {
      cursor: pointer;
    }
  }

  .bixi-attachment-right {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: @inner-height;
    font-size: 14px;
    line-height: @inner-height;
    cursor: pointer;
  }
}
