Bin
2025-12-16 9e0b2ba2c317b1a86212f24cbae3195ad1f3dbfa
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
.toggle {
  width: 42px;
  height: 24px;
  display: block;
  min-width: 42px;
  max-height: 24px;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  color: var(--toggle-color, var(--grape_500));
  transition: all 100ms ease-out;
  background: var(--color-neutral-surface);
  border: 1px solid var(--color-neutral-border);
  box-sizing: content-box;
 
  &:hover {
    border: 1px solid var(--color-neutral-border-bold);
  }
 
  &__input {
    top: 0;
    left: 0;
    margin: 0;
    opacity: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    position: absolute;
  }
 
  &__indicator {
    height: 24px;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 120ms ease;
 
    &::before {
      content: "";
      width: 10px;
      height: 10px;
      border-radius: 100%;
      transition: all 120ms ease;
      background: var(--color-neutral-border-bold);
      box-shadow: 0 5px 10px rgb(18 17 13 / 15%), inset 0 -1px 0 rgb(18 17 13 / 10%), inset 0 0 0 1px rgb(18 17 13 / 5%);
    }
  }
 
  &_checked &__indicator {
    margin-left: 18px;
 
    &::before {
      width: 16px;
      height: 16px;
      background: var(--color-primary-surface);
      box-shadow: 0 5px 10px var(--color-primary-shadow), inset 0 -1px 0 rgba(var(--color-primary-shadow) / 10%);
    }
  }
 
  &_alwaysBlue &__indicator {
    &::before {
      width: 16px;
      height: 16px;
      background: var(--primary_link);
      box-shadow: 0 5px 10px var(--color-primary-surface-content-subtle), inset 0 -1px 0 rgb(0 0 0 / 10%);
    }
  }
 
  &_disabled {
    box-shadow: none;
    pointer-events: none;
    background: var(--color-neutral-background);
    cursor: not-allowed;
  }
 
  &_disabled &__indicator {
    transition: none;
  }
 
  &_disabled &__indicator::before,
  &_disabled.toggle_checked &__indicator::before {
    box-shadow: none;
    transition: none;
    background-color: var(--color-neutral-border);
  }
}