From: Jeremy Thomas Date: Sun, 2 Apr 2017 16:52:03 +0000 (+0100) Subject: Fix #403 X-Git-Tag: 0.4.1~23 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=404d5fdd7d3e8053bc9858b2d8a768c18c8be56d;p=thirdparty%2Fbulma.git Fix #403 --- diff --git a/CHANGELOG.md b/CHANGELOG.md index 617265473..43c3199bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,7 @@ * Fix #512 nav grouped buttons * Fix #605 container example * Fix #458 select expanded +* Fix #403 separate animations ## 0.4.0 diff --git a/sass/utilities/_all.sass b/sass/utilities/_all.sass index 77ed07b38..568299c83 100644 --- a/sass/utilities/_all.sass +++ b/sass/utilities/_all.sass @@ -2,5 +2,6 @@ @import "functions.sass" @import "variables.sass" +@import "animations.sass" @import "mixins.sass" @import "controls.sass" diff --git a/sass/utilities/animations.sass b/sass/utilities/animations.sass new file mode 100644 index 000000000..a14525d75 --- /dev/null +++ b/sass/utilities/animations.sass @@ -0,0 +1,5 @@ +@keyframes spinAround + from + transform: rotate(0deg) + to + transform: rotate(359deg) diff --git a/sass/utilities/mixins.sass b/sass/utilities/mixins.sass index 8ac340c75..cd8201500 100644 --- a/sass/utilities/mixins.sass +++ b/sass/utilities/mixins.sass @@ -125,12 +125,6 @@ transform: rotate(-45deg) transform-origin: left bottom -@keyframes spinAround - from - transform: rotate(0deg) - to - transform: rotate(359deg) - =loader animation: spinAround 500ms infinite linear border: 2px solid $border