debian-mirror-gitlab/app/assets/stylesheets/disable_animations.scss

21 lines
573 B
SCSS
Raw Normal View History

2017-08-17 22:00:37 +05:30
* {
2020-07-28 23:09:34 +05:30
/* stylelint-disable property-no-vendor-prefix */
2017-08-17 22:00:37 +05:30
-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;
2020-07-28 23:09:34 +05:30
/* stylelint-enable property-no-vendor-prefix */
2017-08-17 22:00:37 +05:30
}
2018-03-17 18:26:18 +05:30
// Disable sticky changes bar for tests
.diff-files-changed {
position: relative !important;
top: 0 !important;
}