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

spinner.scss « framework « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: afd2e7ff757cf064a383771b905ff050707daefe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/**
* Do not use these spinner mixins. Rely on GitLab UI
* GlLoadingIcon component instead.
*/
@mixin spinner-color-deprecated($color) {
  border-color: rgba($color, 0.25);
  border-top-color: $color;
}

@mixin spinner-size-deprecated($size, $border-width) {
  width: $size;
  height: $size;
  border-width: $border-width;
  @include webkit-prefix(transform-origin, 50% 50% calc((#{$size} / 2) + #{$border-width}));
}

@keyframes spinner-rotate-deprecated {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

@mixin spinner-deprecated($size: 16px, $border-width: 2px, $color: $gray-700) {
  border-radius: 50%;
  position: relative;
  margin: 0 auto;
  animation-name: spinner-rotate-deprecated;
  animation-duration: 0.6s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  border-style: solid;
  display: inline-flex;
  @include spinner-size-deprecated($size, $border-width);
  @include spinner-color-deprecated($color);
}