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
.input:not([type='checkbox'], [type='radio']),
.textarea {
  height: 32px;
  width: 100%;
  background: var(--color-neutral-background);
  font-size: 14px;
  border: 1px solid var(--color-neutral-border);
  box-sizing: border-box;
  border-radius: 5px;
  padding: 0 16px;
  transition: box-shadow 150ms ease-out;
  box-shadow: inset 0 1px 4px rgba(var(--color-neutral-shadow-raw) / 12%);
}
 
.input_size_compact:not([type='checkbox'], [type='radio']) {
  height: 32px;
}
 
.input_size_small:not([type='checkbox'], [type='radio']) {
  height: 24px;
  font-size: 12px;
  padding: 0 5px;
}
 
.input_size_large:not([type='checkbox'], [type='radio']) {
  height: 40px;
  font-size: 16px;
}
 
.textarea {
  padding: 12px 16px;
  min-height: 50px;
}
 
.input:not([type='checkbox'], [type='radio']):focus,
.textarea:focus {
  outline: none;
  box-shadow: 0 0 0 6px var(--color-primary-focus-outline), inset 0 -1px 0 rgb(0 0 0 / 10%), inset 0 0 0 1px rgb(0 0 0 / 15%), inset 0 0 0 1px var(--color-primary-focus-outline);
  border-color: var(--color-neutral-border-boldest);
}
 
.input[type="checkbox"],
.input[type="radio"] {
  width: 16px;
  height: 16px;
}
 
.input {
  &__spinner {
    width: 16px;
    height: 16px;
    border-radius: 100%;
    box-sizing: border-box;
    border: 2px solid var(--persimmon_400);
    border-right-color: transparent;
    animation: waiting-spin 1s linear infinite;
  }
}
 
@keyframes waiting-spin {
  0% {
    transform: rotate(0deg);
  }
 
  100% {
    transform: rotate(360deg);
  }
}