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

timepicker navigation chevrons are not displayed properly #908

Closed
pkozlowski-opensource opened this issue Oct 19, 2016 · 0 comments
Closed

Comments

@pkozlowski-opensource
Copy link
Member

Visit our demo page for timepicker with Safari on iOS: https://ng-bootstrap.github.io/#/components/timepicker

You will notice that navigation chevrons are not displayed properly due to the fact that we are using CSS to display those and iOS doesn't "understand" un-prefixed transform CSS properties: http://stackoverflow.com/questions/27303339/transform-not-working-on-ios

The simple fix is to add the -webkit-transform property as well. Fix to be done here:

transform: rotate(-45deg);
vertical-align: middle;
width: 0.71em;
}
.chevron.bottom:before {
top: -.3em;
transform: rotate(135deg);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant