Bin
2025-12-17 05a69820e0c402b0b33c063d3b922f0a0571cbbb
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
.simple-settings {
  width: 42rem;
}
 
.simple-settings,
.annotation-settings,
.general-settings,
.webhook {
  & h1 {
    margin-bottom: 0.5rem;
    font-weight: 500;
    margin-top: 0;
    font-size: 1.75rem;
    color: var(--color-neutral-content);
  }
}
 
.settings-description {
  color: var(--color-neutral-content-subtler);
}
 
.settings-wrapper {
  --column-count: 1;
 
  border: 1px solid var(--color-neutral-border);
  border-radius: 0.5rem;
  padding: 1.5rem;
  width: 40rem;
  color: var(--color-neutral-content-subtle);
 
 
  & +.settings-wrapper,
  & +.form-wrapper {
    margin-top: 1.5rem;
  }
 
  & h3 {
    margin: 0 0 0.5rem;
    font-weight: 500;
    color: var(--color-neutral-content);
  }
 
  &__header {
    font-weight: 500;
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--color-neutral-content);
  }
 
}
 
.general-settings {
  display: flex;
 
  .heidy-tip {
    margin: 0 0 0 40px;
    max-width: 500px;
  }
 
  .label-ls {
    &__text {
      padding: 0;
    }
 
    &__text:first-child {
      margin-bottom: var(--spacing-tight);
    }
  }
 
  .radio-group-ls__buttons {
    & .label__content {
      padding: 0 4px;
    }
  }
}
 
.workspace-placeholder {
  &__badge-wrapper {
    display: flex;
    margin-bottom: 8px;
    line-height: normal;
  }
 
  &__title {
    font-size: 0.875rem;
    color: var(--color-neutral-content);
    font-weight: 500;
  }
}
 
.settings-caption {
  color: var(--color-neutral-content-subtler);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.4px;
 
  a {
    color: var(--color-primary-surface-content);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: 0.4px;
 
    &:hover {
      text-decoration: underline;
    }
  }
}
 
.disabled-field {
  display: flex;
  align-items: flex-start;
 
  p {
    padding: 0;
    margin: 0;
 
    a {
      color: var(--color-primary-surface-content);
      font-size: 14px;
      font-style: normal;
      font-weight: 500;
      line-height: 16px;
      letter-spacing: 0.4px;
 
      &:hover {
        text-decoration: underline;
      }
    }
  }
 
  &__label {
    margin-top: 5px;
  }
 
  input {
    margin-top: 5px;
  }
 
  &__title {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    padding: 0 16px;
    height: 22px;
    display: flex;
    margin-bottom: 4px;
    align-items: center;
  }
 
  &__description {
    margin-top: 5px;
    font-size: 14px;
    line-height: 22px;
    color: var(--color-neutral-content-subtle);
    font-weight: 500;
    padding: 0 16px;
    height: 22px;
    display: flex;
    margin-bottom: 4px;
  }
}
 
.annotation-settings {
  &__wrapper {
    width: 488px;
  }
}