diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-01-06 12:07:56 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-01-06 12:07:56 +0000 |
commit | 045c0f9554a99c80d0a127540da168e272a9f977 (patch) | |
tree | 2c4b0d10c9432e68b6c1aca2097e663ba18b48ec /app/assets/stylesheets/disable_animations.scss | |
parent | 669c24d9276db9a73bbcea40aeab98273aae9e5e (diff) | |
download | gitlab-ce-045c0f9554a99c80d0a127540da168e272a9f977.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/stylesheets/disable_animations.scss')
-rw-r--r-- | app/assets/stylesheets/disable_animations.scss | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/app/assets/stylesheets/disable_animations.scss b/app/assets/stylesheets/disable_animations.scss new file mode 100644 index 00000000000..e65b49c36f3 --- /dev/null +++ b/app/assets/stylesheets/disable_animations.scss @@ -0,0 +1,18 @@ +* { + -o-transition: none !important; + -moz-transition: none !important; + -ms-transition: none !important; + -webkit-transition: none !important; + transition: none !important; + -webkit-animation: none !important; + -moz-animation: none !important; + -o-animation: none !important; + -ms-animation: none !important; + animation: none !important; +} + +// Disable sticky changes bar for tests +.diff-files-changed { + position: relative !important; + top: 0 !important; +} |