Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR fixes a few carousel issues.
Ensures carousel works in IE10 and IE11 by removing the
transform3d
detection mixin entirely as all our supported browsers support it. There was no fallback being provided, so IE10/11 were left in the dark as we were keying off-webkit
detection. Fixes [BS4] Carousel not working well in IE11. #22198.Fixes the image aspect ratio issues. Also moved from
.img-fluid
to.w-100
in our examples. Pulls in @vanduynslagerp's fix from Prevent images in carousel-item to be stretched #21799. Fixes Carousel plugin dont save aspect ratio of images #21658, fixes Carousel Responsive Issue In Chrome #21966, closes Prevent images in carousel-item to be stretched #21799.Changes the timing function from
ease-in-out
toease
to fix the "bouncing" into place when carousel items move. This kinda sucks, but there's no other CSS change I can see us making to fix this issue. Fixes Carousel slider bouncing on the lefthand side when it slides #21685, fixes Carousel slide animation bounces slightly on completion [iOS9/Safari] #21751, fixes v4: Carousel animation bouncing on Microsoft Edge #22291.