Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: (InputGroup) Add min-width property only for ie10+, fix addon truncation #558

Merged
merged 1 commit into from
Jan 2, 2020

Conversation

JKMarkowski
Copy link
Contributor

@JKMarkowski JKMarkowski commented Dec 30, 2019

Related Issue

Closes #554

Description

We had some bug on input-group component, which was caused by setting auto property for flex-basis. It was mostly because of IE11, which doesn't have any native min-width for inputs

Screenshots

NOTE: If you've made any style changes, please provide appropriate screenshots (before and after) to help reviewers.

To see examples of which screenshots to include, go to Screenshot Examples.

Before:

IE11:
image

All browsers:
image

After:

IE11:
image

All browsers:
image

@JKMarkowski JKMarkowski changed the title fix: Add min-width property only for ie10+ fix: (InputGroup) Add min-width property only for ie10+, fix addon truncation Dec 30, 2019
@JKMarkowski JKMarkowski added this to In progress in Development via automation Dec 30, 2019
@netlify
Copy link

netlify bot commented Dec 30, 2019

Deploy preview for fundamental-styles ready!

Built with commit 5be5a87

https://deploy-preview-558--fundamental-styles.netlify.com

@@ -72,7 +72,7 @@ $fd-input-border-radius: var(--sapField_BorderCornerRadius);

background-color: transparent;
border: none;
flex: 1 1 auto;
flex: 1 1;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

flex: 1;

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

Development automation moved this from In progress to Reviewer approved Jan 2, 2020
@JKMarkowski JKMarkowski merged commit 26a755c into master Jan 2, 2020
Development automation moved this from Reviewer approved to Done Jan 2, 2020
@JKMarkowski JKMarkowski deleted the fix/554-input-group branch January 2, 2020 14:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Development
  
Done
Development

Successfully merging this pull request may close these issues.

button as addon in input group is cut
2 participants