@import "../../../style/index.less";

@ui-prefix-select:yyui-select;
@select-prefix-cls: ant-select;

.@{ui-prefix-select}{
  &.@{select-prefix-cls} {
    min-width: 50px;
    &-selection {
      outline: none;
      user-select: none;

      box-sizing: border-box;
      display: block;

      background-color: #fff;
      border-radius: @border-radius-base;
      border: 1px solid @border-color-base;
      transition: all .3s @ease-in-out;

      &:hover {
        .hover;
      }

      .@{select-prefix-cls}-focused &,
      &:focus,
      &:active {
        .active;
      }
    }
  }
}