index.less 469 Bytes
Newer Older
afc163's avatar
afc163 committed
1 2
@import "~antd/lib/style/themes/default.less";

3
.input {
afc163's avatar
afc163 committed
4
  transition: width .3s, margin-left .3s;
5 6 7 8 9 10 11 12 13 14
  width: 0;
  background: transparent;
  border-radius: 0;
  :global(.ant-select-selection) {
    background: transparent;
  }
  input {
    border: 0;
    padding-left: 0;
    padding-right: 0;
afc163's avatar
afc163 committed
15
    box-shadow: none !important;
16 17 18 19
  }
  &,
  &:hover,
  &:focus {
afc163's avatar
afc163 committed
20
    border-bottom: 1px solid @border-color-base;
21 22 23 24 25 26
  }
  &.show {
    width: 210px;
    margin-left: 8px;
  }
}