@import './base.less';

.@{css-prefix}.pagination {
  list-style: none;
  font-size: @base-font-size;
  margin: 0;
  padding: 2px;
  .user-select(none);

  .item {
    display: inline-block;
    border-radius: @border-radius;
    cursor: pointer;
    .user-select(none);
    text-align: center;
    vertical-align: middle;
    //border: 1px solid transparent;
    outline: 0;
    margin-right: .55em;
    line-height: 1.4em;
    padding: 6px 10px;
    font-weight: bold;
    box-shadow: 0px 0px 1px 1px @border-color;

    > input {
      margin: 0;
      padding: 0;
      width: 35px;
      border: none;
      outline: 0;
      text-align: center;
      -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    }

    &.total {
      border-color: transparent;
      background: @warning-background-color;
    }

    &:not(.total):hover {
      //border-color: @primary-color;
      color: @primary-color;
    }
    &.active, &.active:hover {
      background-color: @primary-color;
      //border-color: @primary-color;
      color: #fff;
    }
    .disabled;

    &:last-child {
      margin-right: 0;
    }
  }
}
