Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClement Ho <clemmakesapps@gmail.com>2017-11-01 23:21:28 +0300
committerClement Ho <clemmakesapps@gmail.com>2017-11-01 23:21:28 +0300
commit5230f3de33552b64fa3c056dbff7218aa43fc933 (patch)
treeeefba055369f4223510c2877f4ca8c808f26c156 /app/assets/stylesheets/framework
parent311025edcca4da17cf238cbe00a8cb7bf0f44b69 (diff)
parente635d0b5c1685291c81b742d8120da13c1d1693e (diff)
Merge branch '39513-fix-gears-spinning-physically' into 'master'
Fix Auto DevOps graphic gears spinning based on physics Closes #39513 See merge request gitlab-org/gitlab-ce!15076
Diffstat (limited to 'app/assets/stylesheets/framework')
-rw-r--r--app/assets/stylesheets/framework/animations.scss7
1 files changed, 6 insertions, 1 deletions
diff --git a/app/assets/stylesheets/framework/animations.scss b/app/assets/stylesheets/framework/animations.scss
index 81439c0d2fe..1b944831082 100644
--- a/app/assets/stylesheets/framework/animations.scss
+++ b/app/assets/stylesheets/framework/animations.scss
@@ -23,11 +23,16 @@
@include webkit-prefix(animation-duration, 2s);
}
- &.spin {
+ &.spin-cw {
transform-origin: center;
animation: spin 4s linear infinite;
}
+ &.spin-ccw {
+ transform-origin: center;
+ animation: spin 4s linear infinite reverse;
+ }
+
&.flipOutX,
&.flipOutY,
&.bounceIn,