Fix select input height in IE, close #2741

This commit is contained in:
afc163 2016-08-17 13:57:42 +08:00
parent 9645fdf3c4
commit 2ce9d94a66

View File

@ -223,14 +223,17 @@
&-search--inline { &-search--inline {
float: left; float: left;
width: 100%; width: 100%;
height: 100%;
.@{select-prefix-cls}-search__field__wrap { .@{select-prefix-cls}-search__field__wrap {
width: 100%; width: 100%;
height: 100%;
} }
.@{select-prefix-cls}-search__field { .@{select-prefix-cls}-search__field {
border: 0; border: 0;
font-size: 100%; font-size: 100%;
height: 100%;
background: transparent; background: transparent;
outline: 0; outline: 0;
border-radius: @border-radius-base; border-radius: @border-radius-base;
@ -361,6 +364,9 @@
position: absolute; position: absolute;
left: 0; left: 0;
right: 0; right: 0;
> ul {
height: 100%;
}
} }
} }
} }