From 2ce9d94a665f7e2cb21e3349e28b0baea2d8584c Mon Sep 17 00:00:00 2001 From: afc163 Date: Wed, 17 Aug 2016 13:57:42 +0800 Subject: [PATCH] Fix select input height in IE, close #2741 --- components/select/style/index.less | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/components/select/style/index.less b/components/select/style/index.less index a47a3a9da7..e8dc1a9164 100644 --- a/components/select/style/index.less +++ b/components/select/style/index.less @@ -223,14 +223,17 @@ &-search--inline { float: left; width: 100%; + height: 100%; .@{select-prefix-cls}-search__field__wrap { width: 100%; + height: 100%; } .@{select-prefix-cls}-search__field { border: 0; font-size: 100%; + height: 100%; background: transparent; outline: 0; border-radius: @border-radius-base; @@ -361,6 +364,9 @@ position: absolute; left: 0; right: 0; + > ul { + height: 100%; + } } } }