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

disable_animations.scss « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7472340896fa1206537532e87c812f1ca08e99d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
*:not(
  /* Keep transition enabled where it would otherwise break specs */
  .always-animate
) {
  /* stylelint-disable property-no-vendor-prefix */
  -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;
  /* stylelint-enable property-no-vendor-prefix */
}