Fix focused select in addon (#2073)

This commit is contained in:
偏右 2016-06-16 22:04:17 +08:00 committed by GitHub
parent e385b56821
commit 048e2be5d4

View File

@ -1,6 +1,6 @@
@import "../../style/themes/default";
@import "../../style/mixins/index";
@import "../../style/mixins/index";
// size mixins for input
.input-lg() {
padding: @input-padding-vertical-lg @input-padding-horizontal;
@ -166,6 +166,15 @@
.ant-select-selection {
background-color: inherit;
border: 0;
margin: -1px;
border: 1px solid transparent;
}
&-open,
&-focused {
.ant-select-selection {
border-color: tint(@primary-color, 20%);
}
}
}
}