From: Mark Otto Date: Wed, 8 Apr 2020 17:58:23 +0000 (-0700) Subject: Fix spinner-grow animation (#30504) X-Git-Tag: v4.5.0~79 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5f15f8cdbd600569cb4b497085f009fff9d68065;p=thirdparty%2Fbootstrap.git Fix spinner-grow animation (#30504) * Fix spinner-grow animation Safari seems to be interpreting the old keyframes animation as incomplete. Adding `transform` to the second frame seems to resolve the issue. Co-Authored-By: Martijn Cuppens --- diff --git a/scss/_spinners.scss b/scss/_spinners.scss index 364a5c1a65..27c9241a79 100644 --- a/scss/_spinners.scss +++ b/scss/_spinners.scss @@ -34,6 +34,7 @@ } 50% { opacity: 1; + transform: none; } }