-
Notifications
You must be signed in to change notification settings - Fork 60
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: Align side-nav navigation arrow on IE11 #490
fix: Align side-nav navigation arrow on IE11 #490
Conversation
Michal Salamon seems not to be a GitHub user. You need a GitHub account to be able to sign the CLA. If you have already a GitHub account, please add the email address used for this commit to your account. You have signed the CLA already but the status is still pending? Let us recheck it. |
Deploy preview for fundamental-styles ready! Built with commit ca81f98 |
76ae625
to
04c23d9
Compare
<ul class="test-sidenav-list"> | ||
<li>Item 1</li> | ||
<li>Item 1</li> | ||
<li>Item 1</li> | ||
<li>Item 1</li> | ||
</ul> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We shouldn't bring the nested list in sidenav. There are tests for Nested list. Inside Sidenav tests we should only test the Sidenav styling because our components are self-contained. You should revert the test changes
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Restored previous test cases
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM just fix travis...very possible you may need to recheck ur visual regression tests
Aligning side-nav navigation arrow on IE11.
Related Issue
Closes #485
Description
Error occurred because of IE11 breaking
align-items: center
after settingmin-height
of an element. One of the workarounds enabling usingmin-height
without breaking flex-box properties is to additionally setheight
<min-height
.More about the issue: philipwalton/flexbugs#231
Merge also includes updated side-nav playground template, providing updated html structure and 3 common side-navs usages.