@import '../../../lib/commonStyles/colors.scss';

$width: 41px;

.overflowEllipsis {
  width: 100%;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.button {
  box-sizing: border-box;
  padding: 2px;
  width: $width;
  height: $width;
}

.buttonDisabled {
  circle {
    fill: $lightgray;
    stroke: $gray;
  }
  path {
    fill: $primary-color-highlight-solid;
  }
  g {
    cursor: default;

    &:hover {
      circle {
        stroke: $gray;
      }
    }
  }
}

.menuItem {
  width: 124px;
  height: 32px;
  .itemIconLeft {
    margin-right: 12px;
    > svg {
      height: 10px;
      width: 9px;
    }
    > svg >path {
      fill: rgb(156, 161, 167);
    }
  }
  .itemText {
    color: rgb(33, 33, 33);
    letter-spacing: 0px;
    line-height: 22px;
    margin-right: 19px;
    font {
      size: 15px;
      weight: normal;
    }
  }
  .backIcon {
    > i {
      font-size: 10px;
      color: #9e9e9e;
      font-weight: bold;
    }
    transform: rotate(-90deg);
  }
  .ignoreIcon {
    > svg {
      width: 10px;
    }
  }
}

.forwardNumberItem {
  display: flex;
  vertical-align: middle;
  flex-direction: column;
  text-align: center;
  align-items: flex-start;
  justify-content: center;
  height: 56px;
  width: 138px;
  min-height: 56px;
  .actionText {
    color: rgb(33, 33, 33);
    font-size: 15px;
    font-weight: normal;
    letter-spacing: 0px;
    line-height: 22px;
    @extend .overflowEllipsis;
  }

  .subText {
    color: rgb(129, 146, 175);
    font-size: 12px;
    font-weight: normal;
    letter-spacing: 0px;
    line-height: 16px;
    @extend .overflowEllipsis;
  }
}
