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

toggle.scss « framework « stylesheets « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fd888fdec65178c61f3f66b0714485af67951b33 (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
/**
* Toggle button
*
* @usage
*  ### Active and Inactive text should be provided as data attributes:
*  <button type="button" class="project-feature-toggle" data-enabled-text="Enabled" data-disabled-text="Disabled">
*  <span class="gl-spinner loading-icon hidden" aria-label="Loading"></span>
*  </button>

*  ### Checked should have `is-checked` class
*  <button type="button" class="project-feature-toggle is-checked" data-enabled-text="Enabled" data-disabled-text="Disabled">
*  <span class="gl-spinner loading-icon hidden" aria-label="Loading"></span>
*  </button>

*  ### Disabled should have `is-disabled` class
*  <button type="button" class="project-feature-toggle is-disabled" data-enabled-text="Enabled" data-disabled-text="Disabled" disabled="true">
*  <span class="gl-spinner loading-icon hidden" aria-label="Loading"></span>
*  </button>

*  ### Loading should have `is-loading` and an icon with `loading-icon` class
*  <button type="button" class="project-feature-toggle is-loading" data-enabled-text="Enabled" data-disabled-text="Disabled">
*  <span class="gl-spinner loading-icon" aria-label="Loading"></span>
*  </button>
*/
.project-feature-toggle {
  position: relative;
  border: 0;
  outline: 0;
  display: block;
  width: 50px;
  height: 24px;
  cursor: pointer;
  user-select: none;
  background: $gray-400;
  border-radius: 12px;
  padding: 3px;
  transition: all 0.4s ease;

  &::selection,
  &::before::selection,
  &::after::selection {
    background: none;
  }

  &:focus {
    outline: none;
  }

  .toggle-icon {
    position: relative;
    display: block;
    left: 0;
    border-radius: 9px;
    background: $white;
    transition: all 0.2s ease;
    width: $default-icon-size;
    height: $default-icon-size;
  }

  .loading-icon {
    display: none;
    font-size: 12px;
    color: $white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  &.is-loading {
    .loading-icon {
      display: block;

      &::before {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
      }
    }
  }

  &.is-checked {
    background: $blue-400;

    .toggle-icon {
      left: calc(100% - 18px);
    }
  }

  &.is-checked .toggle-icon .toggle-status-checked,
  .toggle-icon .toggle-status-unchecked {
    display: inline;
  }

  &.is-checked .toggle-icon .toggle-status-unchecked,
  &.is-loading .toggle-icon,
  .toggle-icon .toggle-status-checked {
    display: none;
  }

  &.is-disabled {
    opacity: 0.4;
    cursor: not-allowed;
  }

  @include media-breakpoint-down(xs) {
    width: 50px;

    &::before,
    &.is-checked::before {
      display: none;
    }
  }

  @keyframes animate-enabled {
    0%,

    35% { opacity: 0; }

    100% { opacity: 1; }
  }

  @keyframes animate-disabled {
    0%,

    35% { opacity: 0; }

    100% { opacity: 1; }
  }
}