summaryrefslogtreecommitdiff
path: root/openstack_dashboard/themes/material/static/horizon/components/_spinners.scss
blob: 6fbca1e292276923ba60dd6a3a6c25172c96d51e (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
40
41
42
43
44
45
46
47
48
.themable-spinner {
  .input-group-btn-vertical {
    .btn {
      &,
      &:hover,
      &:active,
      &.active,
      &:focus {
        box-shadow: none;
        background-color: transparent;
        border: none;
        display: block;
        @include animation(fadeIn 1s);

        &[disabled] {
          display: none;
        }
      }
    }

    .hz-spinner-icon-up {
      @extend .mdi-plus;
      &:before {
        content: "\F415";
      }
    }

    .hz-spinner-icon-down {
      @extend .mdi-minus;
      padding-right: $padding-xs-horizontal;
      &:before {
        content: "\F374";
      }
    }

    &-container {
      flex-direction: row;
    }
  }

  &-inc {
    order: 1;
  }

  &-dec {
    order: 0;
  }
}