mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 04:00:13 +08:00
46955f9f59
* fix: 🏁 fix ie11 input height issue (#23955) * style: fix style order issue * fix: 🏁 fix input height issue with css hack * fix: 💄 Put IE11 css hack in IE.less
21 lines
377 B
Plaintext
21 lines
377 B
Plaintext
// Fix Input component height issue in IE11
|
|
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
|
|
.@{ant-prefix}-input {
|
|
height: @input-height-base;
|
|
|
|
&-lg {
|
|
height: @input-height-lg;
|
|
}
|
|
|
|
&-sm {
|
|
height: @input-height-sm;
|
|
}
|
|
|
|
&-affix-wrapper {
|
|
> input.@{ant-prefix}-input {
|
|
height: auto;
|
|
}
|
|
}
|
|
}
|
|
}
|