IE11.less 377 B

1234567891011121314151617181920
  1. // Fix Input component height issue in IE11
  2. @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  3. .@{ant-prefix}-input {
  4. height: @input-height-base;
  5. &-lg {
  6. height: @input-height-lg;
  7. }
  8. &-sm {
  9. height: @input-height-sm;
  10. }
  11. &-affix-wrapper {
  12. > input.@{ant-prefix}-input {
  13. height: auto;
  14. }
  15. }
  16. }
  17. }