@sourcegraph/code-host-integration 0.0.94 → 0.0.96

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,3804 +1,2 @@
1
- @charset "UTF-8";
2
-
3
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Button/Button.module.css */
4
- :root {
5
- --btn-padding-y-sm: 0.375rem;
6
- --icon-inline-md-size: 1.4285714286em;
7
- --icon-inline-size: 1.1428571429em;
8
- --btn-padding-y-lg: 0.5rem;
9
- --btn-padding-x-lg: 1rem;
10
- --font-size-lg: 1.09375rem;
11
- --btn-line-height-lg: 1.5;
12
- --btn-border-width: 1px;
13
- --btn-padding-x: 0.75rem;
14
- --btn-active-box-shadow: inset 0 3px 5px rgba(var(--black), 0.125);
15
- --btn-icon-disabled-light-color: #797d8a;
16
- --btn-icon-disabled-dark-color: #959ba7;
17
- }
18
- .Button-module__btn {
19
- font-weight: 500;
20
- letter-spacing: -0.0071428571em;
21
- display: inline-block;
22
- text-align: center;
23
- vertical-align: middle;
24
- color: var(--body-color);
25
- background-color: transparent;
26
- border: 1px solid transparent;
27
- -webkit-user-select: none;
28
- -moz-user-select: none;
29
- user-select: none;
30
- font-size: 0.875rem;
31
- line-height: 1.4285714286;
32
- border-radius: var(--border-radius);
33
- padding: 0.375rem 0.75rem;
34
- }
35
- .Button-module__btn:disabled,
36
- .Button-module__btn[aria-disabled=true] {
37
- cursor: not-allowed;
38
- }
39
- .Button-module__btn:hover {
40
- color: var(--body-color);
41
- text-decoration: none;
42
- }
43
- input.Button-module__btn.Button-module__focus-visible {
44
- outline: 2px solid var(--primary-2);
45
- outline-offset: 2px;
46
- }
47
- input.Button-module__btn:focus-visible {
48
- outline: 2px solid var(--primary-2);
49
- outline-offset: 2px;
50
- }
51
- input.Button-module__btn[aria-disabled=true] {
52
- cursor: not-allowed;
53
- }
54
- .theme-light input.Button-module__btn[aria-disabled=true] {
55
- filter: brightness(0.9);
56
- }
57
- .theme-dark input.Button-module__btn[aria-disabled=true] {
58
- filter: brightness(0.5);
59
- }
60
- .Button-module__btn-link {
61
- color: var(--link-color);
62
- background-color: var(--link-1);
63
- }
64
- .theme-light .Button-module__btn-link.disabled,
65
- .theme-light .Button-module__btn-link:disabled,
66
- .theme-light .Button-module__btn-link[aria-disabled=true] {
67
- opacity: 0.2;
68
- }
69
- .theme-dark .Button-module__btn-link.disabled,
70
- .theme-dark .Button-module__btn-link:disabled,
71
- .theme-dark .Button-module__btn-link[aria-disabled=true] {
72
- opacity: 0.4;
73
- }
74
- .Button-module__btn-link:not(:disabled):not(.disabled):not([aria-disabled=true]):hover:not(.focus):not(.Button-module__focus-visible),
75
- .Button-module__btn-link:not(:disabled):not(.disabled):not([aria-disabled=true]):active,
76
- .Button-module__btn-link:not(:disabled):not(.disabled):not([aria-disabled=true]).active {
77
- text-decoration: underline;
78
- color: var(--link-hover-color);
79
- }
80
- .Button-module__btn-link:not(:disabled):not(.disabled):not([aria-disabled=true]):hover:not(.focus):not(:focus-visible),
81
- .Button-module__btn-link:not(:disabled):not(.disabled):not([aria-disabled=true]):active,
82
- .Button-module__btn-link:not(:disabled):not(.disabled):not([aria-disabled=true]).active {
83
- text-decoration: underline;
84
- color: var(--link-hover-color);
85
- }
86
- .Button-module__btn-link:not(:disabled):not(.disabled):not([aria-disabled=true]).Button-module__focus-visible,
87
- .Button-module__btn-link:not(:disabled):not(.disabled):not([aria-disabled=true]).focus {
88
- text-decoration: underline;
89
- }
90
- .Button-module__btn-link:not(:disabled):not(.disabled):not([aria-disabled=true]):focus-visible,
91
- .Button-module__btn-link:not(:disabled):not(.disabled):not([aria-disabled=true]).focus {
92
- text-decoration: underline;
93
- }
94
- .theme-light .Button-module__btn-link:not(:disabled):not(.disabled):not([aria-disabled=true]).Button-module__focus-visible,
95
- .theme-light .Button-module__btn-link:not(:disabled):not(.disabled):not([aria-disabled=true]).focus {
96
- box-shadow: 0 0 0 2px var(--primary-2);
97
- }
98
- .theme-light .Button-module__btn-link:not(:disabled):not(.disabled):not([aria-disabled=true]):focus-visible,
99
- .theme-light .Button-module__btn-link:not(:disabled):not(.disabled):not([aria-disabled=true]).focus {
100
- box-shadow: 0 0 0 2px var(--primary-2);
101
- }
102
- .theme-dark .Button-module__btn-link:not(:disabled):not(.disabled):not([aria-disabled=true]).Button-module__focus-visible,
103
- .theme-dark .Button-module__btn-link:not(:disabled):not(.disabled):not([aria-disabled=true]).focus {
104
- box-shadow: 0 0 0 2px var(--primary-3);
105
- }
106
- .theme-dark .Button-module__btn-link:not(:disabled):not(.disabled):not([aria-disabled=true]):focus-visible,
107
- .theme-dark .Button-module__btn-link:not(:disabled):not(.disabled):not([aria-disabled=true]).focus {
108
- box-shadow: 0 0 0 2px var(--primary-3);
109
- }
110
- .Button-module__btn.Button-module__btn-block {
111
- display: block;
112
- width: 100%;
113
- }
114
- .Button-module__btn-inline {
115
- display: inline-block;
116
- }
117
- .Button-module__btn-sm {
118
- font-size: calc(min(0.75rem, 0.9166666667em));
119
- line-height: 1rem;
120
- letter-spacing: -0.0208333333em;
121
- padding: var(--btn-padding-y-sm) 0.5rem;
122
- }
123
- .Button-module__btn.Button-module__btn-lg {
124
- padding: var(--btn-padding-y-lg) var(--btn-padding-x-lg);
125
- font-size: var(--font-size-lg);
126
- line-height: var(--btn-line-height-lg);
127
- }
128
- .Button-module__btn-icon {
129
- margin: 0;
130
- padding: 0;
131
- background: transparent;
132
- color: inherit;
133
- display: flex;
134
- align-items: center;
135
- border: none;
136
- cursor: pointer;
137
- }
138
- .Button-module__btn-icon.Button-module__focus:not(:disabled):not(.disabled):not([aria-disabled=true]) {
139
- box-shadow: 0 0 0 2px var(--primary-2);
140
- }
141
- .Button-module__btn-icon:hover:not(:disabled):not(.disabled):not([aria-disabled=true]) {
142
- color: var(--body-color);
143
- }
144
- .theme-light .Button-module__btn-icon:disabled,
145
- .theme-light .Button-module__btn-icon[aria-disabled=true] {
146
- color: var(--btn-icon-disabled-light-color);
147
- }
148
- .theme-dark .Button-module__btn-icon:disabled,
149
- .theme-dark .Button-module__btn-icon[aria-disabled=true] {
150
- color: var(--btn-icon-disabled-dark-color);
151
- }
152
- .Button-module__btn-primary,
153
- .Button-module__btn-secondary,
154
- .Button-module__btn-success,
155
- .Button-module__btn-danger,
156
- .Button-module__btn-warning,
157
- .Button-module__btn-info,
158
- .Button-module__btn-merged {
159
- --btn-text-color: var(--light-text);
160
- --btn-base-color: var(--primary);
161
- --btn-light-color-variant: var(--primary-2);
162
- --btn-dark-color-variant: var(--primary-3);
163
- --btn-light-disabled-text-color: var(--light-text);
164
- --btn-dark-disabled-text-color: var(--text-disabled);
165
- color: var(--btn-text-color);
166
- border-color: var(--btn-base-color);
167
- background-color: var(--btn-base-color);
168
- }
169
- .Button-module__btn-primary.disabled,
170
- .Button-module__btn-primary:disabled,
171
- .Button-module__btn-primary[aria-disabled=true],
172
- .Button-module__btn-secondary.disabled,
173
- .Button-module__btn-secondary:disabled,
174
- .Button-module__btn-secondary[aria-disabled=true],
175
- .Button-module__btn-success.disabled,
176
- .Button-module__btn-success:disabled,
177
- .Button-module__btn-success[aria-disabled=true],
178
- .Button-module__btn-danger.disabled,
179
- .Button-module__btn-danger:disabled,
180
- .Button-module__btn-danger[aria-disabled=true],
181
- .Button-module__btn-warning.disabled,
182
- .Button-module__btn-warning:disabled,
183
- .Button-module__btn-warning[aria-disabled=true],
184
- .Button-module__btn-info.disabled,
185
- .Button-module__btn-info:disabled,
186
- .Button-module__btn-info[aria-disabled=true],
187
- .Button-module__btn-merged.disabled,
188
- .Button-module__btn-merged:disabled,
189
- .Button-module__btn-merged[aria-disabled=true] {
190
- opacity: 1;
191
- background-color: var(--btn-light-color-variant);
192
- border-color: var(--btn-light-color-variant);
193
- }
194
- .theme-light .Button-module__btn-primary.disabled,
195
- .theme-light .Button-module__btn-primary:disabled,
196
- .theme-light .Button-module__btn-primary[aria-disabled=true],
197
- .theme-light .Button-module__btn-secondary.disabled,
198
- .theme-light .Button-module__btn-secondary:disabled,
199
- .theme-light .Button-module__btn-secondary[aria-disabled=true],
200
- .theme-light .Button-module__btn-success.disabled,
201
- .theme-light .Button-module__btn-success:disabled,
202
- .theme-light .Button-module__btn-success[aria-disabled=true],
203
- .theme-light .Button-module__btn-danger.disabled,
204
- .theme-light .Button-module__btn-danger:disabled,
205
- .theme-light .Button-module__btn-danger[aria-disabled=true],
206
- .theme-light .Button-module__btn-warning.disabled,
207
- .theme-light .Button-module__btn-warning:disabled,
208
- .theme-light .Button-module__btn-warning[aria-disabled=true],
209
- .theme-light .Button-module__btn-info.disabled,
210
- .theme-light .Button-module__btn-info:disabled,
211
- .theme-light .Button-module__btn-info[aria-disabled=true],
212
- .theme-light .Button-module__btn-merged.disabled,
213
- .theme-light .Button-module__btn-merged:disabled,
214
- .theme-light .Button-module__btn-merged[aria-disabled=true] {
215
- color: var(--btn-light-disabled-text-color);
216
- }
217
- .theme-dark .Button-module__btn-primary.disabled,
218
- .theme-dark .Button-module__btn-primary:disabled,
219
- .theme-dark .Button-module__btn-primary[aria-disabled=true],
220
- .theme-dark .Button-module__btn-secondary.disabled,
221
- .theme-dark .Button-module__btn-secondary:disabled,
222
- .theme-dark .Button-module__btn-secondary[aria-disabled=true],
223
- .theme-dark .Button-module__btn-success.disabled,
224
- .theme-dark .Button-module__btn-success:disabled,
225
- .theme-dark .Button-module__btn-success[aria-disabled=true],
226
- .theme-dark .Button-module__btn-danger.disabled,
227
- .theme-dark .Button-module__btn-danger:disabled,
228
- .theme-dark .Button-module__btn-danger[aria-disabled=true],
229
- .theme-dark .Button-module__btn-warning.disabled,
230
- .theme-dark .Button-module__btn-warning:disabled,
231
- .theme-dark .Button-module__btn-warning[aria-disabled=true],
232
- .theme-dark .Button-module__btn-info.disabled,
233
- .theme-dark .Button-module__btn-info:disabled,
234
- .theme-dark .Button-module__btn-info[aria-disabled=true],
235
- .theme-dark .Button-module__btn-merged.disabled,
236
- .theme-dark .Button-module__btn-merged:disabled,
237
- .theme-dark .Button-module__btn-merged[aria-disabled=true] {
238
- color: var(--btn-dark-disabled-text-color);
239
- }
240
- .Button-module__btn-primary:not(:disabled):not(.disabled):not([aria-disabled=true]):hover:not(.focus):not(.Button-module__focus-visible),
241
- .Button-module__btn-primary:not(:disabled):not(.disabled):not([aria-disabled=true]):active,
242
- .Button-module__btn-primary:not(:disabled):not(.disabled):not([aria-disabled=true]).active,
243
- .Button-module__btn-secondary:not(:disabled):not(.disabled):not([aria-disabled=true]):hover:not(.focus):not(.Button-module__focus-visible),
244
- .Button-module__btn-secondary:not(:disabled):not(.disabled):not([aria-disabled=true]):active,
245
- .Button-module__btn-secondary:not(:disabled):not(.disabled):not([aria-disabled=true]).active,
246
- .Button-module__btn-success:not(:disabled):not(.disabled):not([aria-disabled=true]):hover:not(.focus):not(.Button-module__focus-visible),
247
- .Button-module__btn-success:not(:disabled):not(.disabled):not([aria-disabled=true]):active,
248
- .Button-module__btn-success:not(:disabled):not(.disabled):not([aria-disabled=true]).active,
249
- .Button-module__btn-danger:not(:disabled):not(.disabled):not([aria-disabled=true]):hover:not(.focus):not(.Button-module__focus-visible),
250
- .Button-module__btn-danger:not(:disabled):not(.disabled):not([aria-disabled=true]):active,
251
- .Button-module__btn-danger:not(:disabled):not(.disabled):not([aria-disabled=true]).active,
252
- .Button-module__btn-warning:not(:disabled):not(.disabled):not([aria-disabled=true]):hover:not(.focus):not(.Button-module__focus-visible),
253
- .Button-module__btn-warning:not(:disabled):not(.disabled):not([aria-disabled=true]):active,
254
- .Button-module__btn-warning:not(:disabled):not(.disabled):not([aria-disabled=true]).active,
255
- .Button-module__btn-info:not(:disabled):not(.disabled):not([aria-disabled=true]):hover:not(.focus):not(.Button-module__focus-visible),
256
- .Button-module__btn-info:not(:disabled):not(.disabled):not([aria-disabled=true]):active,
257
- .Button-module__btn-info:not(:disabled):not(.disabled):not([aria-disabled=true]).active,
258
- .Button-module__btn-merged:not(:disabled):not(.disabled):not([aria-disabled=true]):hover:not(.focus):not(.Button-module__focus-visible),
259
- .Button-module__btn-merged:not(:disabled):not(.disabled):not([aria-disabled=true]):active,
260
- .Button-module__btn-merged:not(:disabled):not(.disabled):not([aria-disabled=true]).active {
261
- color: var(--btn-text-color);
262
- background-color: var(--btn-dark-color-variant);
263
- }
264
- .Button-module__btn-primary:not(:disabled):not(.disabled):not([aria-disabled=true]):hover:not(.focus):not(:focus-visible),
265
- .Button-module__btn-primary:not(:disabled):not(.disabled):not([aria-disabled=true]):active,
266
- .Button-module__btn-primary:not(:disabled):not(.disabled):not([aria-disabled=true]).active,
267
- .Button-module__btn-secondary:not(:disabled):not(.disabled):not([aria-disabled=true]):hover:not(.focus):not(:focus-visible),
268
- .Button-module__btn-secondary:not(:disabled):not(.disabled):not([aria-disabled=true]):active,
269
- .Button-module__btn-secondary:not(:disabled):not(.disabled):not([aria-disabled=true]).active,
270
- .Button-module__btn-success:not(:disabled):not(.disabled):not([aria-disabled=true]):hover:not(.focus):not(:focus-visible),
271
- .Button-module__btn-success:not(:disabled):not(.disabled):not([aria-disabled=true]):active,
272
- .Button-module__btn-success:not(:disabled):not(.disabled):not([aria-disabled=true]).active,
273
- .Button-module__btn-danger:not(:disabled):not(.disabled):not([aria-disabled=true]):hover:not(.focus):not(:focus-visible),
274
- .Button-module__btn-danger:not(:disabled):not(.disabled):not([aria-disabled=true]):active,
275
- .Button-module__btn-danger:not(:disabled):not(.disabled):not([aria-disabled=true]).active,
276
- .Button-module__btn-warning:not(:disabled):not(.disabled):not([aria-disabled=true]):hover:not(.focus):not(:focus-visible),
277
- .Button-module__btn-warning:not(:disabled):not(.disabled):not([aria-disabled=true]):active,
278
- .Button-module__btn-warning:not(:disabled):not(.disabled):not([aria-disabled=true]).active,
279
- .Button-module__btn-info:not(:disabled):not(.disabled):not([aria-disabled=true]):hover:not(.focus):not(:focus-visible),
280
- .Button-module__btn-info:not(:disabled):not(.disabled):not([aria-disabled=true]):active,
281
- .Button-module__btn-info:not(:disabled):not(.disabled):not([aria-disabled=true]).active,
282
- .Button-module__btn-merged:not(:disabled):not(.disabled):not([aria-disabled=true]):hover:not(.focus):not(:focus-visible),
283
- .Button-module__btn-merged:not(:disabled):not(.disabled):not([aria-disabled=true]):active,
284
- .Button-module__btn-merged:not(:disabled):not(.disabled):not([aria-disabled=true]).active {
285
- color: var(--btn-text-color);
286
- background-color: var(--btn-dark-color-variant);
287
- }
288
- .Button-module__btn-primary:not(:disabled):not(.disabled):not([aria-disabled=true]).Button-module__focus-visible,
289
- .Button-module__btn-primary:not(:disabled):not(.disabled):not([aria-disabled=true]).focus,
290
- .Button-module__btn-secondary:not(:disabled):not(.disabled):not([aria-disabled=true]).Button-module__focus-visible,
291
- .Button-module__btn-secondary:not(:disabled):not(.disabled):not([aria-disabled=true]).focus,
292
- .Button-module__btn-success:not(:disabled):not(.disabled):not([aria-disabled=true]).Button-module__focus-visible,
293
- .Button-module__btn-success:not(:disabled):not(.disabled):not([aria-disabled=true]).focus,
294
- .Button-module__btn-danger:not(:disabled):not(.disabled):not([aria-disabled=true]).Button-module__focus-visible,
295
- .Button-module__btn-danger:not(:disabled):not(.disabled):not([aria-disabled=true]).focus,
296
- .Button-module__btn-warning:not(:disabled):not(.disabled):not([aria-disabled=true]).Button-module__focus-visible,
297
- .Button-module__btn-warning:not(:disabled):not(.disabled):not([aria-disabled=true]).focus,
298
- .Button-module__btn-info:not(:disabled):not(.disabled):not([aria-disabled=true]).Button-module__focus-visible,
299
- .Button-module__btn-info:not(:disabled):not(.disabled):not([aria-disabled=true]).focus,
300
- .Button-module__btn-merged:not(:disabled):not(.disabled):not([aria-disabled=true]).Button-module__focus-visible,
301
- .Button-module__btn-merged:not(:disabled):not(.disabled):not([aria-disabled=true]).focus {
302
- color: var(--btn-text-color);
303
- background-color: var(--btn-base-color);
304
- border-color: var(--body-bg);
305
- }
306
- .Button-module__btn-primary:not(:disabled):not(.disabled):not([aria-disabled=true]):focus-visible,
307
- .Button-module__btn-primary:not(:disabled):not(.disabled):not([aria-disabled=true]).focus,
308
- .Button-module__btn-secondary:not(:disabled):not(.disabled):not([aria-disabled=true]):focus-visible,
309
- .Button-module__btn-secondary:not(:disabled):not(.disabled):not([aria-disabled=true]).focus,
310
- .Button-module__btn-success:not(:disabled):not(.disabled):not([aria-disabled=true]):focus-visible,
311
- .Button-module__btn-success:not(:disabled):not(.disabled):not([aria-disabled=true]).focus,
312
- .Button-module__btn-danger:not(:disabled):not(.disabled):not([aria-disabled=true]):focus-visible,
313
- .Button-module__btn-danger:not(:disabled):not(.disabled):not([aria-disabled=true]).focus,
314
- .Button-module__btn-warning:not(:disabled):not(.disabled):not([aria-disabled=true]):focus-visible,
315
- .Button-module__btn-warning:not(:disabled):not(.disabled):not([aria-disabled=true]).focus,
316
- .Button-module__btn-info:not(:disabled):not(.disabled):not([aria-disabled=true]):focus-visible,
317
- .Button-module__btn-info:not(:disabled):not(.disabled):not([aria-disabled=true]).focus,
318
- .Button-module__btn-merged:not(:disabled):not(.disabled):not([aria-disabled=true]):focus-visible,
319
- .Button-module__btn-merged:not(:disabled):not(.disabled):not([aria-disabled=true]).focus {
320
- color: var(--btn-text-color);
321
- background-color: var(--btn-base-color);
322
- border-color: var(--body-bg);
323
- }
324
- .theme-light .Button-module__btn-primary:not(:disabled):not(.disabled):not([aria-disabled=true]).Button-module__focus-visible,
325
- .theme-light .Button-module__btn-primary:not(:disabled):not(.disabled):not([aria-disabled=true]).focus,
326
- .theme-light .Button-module__btn-secondary:not(:disabled):not(.disabled):not([aria-disabled=true]).Button-module__focus-visible,
327
- .theme-light .Button-module__btn-secondary:not(:disabled):not(.disabled):not([aria-disabled=true]).focus,
328
- .theme-light .Button-module__btn-success:not(:disabled):not(.disabled):not([aria-disabled=true]).Button-module__focus-visible,
329
- .theme-light .Button-module__btn-success:not(:disabled):not(.disabled):not([aria-disabled=true]).focus,
330
- .theme-light .Button-module__btn-danger:not(:disabled):not(.disabled):not([aria-disabled=true]).Button-module__focus-visible,
331
- .theme-light .Button-module__btn-danger:not(:disabled):not(.disabled):not([aria-disabled=true]).focus,
332
- .theme-light .Button-module__btn-warning:not(:disabled):not(.disabled):not([aria-disabled=true]).Button-module__focus-visible,
333
- .theme-light .Button-module__btn-warning:not(:disabled):not(.disabled):not([aria-disabled=true]).focus,
334
- .theme-light .Button-module__btn-info:not(:disabled):not(.disabled):not([aria-disabled=true]).Button-module__focus-visible,
335
- .theme-light .Button-module__btn-info:not(:disabled):not(.disabled):not([aria-disabled=true]).focus,
336
- .theme-light .Button-module__btn-merged:not(:disabled):not(.disabled):not([aria-disabled=true]).Button-module__focus-visible,
337
- .theme-light .Button-module__btn-merged:not(:disabled):not(.disabled):not([aria-disabled=true]).focus {
338
- box-shadow: 0 0 0 2px var(--btn-light-color-variant);
339
- }
340
- .theme-light .Button-module__btn-primary:not(:disabled):not(.disabled):not([aria-disabled=true]):focus-visible,
341
- .theme-light .Button-module__btn-primary:not(:disabled):not(.disabled):not([aria-disabled=true]).focus,
342
- .theme-light .Button-module__btn-secondary:not(:disabled):not(.disabled):not([aria-disabled=true]):focus-visible,
343
- .theme-light .Button-module__btn-secondary:not(:disabled):not(.disabled):not([aria-disabled=true]).focus,
344
- .theme-light .Button-module__btn-success:not(:disabled):not(.disabled):not([aria-disabled=true]):focus-visible,
345
- .theme-light .Button-module__btn-success:not(:disabled):not(.disabled):not([aria-disabled=true]).focus,
346
- .theme-light .Button-module__btn-danger:not(:disabled):not(.disabled):not([aria-disabled=true]):focus-visible,
347
- .theme-light .Button-module__btn-danger:not(:disabled):not(.disabled):not([aria-disabled=true]).focus,
348
- .theme-light .Button-module__btn-warning:not(:disabled):not(.disabled):not([aria-disabled=true]):focus-visible,
349
- .theme-light .Button-module__btn-warning:not(:disabled):not(.disabled):not([aria-disabled=true]).focus,
350
- .theme-light .Button-module__btn-info:not(:disabled):not(.disabled):not([aria-disabled=true]):focus-visible,
351
- .theme-light .Button-module__btn-info:not(:disabled):not(.disabled):not([aria-disabled=true]).focus,
352
- .theme-light .Button-module__btn-merged:not(:disabled):not(.disabled):not([aria-disabled=true]):focus-visible,
353
- .theme-light .Button-module__btn-merged:not(:disabled):not(.disabled):not([aria-disabled=true]).focus {
354
- box-shadow: 0 0 0 2px var(--btn-light-color-variant);
355
- }
356
- .theme-dark .Button-module__btn-primary:not(:disabled):not(.disabled):not([aria-disabled=true]).Button-module__focus-visible,
357
- .theme-dark .Button-module__btn-primary:not(:disabled):not(.disabled):not([aria-disabled=true]).focus,
358
- .theme-dark .Button-module__btn-secondary:not(:disabled):not(.disabled):not([aria-disabled=true]).Button-module__focus-visible,
359
- .theme-dark .Button-module__btn-secondary:not(:disabled):not(.disabled):not([aria-disabled=true]).focus,
360
- .theme-dark .Button-module__btn-success:not(:disabled):not(.disabled):not([aria-disabled=true]).Button-module__focus-visible,
361
- .theme-dark .Button-module__btn-success:not(:disabled):not(.disabled):not([aria-disabled=true]).focus,
362
- .theme-dark .Button-module__btn-danger:not(:disabled):not(.disabled):not([aria-disabled=true]).Button-module__focus-visible,
363
- .theme-dark .Button-module__btn-danger:not(:disabled):not(.disabled):not([aria-disabled=true]).focus,
364
- .theme-dark .Button-module__btn-warning:not(:disabled):not(.disabled):not([aria-disabled=true]).Button-module__focus-visible,
365
- .theme-dark .Button-module__btn-warning:not(:disabled):not(.disabled):not([aria-disabled=true]).focus,
366
- .theme-dark .Button-module__btn-info:not(:disabled):not(.disabled):not([aria-disabled=true]).Button-module__focus-visible,
367
- .theme-dark .Button-module__btn-info:not(:disabled):not(.disabled):not([aria-disabled=true]).focus,
368
- .theme-dark .Button-module__btn-merged:not(:disabled):not(.disabled):not([aria-disabled=true]).Button-module__focus-visible,
369
- .theme-dark .Button-module__btn-merged:not(:disabled):not(.disabled):not([aria-disabled=true]).focus {
370
- box-shadow: 0 0 0 2px var(--btn-dark-color-variant);
371
- }
372
- .theme-dark .Button-module__btn-primary:not(:disabled):not(.disabled):not([aria-disabled=true]):focus-visible,
373
- .theme-dark .Button-module__btn-primary:not(:disabled):not(.disabled):not([aria-disabled=true]).focus,
374
- .theme-dark .Button-module__btn-secondary:not(:disabled):not(.disabled):not([aria-disabled=true]):focus-visible,
375
- .theme-dark .Button-module__btn-secondary:not(:disabled):not(.disabled):not([aria-disabled=true]).focus,
376
- .theme-dark .Button-module__btn-success:not(:disabled):not(.disabled):not([aria-disabled=true]):focus-visible,
377
- .theme-dark .Button-module__btn-success:not(:disabled):not(.disabled):not([aria-disabled=true]).focus,
378
- .theme-dark .Button-module__btn-danger:not(:disabled):not(.disabled):not([aria-disabled=true]):focus-visible,
379
- .theme-dark .Button-module__btn-danger:not(:disabled):not(.disabled):not([aria-disabled=true]).focus,
380
- .theme-dark .Button-module__btn-warning:not(:disabled):not(.disabled):not([aria-disabled=true]):focus-visible,
381
- .theme-dark .Button-module__btn-warning:not(:disabled):not(.disabled):not([aria-disabled=true]).focus,
382
- .theme-dark .Button-module__btn-info:not(:disabled):not(.disabled):not([aria-disabled=true]):focus-visible,
383
- .theme-dark .Button-module__btn-info:not(:disabled):not(.disabled):not([aria-disabled=true]).focus,
384
- .theme-dark .Button-module__btn-merged:not(:disabled):not(.disabled):not([aria-disabled=true]):focus-visible,
385
- .theme-dark .Button-module__btn-merged:not(:disabled):not(.disabled):not([aria-disabled=true]).focus {
386
- box-shadow: 0 0 0 2px var(--btn-dark-color-variant);
387
- }
388
- .show > .Button-module__btn-primary.dropdown-toggle,
389
- .show > .Button-module__btn-secondary.dropdown-toggle,
390
- .show > .Button-module__btn-success.dropdown-toggle,
391
- .show > .Button-module__btn-danger.dropdown-toggle,
392
- .show > .Button-module__btn-warning.dropdown-toggle,
393
- .show > .Button-module__btn-info.dropdown-toggle,
394
- .show > .Button-module__btn-merged.dropdown-toggle {
395
- border-color: var(--body-bg);
396
- }
397
- .theme-light .show > .Button-module__btn-primary.dropdown-toggle,
398
- .theme-light .show > .Button-module__btn-secondary.dropdown-toggle,
399
- .theme-light .show > .Button-module__btn-success.dropdown-toggle,
400
- .theme-light .show > .Button-module__btn-danger.dropdown-toggle,
401
- .theme-light .show > .Button-module__btn-warning.dropdown-toggle,
402
- .theme-light .show > .Button-module__btn-info.dropdown-toggle,
403
- .theme-light .show > .Button-module__btn-merged.dropdown-toggle {
404
- box-shadow: 0 0 0 2px var(--btn-light-color-variant);
405
- }
406
- .theme-dark .show > .Button-module__btn-primary.dropdown-toggle,
407
- .theme-dark .show > .Button-module__btn-secondary.dropdown-toggle,
408
- .theme-dark .show > .Button-module__btn-success.dropdown-toggle,
409
- .theme-dark .show > .Button-module__btn-danger.dropdown-toggle,
410
- .theme-dark .show > .Button-module__btn-warning.dropdown-toggle,
411
- .theme-dark .show > .Button-module__btn-info.dropdown-toggle,
412
- .theme-dark .show > .Button-module__btn-merged.dropdown-toggle {
413
- box-shadow: 0 0 0 2px var(--btn-dark-color-variant);
414
- }
415
- .Button-module__btn-outline {
416
- color: var(--body-color);
417
- background-color: transparent;
418
- }
419
- .Button-module__btn-outline.disabled,
420
- .Button-module__btn-outline:disabled,
421
- .Button-module__btn-outline[aria-disabled=true] {
422
- --btn-light-disabled-text-color: var(--text-disabled);
423
- --btn-dark-disabled-text-color: var(--text-disabled);
424
- background-color: transparent;
425
- }
426
- .Button-module__btn-outline:not(:disabled):not(.disabled):not([aria-disabled=true]) svg:not([data-caret]) {
427
- fill: var(--btn-base-color);
428
- }
429
- .Button-module__btn-outline:not(:disabled):not(.disabled):not([aria-disabled=true]):hover:not(.focus):not(.Button-module__focus-visible),
430
- .Button-module__btn-outline:not(:disabled):not(.disabled):not([aria-disabled=true]):active,
431
- .Button-module__btn-outline:not(:disabled):not(.disabled):not([aria-disabled=true]).active {
432
- background-color: var(--color-bg-1);
433
- }
434
- .Button-module__btn-outline:not(:disabled):not(.disabled):not([aria-disabled=true]):hover:not(.focus):not(:focus-visible),
435
- .Button-module__btn-outline:not(:disabled):not(.disabled):not([aria-disabled=true]):active,
436
- .Button-module__btn-outline:not(:disabled):not(.disabled):not([aria-disabled=true]).active {
437
- background-color: var(--color-bg-1);
438
- }
439
- .theme-light .Button-module__btn-outline:not(:disabled):not(.disabled):not([aria-disabled=true]):hover:not(.focus):not(.Button-module__focus-visible),
440
- .theme-light .Button-module__btn-outline:not(:disabled):not(.disabled):not([aria-disabled=true]):active,
441
- .theme-light .Button-module__btn-outline:not(:disabled):not(.disabled):not([aria-disabled=true]).active {
442
- color: var(--btn-dark-color-variant);
443
- border-color: var(--btn-dark-color-variant);
444
- }
445
- .theme-light .Button-module__btn-outline:not(:disabled):not(.disabled):not([aria-disabled=true]):hover:not(.focus):not(:focus-visible),
446
- .theme-light .Button-module__btn-outline:not(:disabled):not(.disabled):not([aria-disabled=true]):active,
447
- .theme-light .Button-module__btn-outline:not(:disabled):not(.disabled):not([aria-disabled=true]).active {
448
- color: var(--btn-dark-color-variant);
449
- border-color: var(--btn-dark-color-variant);
450
- }
451
- .theme-light .Button-module__btn-outline:not(:disabled):not(.disabled):not([aria-disabled=true]):hover:not(.focus):not(.Button-module__focus-visible) svg,
452
- .theme-light .Button-module__btn-outline:not(:disabled):not(.disabled):not([aria-disabled=true]):active svg,
453
- .theme-light .Button-module__btn-outline:not(:disabled):not(.disabled):not([aria-disabled=true]).active svg {
454
- fill: var(--btn-dark-color-variant);
455
- }
456
- .theme-light .Button-module__btn-outline:not(:disabled):not(.disabled):not([aria-disabled=true]):hover:not(.focus):not(:focus-visible) svg,
457
- .theme-light .Button-module__btn-outline:not(:disabled):not(.disabled):not([aria-disabled=true]):active svg,
458
- .theme-light .Button-module__btn-outline:not(:disabled):not(.disabled):not([aria-disabled=true]).active svg {
459
- fill: var(--btn-dark-color-variant);
460
- }
461
- .theme-dark .Button-module__btn-outline:not(:disabled):not(.disabled):not([aria-disabled=true]):hover:not(.focus):not(.Button-module__focus-visible),
462
- .theme-dark .Button-module__btn-outline:not(:disabled):not(.disabled):not([aria-disabled=true]):active,
463
- .theme-dark .Button-module__btn-outline:not(:disabled):not(.disabled):not([aria-disabled=true]).active {
464
- color: var(--btn-base-color);
465
- border-color: var(--btn-base-color);
466
- }
467
- .theme-dark .Button-module__btn-outline:not(:disabled):not(.disabled):not([aria-disabled=true]):hover:not(.focus):not(:focus-visible),
468
- .theme-dark .Button-module__btn-outline:not(:disabled):not(.disabled):not([aria-disabled=true]):active,
469
- .theme-dark .Button-module__btn-outline:not(:disabled):not(.disabled):not([aria-disabled=true]).active {
470
- color: var(--btn-base-color);
471
- border-color: var(--btn-base-color);
472
- }
473
- .Button-module__btn-outline:not(:disabled):not(.disabled):not([aria-disabled=true]).Button-module__focus-visible,
474
- .Button-module__btn-outline:not(:disabled):not(.disabled):not([aria-disabled=true]).focus {
475
- color: var(--body-color);
476
- background-color: var(--body-bg);
477
- border-color: var(--body-bg);
478
- outline: none;
479
- }
480
- .Button-module__btn-outline:not(:disabled):not(.disabled):not([aria-disabled=true]):focus-visible,
481
- .Button-module__btn-outline:not(:disabled):not(.disabled):not([aria-disabled=true]).focus {
482
- color: var(--body-color);
483
- background-color: var(--body-bg);
484
- border-color: var(--body-bg);
485
- outline: none;
486
- }
487
- .show > .Button-module__btn-outline.dropdown-toggle {
488
- border-color: var(--body-bg);
489
- background-color: var(--body-bg);
490
- }
491
- .theme-light .show > .Button-module__btn-outline.dropdown-toggle {
492
- box-shadow: 0 0 0 2px var(--btn-light-color-variant);
493
- }
494
- .theme-dark .show > .Button-module__btn-outline.dropdown-toggle {
495
- box-shadow: 0 0 0 2px var(--btn-dark-color-variant);
496
- }
497
- .Button-module__btn-primary {
498
- --btn-text-color: var(--light-text);
499
- --btn-base-color: var(--primary);
500
- --btn-light-color-variant: var(--primary-2);
501
- --btn-dark-color-variant: var(--primary-3);
502
- --btn-light-disabled-text-color: var(--light-text);
503
- --btn-dark-disabled-text-color: var(--light-text-disabled);
504
- }
505
- .Button-module__btn-secondary {
506
- --btn-base-color: var(--secondary);
507
- --btn-light-color-variant: var(--secondary-2);
508
- --btn-dark-color-variant: var(--secondary-3);
509
- --btn-text-color: var(--body-color);
510
- --btn-light-disabled-text-color: var(--text-disabled);
511
- --btn-dark-disabled-text-color: var(--text-muted);
512
- }
513
- .Button-module__btn-success {
514
- --btn-base-color: var(--success);
515
- --btn-light-color-variant: var(--success-2);
516
- --btn-dark-color-variant: var(--success-3);
517
- }
518
- .Button-module__btn-danger {
519
- --btn-base-color: var(--danger);
520
- --btn-light-color-variant: var(--danger-2);
521
- --btn-dark-color-variant: var(--danger-3);
522
- }
523
- .Button-module__btn-warning {
524
- --btn-base-color: var(--warning);
525
- --btn-light-color-variant: var(--warning-2);
526
- --btn-dark-color-variant: var(--warning-3);
527
- --btn-text-color: var(--dark-text);
528
- --btn-light-disabled-text-color: var(--text-muted);
529
- --btn-dark-disabled-text-color: var(--text-muted);
530
- }
531
- .Button-module__btn-info {
532
- --btn-base-color: var(--info);
533
- --btn-light-color-variant: var(--info-2);
534
- --btn-dark-color-variant: var(--info-3);
535
- --btn-text-color: var(--dark-text);
536
- --btn-light-disabled-text-color: var(--text-muted);
537
- --btn-dark-disabled-text-color: var(--text-muted);
538
- }
539
- .Button-module__btn-merged {
540
- --btn-base-color: var(--merged);
541
- --btn-light-color-variant: var(--merged-2);
542
- --btn-dark-color-variant: var(--merged-3);
543
- --btn-dark-disabled-text-color: var(--light-text);
544
- }
545
- .theme-dark .Button-module__btn-secondary.disabled,
546
- .theme-dark .Button-module__btn-secondary:disabled,
547
- .theme-dark .Button-module__btn-secondary[aria-disabled=true],
548
- .theme-light .Button-module__btn-secondary.disabled,
549
- .theme-light .Button-module__btn-secondary:disabled,
550
- .theme-light .Button-module__btn-secondary[aria-disabled=true] {
551
- border-color: var(--input-disabled-bg);
552
- }
553
- .theme-dark .Button-module__btn-secondary:not(:disabled):not(.disabled):not([aria-disabled=true]):hover:not(.focus):not(.Button-module__focus-visible),
554
- .theme-dark .Button-module__btn-secondary:not(:disabled):not(.disabled):not([aria-disabled=true]):active,
555
- .theme-dark .Button-module__btn-secondary:not(:disabled):not(.disabled):not([aria-disabled=true]).active,
556
- .theme-light .Button-module__btn-secondary:not(:disabled):not(.disabled):not([aria-disabled=true]):hover:not(.focus):not(.Button-module__focus-visible),
557
- .theme-light .Button-module__btn-secondary:not(:disabled):not(.disabled):not([aria-disabled=true]):active,
558
- .theme-light .Button-module__btn-secondary:not(:disabled):not(.disabled):not([aria-disabled=true]).active {
559
- text-decoration: none;
560
- color: var(--body-color);
561
- border-color: var(--secondary);
562
- }
563
- .theme-dark .Button-module__btn-secondary:not(:disabled):not(.disabled):not([aria-disabled=true]):hover:not(.focus):not(:focus-visible),
564
- .theme-dark .Button-module__btn-secondary:not(:disabled):not(.disabled):not([aria-disabled=true]):active,
565
- .theme-dark .Button-module__btn-secondary:not(:disabled):not(.disabled):not([aria-disabled=true]).active,
566
- .theme-light .Button-module__btn-secondary:not(:disabled):not(.disabled):not([aria-disabled=true]):hover:not(.focus):not(:focus-visible),
567
- .theme-light .Button-module__btn-secondary:not(:disabled):not(.disabled):not([aria-disabled=true]):active,
568
- .theme-light .Button-module__btn-secondary:not(:disabled):not(.disabled):not([aria-disabled=true]).active {
569
- text-decoration: none;
570
- color: var(--body-color);
571
- border-color: var(--secondary);
572
- }
573
- .theme-dark .Button-module__btn-secondary:not(:disabled):not(.disabled):not([aria-disabled=true]):hover:not(.focus):not(.Button-module__focus-visible) svg,
574
- .theme-dark .Button-module__btn-secondary:not(:disabled):not(.disabled):not([aria-disabled=true]):active svg,
575
- .theme-dark .Button-module__btn-secondary:not(:disabled):not(.disabled):not([aria-disabled=true]).active svg,
576
- .theme-light .Button-module__btn-secondary:not(:disabled):not(.disabled):not([aria-disabled=true]):hover:not(.focus):not(.Button-module__focus-visible) svg,
577
- .theme-light .Button-module__btn-secondary:not(:disabled):not(.disabled):not([aria-disabled=true]):active svg,
578
- .theme-light .Button-module__btn-secondary:not(:disabled):not(.disabled):not([aria-disabled=true]).active svg {
579
- fill: var(--icon-color);
580
- }
581
- .theme-dark .Button-module__btn-secondary:not(:disabled):not(.disabled):not([aria-disabled=true]):hover:not(.focus):not(:focus-visible) svg,
582
- .theme-dark .Button-module__btn-secondary:not(:disabled):not(.disabled):not([aria-disabled=true]):active svg,
583
- .theme-dark .Button-module__btn-secondary:not(:disabled):not(.disabled):not([aria-disabled=true]).active svg,
584
- .theme-light .Button-module__btn-secondary:not(:disabled):not(.disabled):not([aria-disabled=true]):hover:not(.focus):not(:focus-visible) svg,
585
- .theme-light .Button-module__btn-secondary:not(:disabled):not(.disabled):not([aria-disabled=true]):active svg,
586
- .theme-light .Button-module__btn-secondary:not(:disabled):not(.disabled):not([aria-disabled=true]).active svg {
587
- fill: var(--icon-color);
588
- }
589
- .theme-dark .Button-module__btn-secondary:not(:disabled):not(.disabled):not([aria-disabled=true]).Button-module__focus-visible,
590
- .theme-dark .Button-module__btn-secondary:not(:disabled):not(.disabled):not([aria-disabled=true]).focus,
591
- .theme-light .Button-module__btn-secondary:not(:disabled):not(.disabled):not([aria-disabled=true]).Button-module__focus-visible,
592
- .theme-light .Button-module__btn-secondary:not(:disabled):not(.disabled):not([aria-disabled=true]).focus {
593
- box-shadow: 0 0 0 2px var(--primary-2);
594
- }
595
- .theme-dark .Button-module__btn-secondary:not(:disabled):not(.disabled):not([aria-disabled=true]):focus-visible,
596
- .theme-dark .Button-module__btn-secondary:not(:disabled):not(.disabled):not([aria-disabled=true]).focus,
597
- .theme-light .Button-module__btn-secondary:not(:disabled):not(.disabled):not([aria-disabled=true]):focus-visible,
598
- .theme-light .Button-module__btn-secondary:not(:disabled):not(.disabled):not([aria-disabled=true]).focus {
599
- box-shadow: 0 0 0 2px var(--primary-2);
600
- }
601
- .theme-dark .Button-module__btn-secondary:not(:disabled):not(.disabled):not([aria-disabled=true]) svg,
602
- .theme-light .Button-module__btn-secondary:not(:disabled):not(.disabled):not([aria-disabled=true]) svg {
603
- fill: var(--icon-color);
604
- }
605
- .Button-module__btn-group,
606
- .Button-module__btn-group-vertical {
607
- position: relative;
608
- display: inline-flex;
609
- vertical-align: middle;
610
- }
611
- .Button-module__btn-group > .Button-module__btn,
612
- .Button-module__btn-group-vertical > .Button-module__btn {
613
- position: relative;
614
- flex: 1 1 auto;
615
- }
616
- .Button-module__btn-group > *:not(:first-child) {
617
- margin-left: calc(-1 * var(--btn-border-width));
618
- }
619
- .Button-module__btn-group > .Button-module__btn:not(:last-child):not(.dropdown-toggle),
620
- .Button-module__btn-group > *:not(:last-child) .Button-module__btn {
621
- border-top-right-radius: 0;
622
- border-bottom-right-radius: 0;
623
- }
624
- .Button-module__btn-group > .Button-module__btn:not(:first-child),
625
- .Button-module__btn-group > *:not(:first-child) .Button-module__btn {
626
- border-top-left-radius: 0;
627
- border-bottom-left-radius: 0;
628
- }
629
- .Button-module__btn-group-vertical {
630
- flex-direction: column;
631
- align-items: flex-start;
632
- justify-content: center;
633
- }
634
- .Button-module__btn-group-vertical > .Button-module__btn,
635
- .Button-module__btn-group-vertical > .Button-module__btn-group {
636
- width: 100%;
637
- }
638
- .Button-module__btn-group-vertical > .Button-module__btn:not(:first-child),
639
- .Button-module__btn-group-vertical > .Button-module__btn-group:not(:first-child) {
640
- margin-top: var(--btn-border-width);
641
- }
642
- .Button-module__btn-group-vertical > .Button-module__btn:not(:last-child):not(.dropdown-toggle),
643
- .Button-module__btn-group-vertical > .Button-module__btn-group:not(:last-child) > .Button-module__btn {
644
- border-bottom-left-radius: 0;
645
- border-bottom-right-radius: 0;
646
- }
647
- .Button-module__btn-group-vertical > .Button-module__btn:not(:first-child),
648
- .Button-module__btn-group-vertical > .Button-module__btn-group:not(:first-child) > .Button-module__btn {
649
- border-top-left-radius: 0;
650
- border-top-right-radius: 0;
651
- }
652
-
653
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Icon/Icon.module.css */
654
- :root {
655
- --icon-inline-md-size: 1.4285714286em;
656
- --icon-inline-size: 1.1428571429em;
657
- }
658
- .Icon-module__icon-inline {
659
- vertical-align: bottom;
660
- display: inline-flex;
661
- align-items: center;
662
- }
663
- svg.Icon-module__icon-inline,
664
- div.Icon-module__icon-inline,
665
- img.Icon-module__icon-inline,
666
- .Icon-module__icon-inline svg {
667
- width: var(--icon-inline-size);
668
- height: var(--icon-inline-size);
669
- fill: currentColor;
670
- vertical-align: text-bottom;
671
- }
672
- svg.Icon-module__icon-inline-md,
673
- div.Icon-module__icon-inline-md,
674
- img.Icon-module__icon-inline-md,
675
- .Icon-module__icon-inline-md svg {
676
- width: var(--icon-inline-md-size);
677
- height: var(--icon-inline-md-size);
678
- }
679
-
680
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Link/AnchorLink/AnchorLink.module.css */
681
- .AnchorLink-module__anchor-link {
682
- --link-hover-decoration: underline;
683
- }
684
- a:where(.AnchorLink-module__anchor-link) {
685
- color: var(--link-color);
686
- text-decoration: none;
687
- }
688
- a:where(.AnchorLink-module__anchor-link):hover {
689
- color: var(--link-hover-color);
690
- -webkit-text-decoration: var(--link-hover-decoration);
691
- text-decoration: var(--link-hover-decoration);
692
- }
693
- a:where(.AnchorLink-module__anchor-link):not([href]) {
694
- color: inherit;
695
- text-decoration: none;
696
- }
697
- a:where(.AnchorLink-module__anchor-link):not([href]):hover {
698
- color: inherit;
699
- text-decoration: none;
700
- }
701
-
702
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Popover/components/floating-panel/FloatingPanel.module.css */
703
- [hidden] {
704
- display: none;
705
- }
706
- .FloatingPanel-module__floating-panel {
707
- position: fixed;
708
- display: block;
709
- overflow: auto;
710
- top: 0;
711
- left: 0;
712
- }
713
- .FloatingPanel-module__floating-panel-absolute {
714
- position: absolute;
715
- }
716
-
717
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Popover/components/popover-content/PopoverContent.module.css */
718
- .PopoverContent-module__popover {
719
- min-width: 10rem;
720
- font-size: 0.875rem;
721
- background-clip: padding-box;
722
- background-color: var(--dropdown-bg);
723
- border: 1px solid var(--dropdown-border-color);
724
- border-radius: var(--popover-border-radius);
725
- color: var(--body-color);
726
- box-shadow: var(--dropdown-shadow);
727
- }
728
-
729
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Popover/components/popover-tail/PopoverTail.module.css */
730
- .PopoverTail-module__tail {
731
- position: fixed;
732
- top: 0;
733
- left: 0;
734
- width: var(--tail-width);
735
- height: calc(var(--tail-width) / 2);
736
- overflow: hidden;
737
- pointer-events: none;
738
- }
739
- .PopoverTail-module__tail--size-sm {
740
- --tail-width: 16px;
741
- }
742
- .PopoverTail-module__tail--size-md {
743
- --tail-width: 24px;
744
- }
745
- .PopoverTail-module__tail--size-lg {
746
- --tail-width: 36px;
747
- }
748
- .PopoverTail-module__tail[data-side=top] {
749
- top: -1px;
750
- }
751
- .PopoverTail-module__tail[data-side=left] {
752
- left: -1px;
753
- }
754
- .PopoverTail-module__tail[data-side=right] {
755
- left: 1px;
756
- }
757
- .PopoverTail-module__tail[data-side=bottom] {
758
- top: 1px;
759
- }
760
- .PopoverTail-module__tail-inner {
761
- width: var(--tail-width);
762
- height: var(--tail-width);
763
- display: flex;
764
- align-items: center;
765
- justify-content: center;
766
- overflow: hidden;
767
- }
768
- .PopoverTail-module__tail-inner::before {
769
- content: "";
770
- width: 70%;
771
- height: 70%;
772
- transform: translate(0%, -70%) rotate(45deg);
773
- background-color: var(--tail-background, var(--dropdown-bg));
774
- border: var(--tail-border, 1px solid var(--dropdown-border-color));
775
- }
776
-
777
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Menu/MenuDivider.module.css */
778
- .MenuDivider-module__dropdown-divider {
779
- height: 0;
780
- margin: 0.25rem 0;
781
- overflow: hidden;
782
- border-top: 1px solid var(--border-color);
783
- }
784
-
785
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Typography/Typography.module.css */
786
- .Typography-module__align--left {
787
- text-align: left;
788
- }
789
- .Typography-module__align--center {
790
- text-align: center;
791
- }
792
- .Typography-module__align--right {
793
- text-align: right;
794
- }
795
- .Typography-module__font-weight-regular {
796
- font-weight: 400;
797
- }
798
- .Typography-module__font-weight-medium {
799
- font-weight: 500;
800
- }
801
- .Typography-module__font-weight-bold {
802
- font-weight: 600;
803
- }
804
- .Typography-module__single-line {
805
- overflow: hidden;
806
- text-overflow: ellipsis;
807
- white-space: nowrap;
808
- }
809
- .Typography-module__break-word {
810
- word-break: break-all;
811
- }
812
- .Typography-module__small {
813
- font-size: 0.75rem;
814
- line-height: 1rem;
815
- font-weight: inherit;
816
- }
817
-
818
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Typography/Code/Code.module.css */
819
- :root {
820
- --code-font-family:
821
- sfmono-regular,
822
- consolas,
823
- menlo,
824
- dejavu sans mono,
825
- monospace;
826
- --code-font-size: 0.8571428571em;
827
- }
828
- .Code-module__code {
829
- font-family: var(--code-font-family);
830
- font-size: var(--code-font-size);
831
- line-height: 1rem;
832
- white-space: pre;
833
- }
834
-
835
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Typography/Heading/Heading.module.css */
836
- .Heading-module__h1 {
837
- font-size: 1.625rem;
838
- font-weight: 600;
839
- letter-spacing: 0.0192307692em;
840
- margin: 0 0 1rem;
841
- }
842
- .Heading-module__h2 {
843
- font-size: 1.25rem;
844
- font-weight: 600;
845
- letter-spacing: 0.0125em;
846
- }
847
- .Heading-module__h3 {
848
- font-size: 1rem;
849
- font-weight: 600;
850
- letter-spacing: 0.015625em;
851
- }
852
- .Heading-module__h4 {
853
- font-size: 0.875rem;
854
- font-weight: 500;
855
- letter-spacing: 0.0178571429em;
856
- }
857
- .Heading-module__h5 {
858
- font-size: 0.625rem;
859
- font-weight: 600;
860
- letter-spacing: 0.05em;
861
- text-transform: uppercase;
862
- margin: 0;
863
- }
864
- .Heading-module__h6 {
865
- font-size: 0.625rem;
866
- font-weight: 400;
867
- }
868
-
869
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Typography/Label/Label.module.css */
870
- .Label-module__label {
871
- display: inline-block;
872
- font-weight: 500;
873
- letter-spacing: -0.0071428571em;
874
- }
875
- .Label-module__label--underline {
876
- text-decoration: underline;
877
- }
878
- .Label-module__label--uppercase {
879
- text-transform: uppercase;
880
- }
881
- .Label-module__label--single-line {
882
- display: block;
883
- }
884
-
885
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Menu/MenuHeader.module.css */
886
- .MenuHeader-module__dropdown-header {
887
- display: block;
888
- padding: var(--dropdown-item-padding);
889
- margin-bottom: 0;
890
- font-size: var(--dropdown-header-font-size);
891
- color: var(--dropdown-header-color);
892
- white-space: nowrap;
893
- }
894
-
895
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Menu/MenuItem.module.css */
896
- .MenuItem-module__dropdown-item {
897
- display: block;
898
- width: 100%;
899
- padding: var(--dropdown-item-padding);
900
- clear: both;
901
- font-weight: 400;
902
- color: var(--dropdown-link-color);
903
- text-align: inherit;
904
- text-decoration: none;
905
- white-space: nowrap;
906
- background-color: transparent;
907
- border: 0;
908
- }
909
- .MenuItem-module__dropdown-item:hover,
910
- .MenuItem-module__dropdown-item:focus {
911
- color: var(--dropdown-link-hover-color);
912
- text-decoration: none;
913
- background-color: var(--dropdown-link-hover-bg);
914
- }
915
- .MenuItem-module__dropdown-item.MenuItem-module__active,
916
- .MenuItem-module__dropdown-item:active {
917
- color: var(--dropdown-link-active-color);
918
- text-decoration: none;
919
- background-color: var(--dropdown-link-active-bg);
920
- }
921
- .MenuItem-module__dropdown-item.MenuItem-module__disabled,
922
- .MenuItem-module__dropdown-item:disabled {
923
- color: var(--dropdown-link-disabled-color);
924
- pointer-events: none;
925
- background-color: transparent;
926
- }
927
- .MenuItem-module__dropdown-item[data-reach-menu-item][aria-disabled]:active,
928
- .MenuItem-module__dropdown-item[data-reach-menu-item][aria-disabled]:hover {
929
- background-color: unset;
930
- color: unset;
931
- }
932
- .MenuItem-module__dropdown-item[data-reach-menu-item][data-selected]:not(:active) {
933
- background-color: var(--dropdown-link-hover-bg);
934
- color: unset;
935
- }
936
-
937
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Menu/MenuList.module.css */
938
- .MenuList-module__menu-list.MenuList-module__focus-visible {
939
- box-shadow: var(--focus-box-shadow);
940
- }
941
- .MenuList-module__menu-list:focus-visible {
942
- box-shadow: var(--focus-box-shadow);
943
- }
944
-
945
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Breadcrumbs/Breadcrumbs.module.css */
946
- .Breadcrumbs-module__list {
947
- margin: 0;
948
- padding: 0;
949
- display: flex;
950
- flex-wrap: nowrap;
951
- align-items: center;
952
- white-space: nowrap;
953
- list-style: none;
954
- position: relative;
955
- width: 100%;
956
- overflow: hidden;
957
- }
958
- .Breadcrumbs-module__separator {
959
- padding: 0 0.25rem;
960
- color: var(--link-color);
961
- }
962
- .Breadcrumbs-module__item--hidden {
963
- position: absolute;
964
- top: 0;
965
- left: 0;
966
- visibility: hidden;
967
- z-index: -1;
968
- }
969
- .Breadcrumbs-module__item--with-button {
970
- display: flex;
971
- }
972
- .Breadcrumbs-module__item--last {
973
- overflow: hidden;
974
- text-overflow: ellipsis;
975
- }
976
- .Breadcrumbs-module__more-button {
977
- display: flex !important;
978
- border: none !important;
979
- padding: 0 0.25rem !important;
980
- color: var(--link-color);
981
- }
982
- .Breadcrumbs-module__more-button--active,
983
- .Breadcrumbs-module__more-button:hover,
984
- .Breadcrumbs-module__more-button:focus {
985
- color: var(--link-color) !important;
986
- background-color: var(--dropdown-link-hover-bg) !important;
987
- }
988
- .Breadcrumbs-module__truncated-list {
989
- display: flex;
990
- flex-direction: column;
991
- list-style: none;
992
- padding: 0 !important;
993
- margin: 0;
994
- border-radius: 2px !important;
995
- }
996
- .Breadcrumbs-module__truncated-list-item {
997
- cursor: pointer;
998
- padding: 0.15rem 0.35rem !important;
999
- display: flex !important;
1000
- gap: 0.25rem;
1001
- align-items: center;
1002
- }
1003
- .Breadcrumbs-module__truncated-list-item[data-reach-menu-item][data-selected]:not(:active) {
1004
- background-color: var(--primary);
1005
- color: var(--light-text);
1006
- }
1007
-
1008
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Alert/Alert.module.css */
1009
- .Alert-module__alert {
1010
- --alert-icon-display: block;
1011
- --alert-icon-block-width: 2.5rem;
1012
- --alert-content-padding: 0.5rem;
1013
- --alert-background-color: var(--color-bg-1);
1014
- overflow: hidden;
1015
- position: relative;
1016
- margin-bottom: 1rem;
1017
- color: var(--body-color);
1018
- border-radius: var(--border-radius);
1019
- border: 1px solid var(--alert-border-color);
1020
- background-color: var(--alert-background-color);
1021
- padding: var(--alert-content-padding) var(--alert-content-padding) var(--alert-content-padding) calc(var(--alert-icon-block-width) + var(--alert-content-padding));
1022
- }
1023
- .Alert-module__alert--with-no-icon {
1024
- padding: var(--alert-content-padding);
1025
- }
1026
- .Alert-module__alert--with-no-icon::before,
1027
- .Alert-module__alert--with-no-icon::after {
1028
- --alert-icon-display: none;
1029
- }
1030
- .Alert-module__alert a:not(.Alert-module__btn) {
1031
- font-weight: 500;
1032
- }
1033
- .Alert-module__alert a:not(.Alert-module__btn):hover {
1034
- text-decoration: underline;
1035
- }
1036
- .Alert-module__alert h4 {
1037
- margin-bottom: 0.25rem;
1038
- }
1039
- .Alert-module__alert-primary,
1040
- .Alert-module__alert-secondary,
1041
- .Alert-module__alert-success,
1042
- .Alert-module__alert-danger,
1043
- .Alert-module__alert-warning,
1044
- .Alert-module__alert-info,
1045
- .Alert-module__alert-merged,
1046
- .Alert-module__alert-note,
1047
- .Alert-module__alert-waiting {
1048
- }
1049
- .Alert-module__alert-primary::before,
1050
- .Alert-module__alert-primary::after,
1051
- .Alert-module__alert-secondary::before,
1052
- .Alert-module__alert-secondary::after,
1053
- .Alert-module__alert-success::before,
1054
- .Alert-module__alert-success::after,
1055
- .Alert-module__alert-danger::before,
1056
- .Alert-module__alert-danger::after,
1057
- .Alert-module__alert-warning::before,
1058
- .Alert-module__alert-warning::after,
1059
- .Alert-module__alert-info::before,
1060
- .Alert-module__alert-info::after,
1061
- .Alert-module__alert-merged::before,
1062
- .Alert-module__alert-merged::after,
1063
- .Alert-module__alert-note::before,
1064
- .Alert-module__alert-note::after,
1065
- .Alert-module__alert-waiting::before,
1066
- .Alert-module__alert-waiting::after {
1067
- display: var(--alert-icon-display);
1068
- content: "";
1069
- position: absolute;
1070
- top: 0;
1071
- left: 0;
1072
- width: var(--alert-icon-block-width);
1073
- height: 100%;
1074
- }
1075
- .Alert-module__alert-primary::before,
1076
- .Alert-module__alert-secondary::before,
1077
- .Alert-module__alert-success::before,
1078
- .Alert-module__alert-danger::before,
1079
- .Alert-module__alert-warning::before,
1080
- .Alert-module__alert-info::before,
1081
- .Alert-module__alert-merged::before,
1082
- .Alert-module__alert-note::before,
1083
- .Alert-module__alert-waiting::before {
1084
- border: 2px solid var(--color-bg-1);
1085
- border-top-left-radius: var(--border-radius);
1086
- border-bottom-left-radius: var(--border-radius);
1087
- background-color: var(--alert-icon-background-color);
1088
- }
1089
- .Alert-module__alert-primary::after,
1090
- .Alert-module__alert-secondary::after,
1091
- .Alert-module__alert-success::after,
1092
- .Alert-module__alert-danger::after,
1093
- .Alert-module__alert-warning::after,
1094
- .Alert-module__alert-info::after,
1095
- .Alert-module__alert-merged::after,
1096
- .Alert-module__alert-note::after,
1097
- .Alert-module__alert-waiting::after {
1098
- -webkit-mask-repeat: no-repeat;
1099
- mask-repeat: no-repeat;
1100
- -webkit-mask-size: 1rem;
1101
- mask-size: 1rem;
1102
- -webkit-mask-position: 50% 50%;
1103
- mask-position: 50% 50%;
1104
- background-color: var(--alert-icon-color);
1105
- }
1106
- .Alert-module__alert-info {
1107
- --alert-border-color: var(--info);
1108
- }
1109
- .theme-light .Alert-module__alert-info {
1110
- --alert-icon-color: var(--info-3);
1111
- --alert-icon-background-color: var(--info-4);
1112
- }
1113
- .theme-dark .Alert-module__alert-info {
1114
- --alert-icon-color: var(--info);
1115
- --alert-icon-background-color: var(--info-3);
1116
- }
1117
- .Alert-module__alert-primary {
1118
- --alert-border-color: var(--primary);
1119
- --alert-icon-background-color: var(--primary-4);
1120
- }
1121
- .theme-light .Alert-module__alert-primary {
1122
- --alert-icon-color: var(--primary-3);
1123
- }
1124
- .theme-dark .Alert-module__alert-primary {
1125
- --alert-icon-color: var(--primary);
1126
- }
1127
- .Alert-module__alert-secondary {
1128
- --alert-icon-background-color: var(--secondary-4);
1129
- }
1130
- .theme-light .Alert-module__alert-secondary {
1131
- --alert-border-color: var(--secondary-3);
1132
- --alert-icon-color: var(--gray-06);
1133
- }
1134
- .theme-dark .Alert-module__alert-secondary {
1135
- --alert-border-color: var(--secondary);
1136
- --alert-icon-color: var(--gray-05);
1137
- }
1138
- .Alert-module__alert-info::after,
1139
- .Alert-module__alert-primary::after,
1140
- .Alert-module__alert-secondary::after {
1141
- -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M13 9h-2V7h2m0 10h-2v-6h2m-1-9A10 10 0 002 12a10 10 0 0010 10 10 10 0 0010-10A10 10 0 0012 2z'/></svg>");
1142
- mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M13 9h-2V7h2m0 10h-2v-6h2m-1-9A10 10 0 002 12a10 10 0 0010 10 10 10 0 0010-10A10 10 0 0012 2z'/></svg>");
1143
- }
1144
- .Alert-module__alert-warning,
1145
- .Alert-module__alert-waiting {
1146
- --alert-border-color: var(--warning);
1147
- --alert-icon-background-color: var(--warning-4);
1148
- }
1149
- .theme-light .Alert-module__alert-warning,
1150
- .theme-light .Alert-module__alert-waiting {
1151
- --alert-icon-color: var(--warning-3);
1152
- }
1153
- .theme-dark .Alert-module__alert-warning,
1154
- .theme-dark .Alert-module__alert-waiting {
1155
- --alert-icon-color: var(--warning);
1156
- }
1157
- .Alert-module__alert-warning::after {
1158
- -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M13 14h-2V9h2m0 9h-2v-2h2M1 21h22L12 2 1 21z'/></svg>");
1159
- mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M13 14h-2V9h2m0 9h-2v-2h2M1 21h22L12 2 1 21z'/></svg>");
1160
- }
1161
- .Alert-module__alert-waiting::after {
1162
- -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6,2H18V8H18V8L14,12L18,16V16H18V22H6V16H6V16L10,12L6,8V8H6V2M16,16.5L12,12.5L8,16.5V20H16V16.5M12,11.5L16,7.5V4H8V7.5L12,11.5M10,6H14V6.75L12,8.75L10,6.75V6Z' /></svg>");
1163
- mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6,2H18V8H18V8L14,12L18,16V16H18V22H6V16H6V16L10,12L6,8V8H6V2M16,16.5L12,12.5L8,16.5V20H16V16.5M12,11.5L16,7.5V4H8V7.5L12,11.5M10,6H14V6.75L12,8.75L10,6.75V6Z' /></svg>");
1164
- }
1165
- .Alert-module__alert-danger {
1166
- --alert-border-color: var(--danger);
1167
- --alert-icon-background-color: var(--danger-4);
1168
- }
1169
- .theme-light .Alert-module__alert-danger {
1170
- --alert-icon-color: var(--danger-3);
1171
- }
1172
- .theme-dark .Alert-module__alert-danger {
1173
- --alert-icon-color: var(--danger);
1174
- }
1175
- .Alert-module__alert-danger::after {
1176
- -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M13 13h-2V7h2m0 10h-2v-2h2M12 2A10 10 0 002 12a10 10 0 0010 10 10 10 0 0010-10A10 10 0 0012 2z'/></svg>");
1177
- mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M13 13h-2V7h2m0 10h-2v-2h2M12 2A10 10 0 002 12a10 10 0 0010 10 10 10 0 0010-10A10 10 0 0012 2z'/></svg>");
1178
- }
1179
- .Alert-module__alert-success {
1180
- --alert-border-color: var(--success);
1181
- --alert-icon-background-color: var(--success-4);
1182
- }
1183
- .theme-light .Alert-module__alert-success {
1184
- --alert-icon-color: var(--success-3);
1185
- }
1186
- .theme-dark .Alert-module__alert-success {
1187
- --alert-icon-color: var(--success);
1188
- }
1189
- .Alert-module__alert-success::after {
1190
- -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2m-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/></svg>");
1191
- mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2m-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/></svg>");
1192
- }
1193
- .Alert-module__alert-merged {
1194
- --alert-border-color: var(--merged);
1195
- --alert-icon-background-color: var(--merged-4);
1196
- }
1197
- .theme-light .Alert-module__alert-merged {
1198
- --alert-icon-color: var(--merged-3);
1199
- }
1200
- .theme-dark .Alert-module__alert-merged {
1201
- --alert-icon-color: var(--merged);
1202
- }
1203
- .Alert-module__alert-merged::after {
1204
- -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M7 3a3 3 0 013 3c0 1.29-.81 2.39-1.96 2.81.54 5 5.04 5.96 7.15 6.15A2.985 2.985 0 0118 13a3 3 0 013 3 3 3 0 01-3 3c-1.31 0-2.43-.84-2.84-2-4.25-.2-5.72-1.81-7.16-3.61v1.78c1.17.41 2 1.52 2 2.83a3 3 0 01-3 3 3 3 0 01-3-3c0-1.31.83-2.42 2-2.83V8.83A2.99 2.99 0 014 6a3 3 0 013-3m0 2a1 1 0 00-1 1 1 1 0 001 1 1 1 0 001-1 1 1 0 00-1-1m0 12a1 1 0 00-1 1 1 1 0 001 1 1 1 0 001-1 1 1 0 00-1-1m11-2a1 1 0 00-1 1 1 1 0 001 1 1 1 0 001-1 1 1 0 00-1-1z'/></svg>");
1205
- mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M7 3a3 3 0 013 3c0 1.29-.81 2.39-1.96 2.81.54 5 5.04 5.96 7.15 6.15A2.985 2.985 0 0118 13a3 3 0 013 3 3 3 0 01-3 3c-1.31 0-2.43-.84-2.84-2-4.25-.2-5.72-1.81-7.16-3.61v1.78c1.17.41 2 1.52 2 2.83a3 3 0 01-3 3 3 3 0 01-3-3c0-1.31.83-2.42 2-2.83V8.83A2.99 2.99 0 014 6a3 3 0 013-3m0 2a1 1 0 00-1 1 1 1 0 001 1 1 1 0 001-1 1 1 0 00-1-1m0 12a1 1 0 00-1 1 1 1 0 001 1 1 1 0 001-1 1 1 0 00-1-1m11-2a1 1 0 00-1 1 1 1 0 001 1 1 1 0 001-1 1 1 0 00-1-1z'/></svg>");
1206
- }
1207
- .Alert-module__alert-note {
1208
- --alert-icon-block-width: 0rem;
1209
- --alert-border-color: var(--border-color);
1210
- --alert-content-padding: 0.75rem;
1211
- --alert-background-color: var(--subtle-bg);
1212
- }
1213
- .Alert-module__alert-note::after,
1214
- .Alert-module__alert-note::before {
1215
- display: none;
1216
- }
1217
-
1218
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Alert/AlertLink.module.css */
1219
- .AlertLink-module__alert-link {
1220
- font-weight: 500;
1221
- }
1222
- .AlertLink-module__alert-link:hover {
1223
- text-decoration: underline;
1224
- }
1225
-
1226
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Container/Container.module.css */
1227
- .Container-module__container {
1228
- padding: 1.5rem;
1229
- background-color: var(--color-bg-1);
1230
- border: 1px solid var(--border-color);
1231
- border-radius: var(--border-radius);
1232
- }
1233
-
1234
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Markdown/Markdown.module.css */
1235
- .Markdown-module__markdown > p:only-child {
1236
- display: contents;
1237
- }
1238
- .Markdown-module__markdown h1,
1239
- .Markdown-module__markdown h2,
1240
- .Markdown-module__markdown h3,
1241
- .Markdown-module__markdown h4,
1242
- .Markdown-module__markdown h5,
1243
- .Markdown-module__markdown h6 {
1244
- display: table;
1245
- border-bottom: 1px solid var(--border-color);
1246
- padding-bottom: 0.5rem;
1247
- }
1248
- .Markdown-module__markdown h1 a.anchor,
1249
- .Markdown-module__markdown h2 a.anchor,
1250
- .Markdown-module__markdown h3 a.anchor,
1251
- .Markdown-module__markdown h4 a.anchor,
1252
- .Markdown-module__markdown h5 a.anchor,
1253
- .Markdown-module__markdown h6 a.anchor {
1254
- opacity: 0;
1255
- font-size: 1rem;
1256
- margin-left: -1rem;
1257
- padding: 0.125rem;
1258
- }
1259
- .Markdown-module__markdown h1 a.anchor::before,
1260
- .Markdown-module__markdown h2 a.anchor::before,
1261
- .Markdown-module__markdown h3 a.anchor::before,
1262
- .Markdown-module__markdown h4 a.anchor::before,
1263
- .Markdown-module__markdown h5 a.anchor::before,
1264
- .Markdown-module__markdown h6 a.anchor::before {
1265
- content: "#";
1266
- }
1267
- .Markdown-module__markdown h1:hover a.anchor,
1268
- .Markdown-module__markdown h2:hover a.anchor,
1269
- .Markdown-module__markdown h3:hover a.anchor,
1270
- .Markdown-module__markdown h4:hover a.anchor,
1271
- .Markdown-module__markdown h5:hover a.anchor,
1272
- .Markdown-module__markdown h6:hover a.anchor {
1273
- opacity: 1;
1274
- }
1275
- .Markdown-module__markdown h1 {
1276
- width: 100%;
1277
- }
1278
- .Markdown-module__markdown table,
1279
- .Markdown-module__markdown th,
1280
- .Markdown-module__markdown td {
1281
- border: 1px solid var(--border-color);
1282
- padding: 0.5rem 1rem;
1283
- }
1284
- .Markdown-module__markdown table {
1285
- margin-bottom: 1rem;
1286
- }
1287
- .Markdown-module__markdown ol,
1288
- .Markdown-module__markdown ul {
1289
- margin-left: 0;
1290
- }
1291
- .Markdown-module__markdown code,
1292
- .Markdown-module__markdown pre {
1293
- background: var(--code-bg);
1294
- }
1295
- .Markdown-module__markdown pre {
1296
- padding: 0.5rem;
1297
- }
1298
- .Markdown-module__markdown code {
1299
- display: inline-block;
1300
- padding: 0.25rem;
1301
- }
1302
- .Markdown-module__markdown p > code {
1303
- white-space: nowrap;
1304
- }
1305
- .Markdown-module__markdown blockquote {
1306
- padding: 0 1rem;
1307
- color: var(--text-muted);
1308
- border-left: 4px solid var(--border-color);
1309
- }
1310
- .Markdown-module__markdown img {
1311
- max-width: 100%;
1312
- margin-bottom: 0.5rem;
1313
- }
1314
- {
1315
- }
1316
- .chroma .chroma-err {
1317
- color: var(--chroma-error-fg);
1318
- background-color: var(--chroma-error-bg);
1319
- }
1320
- .chroma .chroma-lnlinks {
1321
- outline: none;
1322
- text-decoration: none;
1323
- color: var(--chroma-line-link-fg);
1324
- }
1325
- .chroma .chroma-lntd {
1326
- vertical-align: top;
1327
- padding: 0;
1328
- margin: 0;
1329
- border: 0;
1330
- }
1331
- .chroma .chroma-lntable {
1332
- border-spacing: 0;
1333
- padding: 0;
1334
- margin: 0;
1335
- border: 0;
1336
- }
1337
- .chroma .chroma-hl {
1338
- background-color: var(--chroma-line-highlight-bg);
1339
- }
1340
- .chroma .chroma-lnt {
1341
- white-space: pre;
1342
- -webkit-user-select: none;
1343
- -moz-user-select: none;
1344
- user-select: none;
1345
- margin-right: 0.4rem;
1346
- padding: 0 0.4rem 0 0.4rem;
1347
- color: var(--chroma-line-numbers-table-fg);
1348
- }
1349
- .chroma .chroma-ln {
1350
- white-space: pre;
1351
- -webkit-user-select: none;
1352
- -moz-user-select: none;
1353
- user-select: none;
1354
- margin-right: 0.4rem;
1355
- padding: 0 0.4rem 0 0.4rem;
1356
- color: var(--chroma-line-numbers-fg);
1357
- }
1358
- .chroma .chroma-line {
1359
- display: flex;
1360
- }
1361
- .chroma .chroma-k {
1362
- color: var(--chroma-keyword-fg);
1363
- font-weight: bold;
1364
- }
1365
- .chroma .chroma-kc {
1366
- color: var(--chroma-keyword-constant-fg);
1367
- font-weight: bold;
1368
- }
1369
- .chroma .chroma-kd {
1370
- color: var(--chroma-keyword-declaration-fg);
1371
- font-weight: bold;
1372
- }
1373
- .chroma .chroma-kn {
1374
- color: var(--chroma-keyword-namespace-fg);
1375
- font-weight: bold;
1376
- }
1377
- .chroma .chroma-kp {
1378
- color: var(--chroma-keyword-pseudo-fg);
1379
- font-weight: bold;
1380
- }
1381
- .chroma .chroma-kr {
1382
- color: var(--chroma-keyword-reserved-fg);
1383
- font-weight: bold;
1384
- }
1385
- .chroma .chroma-kt {
1386
- color: var(--chroma-keyword-type-fg);
1387
- font-weight: bold;
1388
- }
1389
- .chroma .chroma-na {
1390
- color: var(--chroma-name-attribute-fg);
1391
- }
1392
- .chroma .chroma-nb {
1393
- color: var(--chroma-name-builtin-fg);
1394
- }
1395
- .chroma .chroma-bp {
1396
- color: var(--chroma-name-builtin-pseudo-fg);
1397
- }
1398
- .chroma .chroma-nc {
1399
- color: var(--chroma-name-class-fg);
1400
- font-weight: bold;
1401
- }
1402
- .chroma .chroma-no {
1403
- color: var(--chroma-name-constant-fg);
1404
- }
1405
- .chroma .chroma-nd {
1406
- color: var(--chroma-name-decorator-fg);
1407
- font-weight: bold;
1408
- }
1409
- .chroma .chroma-ni {
1410
- color: var(--chroma-name-entity-fg);
1411
- }
1412
- .chroma .chroma-ne {
1413
- color: var(--chroma-name-exception-fg);
1414
- font-weight: bold;
1415
- }
1416
- .chroma .chroma-nf {
1417
- color: var(--chroma-name-function-fg);
1418
- font-weight: bold;
1419
- }
1420
- .chroma .chroma-nl {
1421
- color: var(--chroma-name-label-fg);
1422
- font-weight: bold;
1423
- }
1424
- .chroma .chroma-nn {
1425
- color: var(--chroma-name-namespace-fg);
1426
- }
1427
- .chroma .chroma-nt {
1428
- color: var(--chroma-name-tag-fg);
1429
- }
1430
- .chroma .chroma-nv {
1431
- color: var(--chroma-name-variable-fg);
1432
- }
1433
- .chroma .chroma-vc {
1434
- color: var(--chroma-name-variable-class-fg);
1435
- }
1436
- .chroma .chroma-vg {
1437
- color: var(--chroma-name-variable-global-fg);
1438
- }
1439
- .chroma .chroma-vi {
1440
- color: var(--chroma-name-variable-instance-fg);
1441
- }
1442
- .chroma .chroma-s {
1443
- color: var(--chroma-literal-string-fg);
1444
- }
1445
- .chroma .chroma-sa {
1446
- color: var(--chroma-literal-string-affix-fg);
1447
- }
1448
- .chroma .chroma-sb {
1449
- color: var(--chroma-literal-string-backtick-fg);
1450
- }
1451
- .chroma .chroma-sc {
1452
- color: var(--chroma-literal-string-char-fg);
1453
- }
1454
- .chroma .chroma-dl {
1455
- color: var(--chroma-literal-string-delimiter-fg);
1456
- }
1457
- .chroma .chroma-sd {
1458
- color: var(--chroma-literal-string-doc-fg);
1459
- }
1460
- .chroma .chroma-s2 {
1461
- color: var(--chroma-literal-string-double-fg);
1462
- }
1463
- .chroma .chroma-se {
1464
- color: var(--chroma-literal-string-escape-fg);
1465
- }
1466
- .chroma .chroma-sh {
1467
- color: var(--chroma-literal-string-heredoc-fg);
1468
- }
1469
- .chroma .chroma-si {
1470
- color: var(--chroma-literal-string-interpol-fg);
1471
- }
1472
- .chroma .chroma-sx {
1473
- color: var(--chroma-literal-string-other-fg);
1474
- }
1475
- .chroma .chroma-sr {
1476
- color: var(--chroma-literal-string-regex-fg);
1477
- }
1478
- .chroma .chroma-s1 {
1479
- color: var(--chroma-literal-string-single-fg);
1480
- }
1481
- .chroma .chroma-ss {
1482
- color: var(--chroma-literal-string-symbol-fg);
1483
- }
1484
- .chroma .chroma-m {
1485
- color: var(--chroma-literal-number-fg);
1486
- }
1487
- .chroma .chroma-mb {
1488
- color: var(--chroma-literal-number-bin-fg);
1489
- }
1490
- .chroma .chroma-mf {
1491
- color: var(--chroma-literal-number-float-fg);
1492
- }
1493
- .chroma .chroma-mh {
1494
- color: var(--chroma-literal-number-hex-fg);
1495
- }
1496
- .chroma .chroma-mi {
1497
- color: var(--chroma-literal-number-integer-fg);
1498
- }
1499
- .chroma .chroma-il {
1500
- color: var(--chroma-literal-number-integer-long-fg);
1501
- }
1502
- .chroma .chroma-mo {
1503
- color: var(--chroma-literal-number-oct-fg);
1504
- }
1505
- .chroma .chroma-o {
1506
- color: var(--chroma-operator-fg);
1507
- font-weight: bold;
1508
- }
1509
- .chroma .chroma-ow {
1510
- color: var(--chroma-operator-word-fg);
1511
- font-weight: bold;
1512
- }
1513
- .chroma .chroma-c {
1514
- color: var(--chroma-comment-fg);
1515
- font-style: italic;
1516
- }
1517
- .chroma .chroma-ch {
1518
- color: var(--chroma-comment-hashbang-fg);
1519
- font-style: italic;
1520
- }
1521
- .chroma .chroma-cm {
1522
- color: var(--chroma-comment-multiline-fg);
1523
- font-style: italic;
1524
- }
1525
- .chroma .chroma-c1 {
1526
- color: var(--chroma-comment-single-fg);
1527
- font-style: italic;
1528
- }
1529
- .chroma .chroma-cs {
1530
- color: var(--chroma-comment-special-fg);
1531
- font-weight: bold;
1532
- font-style: italic;
1533
- }
1534
- .chroma .chroma-cp {
1535
- color: var(--chroma-comment-preproc-fg);
1536
- font-weight: bold;
1537
- font-style: italic;
1538
- }
1539
- .chroma .chroma-cpf {
1540
- color: var(--chroma-comment-preproc-file-fg);
1541
- font-weight: bold;
1542
- font-style: italic;
1543
- }
1544
- .chroma .chroma-gd {
1545
- color: var(--chroma-generic-deleted-fg);
1546
- background-color: var(--chroma-generic-deleted-bg);
1547
- }
1548
- .chroma .chroma-ge {
1549
- color: var(--chroma-generic-emph-fg);
1550
- font-style: italic;
1551
- }
1552
- .chroma .chroma-gr {
1553
- color: var(--chroma-generic-error-fg);
1554
- }
1555
- .chroma .chroma-gh {
1556
- color: var(--chroma-generic-heading-fg);
1557
- }
1558
- .chroma .chroma-gi {
1559
- color: var(--chroma-generic-inserted-fg);
1560
- background-color: var(--chroma-generic-inserted-bg);
1561
- }
1562
- .chroma .chroma-go {
1563
- color: var(--chroma-generic-output-fg);
1564
- }
1565
- .chroma .chroma-gp {
1566
- color: var(--chroma-generic-prompt-fg);
1567
- }
1568
- .chroma .chroma-gs {
1569
- font-weight: bold;
1570
- }
1571
- .chroma .chroma-gu {
1572
- color: var(--chroma-generic-subheading-fg);
1573
- }
1574
- .chroma .chroma-gt {
1575
- color: var(--chroma-generic-traceback-fg);
1576
- }
1577
- .chroma .chroma-gl {
1578
- text-decoration: underline;
1579
- }
1580
- .chroma .chroma-w {
1581
- color: var(--chroma-text-whitespace-fg);
1582
- }
1583
-
1584
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Tooltip/Tooltip.module.css */
1585
- :root {
1586
- --tooltip-font-size: 0.75rem;
1587
- --tooltip-line-height: 1.02rem;
1588
- --tooltip-max-width: 256px;
1589
- --tooltip-color: var(--light-text);
1590
- --tooltip-border-radius: var(--border-radius);
1591
- --tooltip-padding-y: 0.25rem;
1592
- --tooltip-padding-x: 0.5rem;
1593
- --tooltip-margin: 0;
1594
- }
1595
- .Tooltip-module__tooltip-content {
1596
- font-size: var(--tooltip-font-size);
1597
- line-height: var(--tooltip-line-height);
1598
- max-width: var(--tooltip-max-width);
1599
- background-color: var(--tooltip-bg);
1600
- border-radius: var(--tooltip-border-radius);
1601
- color: var(--tooltip-color);
1602
- padding: var(--tooltip-padding-y) var(--tooltip-padding-x);
1603
- -webkit-user-select: text;
1604
- -moz-user-select: text;
1605
- user-select: text;
1606
- word-wrap: break-word;
1607
- border: none;
1608
- min-width: 0;
1609
- }
1610
- .Tooltip-module__tooltip-arrow {
1611
- --tail-background: var(--tooltip-bg);
1612
- --tail-border: none;
1613
- }
1614
- .Tooltip-module__tooltip-arrow[data-side=top] {
1615
- top: -2px;
1616
- }
1617
- .Tooltip-module__tooltip-arrow[data-side=left] {
1618
- left: -2px;
1619
- }
1620
- .Tooltip-module__tooltip-arrow[data-side=right] {
1621
- left: 2px;
1622
- }
1623
- .Tooltip-module__tooltip-arrow[data-side=bottom] {
1624
- top: 2px;
1625
- }
1626
- .Tooltip-module__tooltip-wrapper {
1627
- display: inline-flex;
1628
- -webkit-user-select: text;
1629
- -moz-user-select: text;
1630
- user-select: text;
1631
- }
1632
- .Tooltip-module__tooltip-trigger-container {
1633
- display: inline-block;
1634
- position: relative;
1635
- }
1636
- .Tooltip-module__tooltip-trigger-disabled-overlay {
1637
- cursor: not-allowed;
1638
- position: absolute;
1639
- height: 100%;
1640
- width: 100%;
1641
- z-index: 999999;
1642
- }
1643
-
1644
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Charts/core/components/axis/Tick.module.css */
1645
- .Tick-module__tick {
1646
- fill: var(--text-muted);
1647
- font-size: 0.75rem;
1648
- }
1649
-
1650
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Charts/core/components/axis/Axis.module.css */
1651
- .Axis-module__grid-line line {
1652
- stroke: var(--border-color-2);
1653
- stroke-width: 1;
1654
- }
1655
- .Axis-module__axis-line {
1656
- stroke: var(--border-color-2);
1657
- stroke-width: 1;
1658
- }
1659
- .Axis-module__axis-line--vertical {
1660
- stroke-width: 0;
1661
- display: none;
1662
- }
1663
- .Axis-module__axis-tick line {
1664
- stroke: var(--border-color-2);
1665
- stroke-width: 1;
1666
- }
1667
-
1668
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Charts/core/components/scroll-box/ScrollBox.module.css */
1669
- .ScrollBox-module__root {
1670
- --shutter-height-internal: var(--shutter-height, 2rem);
1671
- --shutter-color-start-internal: var(--shutter-color-start, var(--color-bg-1));
1672
- --shutter-color-stop-internal: var(--shutter-color-stop, rgba(249, 250, 251, 0));
1673
- position: relative;
1674
- overflow: hidden;
1675
- }
1676
- .ScrollBox-module__root::before,
1677
- .ScrollBox-module__root::after {
1678
- content: "";
1679
- display: block;
1680
- position: absolute;
1681
- width: 100%;
1682
- height: var(--shutter-height-internal);
1683
- max-height: 100%;
1684
- opacity: 0;
1685
- pointer-events: none;
1686
- transition: opacity 0.3s ease;
1687
- }
1688
- .ScrollBox-module__root::before {
1689
- top: 0;
1690
- background: linear-gradient(0deg, var(--shutter-color-stop-internal) 0%, var(--shutter-color-start-internal) 100%);
1691
- }
1692
- .ScrollBox-module__root::after {
1693
- bottom: 0;
1694
- background: linear-gradient(180deg, var(--shutter-color-stop-internal) 0%, var(--shutter-color-start-internal) 100%);
1695
- }
1696
- .ScrollBox-module__root--with-top-fader::before {
1697
- opacity: 1;
1698
- }
1699
- .ScrollBox-module__root--with-bottom-fader::after {
1700
- opacity: 1;
1701
- }
1702
- .ScrollBox-module__scroll-container {
1703
- overflow-y: auto;
1704
- height: 100%;
1705
- }
1706
-
1707
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Charts/core/components/tooltip/Tooltip.module.css */
1708
- .Tooltip-module__tooltip {
1709
- pointer-events: none;
1710
- padding: 0.5rem;
1711
- }
1712
- .Tooltip-module__tail {
1713
- pointer-events: none;
1714
- }
1715
- .Tooltip-module__tooltip-list {
1716
- list-style: none;
1717
- margin: 0;
1718
- padding: 0;
1719
- display: flex;
1720
- flex-direction: column;
1721
- gap: 0.25rem;
1722
- min-width: 12rem;
1723
- max-width: 20rem;
1724
- }
1725
- .Tooltip-module__item {
1726
- display: flex;
1727
- align-items: baseline;
1728
- padding: 0.125rem 0.25rem;
1729
- border-radius: 0.25rem;
1730
- font-weight: normal;
1731
- font-size: 0.75rem;
1732
- }
1733
- .Tooltip-module__item--active {
1734
- background-color: var(--secondary-2);
1735
- }
1736
- .Tooltip-module__legend-text {
1737
- flex-grow: 1;
1738
- overflow: hidden;
1739
- text-overflow: ellipsis;
1740
- margin-right: 1rem;
1741
- }
1742
- .Tooltip-module__legend-stacked-value {
1743
- font-weight: bold;
1744
- }
1745
- .Tooltip-module__mark {
1746
- align-self: baseline;
1747
- width: 0.5rem;
1748
- height: 0.5rem;
1749
- flex-shrink: 0;
1750
- margin-right: 0.25rem;
1751
- border-radius: 50%;
1752
- }
1753
-
1754
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Charts/components/line-chart/components/legend-list/LegendList.module.css */
1755
- .LegendList-module__legend-list {
1756
- display: flex;
1757
- flex-wrap: wrap;
1758
- -moz-column-gap: 0.5rem;
1759
- column-gap: 0.5rem;
1760
- row-gap: 0.25rem;
1761
- list-style: none;
1762
- margin: 0;
1763
- padding: 0;
1764
- line-height: 1.3;
1765
- }
1766
- .LegendList-module__legend-item {
1767
- display: flex;
1768
- align-items: flex-start;
1769
- word-break: break-all;
1770
- }
1771
- .LegendList-module__legend-mark-container {
1772
- display: flex;
1773
- align-items: center;
1774
- }
1775
- .LegendList-module__legend-mark-container::before {
1776
- content: "a";
1777
- width: 0;
1778
- visibility: hidden;
1779
- }
1780
- .LegendList-module__legend-mark {
1781
- display: flex;
1782
- align-items: center;
1783
- width: 0.5rem;
1784
- height: 0.5rem;
1785
- flex-shrink: 0;
1786
- margin-right: 0.25rem;
1787
- border-radius: 50%;
1788
- }
1789
-
1790
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Charts/components/line-chart/LineChartContent.module.css */
1791
- .LineChartContent-module__svg--with-cursor {
1792
- cursor: pointer;
1793
- }
1794
-
1795
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Charts/components/line-chart/LineChart.module.css */
1796
- .LineChart-module__root:focus,
1797
- .LineChart-module__root:focus-within {
1798
- box-shadow: var(--focus-box-shadow);
1799
- }
1800
-
1801
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Charts/components/pie-chart/components/PieArc.module.css */
1802
- .PieArc-module__label {
1803
- pointer-events: inherit !important;
1804
- }
1805
- .PieArc-module__label div {
1806
- background-color: var(--body-bg);
1807
- border: 1px solid var(--border-color);
1808
- padding: 0.25rem 0.5rem;
1809
- }
1810
- .PieArc-module__label-title {
1811
- font-weight: 400;
1812
- font-size: 1rem;
1813
- color: var(--body-color);
1814
- background-color: var(--body-bg);
1815
- text-decoration: none;
1816
- max-width: 150px;
1817
- text-overflow: ellipsis;
1818
- overflow: hidden;
1819
- margin-bottom: 0;
1820
- }
1821
- .PieArc-module__label-sub-title {
1822
- color: var(--text-muted);
1823
- text-decoration: none;
1824
- margin-bottom: 0;
1825
- }
1826
- .PieArc-module__arc {
1827
- stroke: var(--body-bg);
1828
- }
1829
- .PieArc-module__arc-path {
1830
- stroke-width: 1;
1831
- stroke: var(--body-bg);
1832
- }
1833
- .PieArc-module__label-line,
1834
- .PieArc-module__label-circle {
1835
- stroke: var(--body-color);
1836
- fill: var(--body-color);
1837
- }
1838
-
1839
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Charts/components/pie-chart/PieChart.module.css */
1840
- .PieChart-module__svg {
1841
- overflow: visible;
1842
- }
1843
- .PieChart-module__link {
1844
- text-decoration: none;
1845
- }
1846
- .PieChart-module__link:focus .PieChart-module__arc-path {
1847
- stroke-width: 3;
1848
- stroke: var(--primary);
1849
- }
1850
- .PieChart-module__link--fade {
1851
- opacity: 0.5;
1852
- }
1853
- .PieChart-module__arc-path--fake {
1854
- stroke-width: 3;
1855
- stroke: var(--primary);
1856
- transform: scale(1.03);
1857
- }
1858
-
1859
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Charts/components/bar-chart/components/GroupedBars.module.css */
1860
- .theme-dark .GroupedBars-module__bar--fade {
1861
- filter: brightness(0.5);
1862
- }
1863
- .theme-light .GroupedBars-module__bar--fade {
1864
- filter: sepia(45%) brightness(134%) contrast(1.2) opacity(0.9);
1865
- }
1866
-
1867
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Charts/components/bar-chart/components/TooltipContent.module.css */
1868
- .TooltipContent-module__one-line-tooltip {
1869
- display: flex;
1870
- justify-content: space-between;
1871
- gap: 2rem;
1872
- margin: 0;
1873
- }
1874
-
1875
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Charts/components/bar-chart/BarChartContent.module.css */
1876
- .BarChartContent-module__root {
1877
- pointer-events: bounding-box;
1878
- }
1879
- .BarChartContent-module__root--with-hovered-link-point {
1880
- cursor: pointer;
1881
- }
1882
-
1883
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Form/internal/BaseControlInput.module.css */
1884
- .BaseControlInput-module__label:hover {
1885
- color: var(--input-label-hover-color);
1886
- }
1887
-
1888
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Form/TextArea/TextArea.module.css */
1889
- .TextArea-module__label {
1890
- text-align: left;
1891
- display: block;
1892
- margin-bottom: 0;
1893
- }
1894
- .TextArea-module__textarea {
1895
- margin: 0;
1896
- }
1897
- .TextArea-module__resize-none {
1898
- resize: none;
1899
- }
1900
-
1901
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Form/FlexTextArea/FlexTextArea.module.css */
1902
- .FlexTextArea-module__textarea {
1903
- margin: 0;
1904
- }
1905
-
1906
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/LoadingSpinner/LoadingSpinner.module.css */
1907
- .LoadingSpinner-module__loading-spinner {
1908
- margin: 0.125rem;
1909
- width: 1rem;
1910
- height: 1rem;
1911
- border-radius: 50%;
1912
- animation: LoadingSpinner-module__loading-spinner-spin 1s linear infinite;
1913
- border: 2px solid var(--loading-spinner-outer-color, rgba(0, 0, 0, 0.3));
1914
- border-top: 2px solid var(--loading-spinner-inner-color, black);
1915
- }
1916
- .theme-light .LoadingSpinner-module__loading-spinner {
1917
- --loading-spinner-outer-color: var(--gray-05);
1918
- --loading-spinner-inner-color: var(--gray-08);
1919
- }
1920
- .theme-dark .LoadingSpinner-module__loading-spinner {
1921
- --loading-spinner-outer-color: var(--gray-07);
1922
- --loading-spinner-inner-color: var(--white);
1923
- }
1924
- @keyframes LoadingSpinner-module__loading-spinner-spin {
1925
- 0% {
1926
- transform: rotate(0deg);
1927
- }
1928
- 100% {
1929
- transform: rotate(360deg);
1930
- }
1931
- }
1932
-
1933
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Form/LoaderInput/LoaderInput.module.css */
1934
- .LoaderInput-module__container {
1935
- position: relative;
1936
- }
1937
- .LoaderInput-module__spinner {
1938
- position: absolute;
1939
- right: calc(0.5rem - 1px);
1940
- top: calc(0.5rem - 1px);
1941
- }
1942
-
1943
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Form/Input/Input.module.css */
1944
- .Input-module__label {
1945
- width: 100%;
1946
- }
1947
- .Input-module__input-loading {
1948
- padding-right: 2rem;
1949
- }
1950
- .Input-module__loader-input {
1951
- display: flex;
1952
- }
1953
- .Input-module__description-block {
1954
- margin: 0 0 0 0.25rem;
1955
- }
1956
- .Input-module__description-block ul {
1957
- margin: 0;
1958
- padding-left: 1rem;
1959
- }
1960
-
1961
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Form/Select/Select.module.css */
1962
- .Select-module__label-block {
1963
- width: 100%;
1964
- margin-bottom: 0.5rem;
1965
- }
1966
-
1967
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Form/FormGroup/FormGroup.module.css */
1968
- .FormGroup-module__description {
1969
- font-size: 0.875rem;
1970
- }
1971
- .FormGroup-module__label {
1972
- font-weight: bold;
1973
- }
1974
-
1975
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/PageHeader/Breadcrumb/Breadcrumb.module.css */
1976
- :root {
1977
- --path-icon-size: calc(22em / 26);
1978
- }
1979
- .Breadcrumb-module__wrapper {
1980
- display: inline-flex;
1981
- align-items: center;
1982
- }
1983
- .Breadcrumb-module__wrapper:not(:last-child)::after {
1984
- content: "/";
1985
- display: block;
1986
- margin-right: 0.5rem;
1987
- color: var(--icon-color);
1988
- font-weight: 400;
1989
- }
1990
- .Breadcrumb-module__path {
1991
- display: inline-flex;
1992
- align-items: center;
1993
- }
1994
- .Breadcrumb-module__icon {
1995
- margin-right: 0.5rem;
1996
- height: var(--path-icon-size);
1997
- width: var(--path-icon-size);
1998
- }
1999
- .Breadcrumb-module__text {
2000
- margin-right: 0.5rem;
2001
- }
2002
-
2003
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/PageHeader/Heading/Heading.module.css */
2004
- .Heading-module__heading {
2005
- display: flex;
2006
- flex-wrap: wrap;
2007
- flex-grow: 1;
2008
- align-items: center;
2009
- margin: 0;
2010
- word-break: break-word;
2011
- }
2012
-
2013
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/PageHeader/PageHeader.module.css */
2014
- :root {
2015
- --viewport-sm: 576px;
2016
- --viewport-md: 768px;
2017
- --viewport-lg: 992px;
2018
- --viewport-xl: 1200px;
2019
- }
2020
- .PageHeader-module__container {
2021
- display: flex;
2022
- flex-direction: column;
2023
- flex-wrap: wrap;
2024
- justify-content: space-between;
2025
- gap: 1rem;
2026
- }
2027
- @media (min-width: 768px) {
2028
- .PageHeader-module__container {
2029
- flex-direction: row;
2030
- align-items: flex-end;
2031
- }
2032
- }
2033
- .PageHeader-module__annotation {
2034
- display: block;
2035
- margin-bottom: 0.5rem;
2036
- }
2037
- .PageHeader-module__byline {
2038
- display: block;
2039
- margin-top: 0.5rem;
2040
- }
2041
- .PageHeader-module__description {
2042
- display: block;
2043
- margin-top: 0.5rem;
2044
- margin-bottom: 0;
2045
- }
2046
- .PageHeader-module__breadcrumb svg {
2047
- flex-shrink: 0;
2048
- }
2049
-
2050
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/PageSelector/PageSelector.module.css */
2051
- .PageSelector-module__list {
2052
- display: flex;
2053
- align-items: center;
2054
- justify-content: center;
2055
- list-style: none;
2056
- margin-left: 0;
2057
- margin-right: 0;
2058
- padding: 0;
2059
- }
2060
- .PageSelector-module__button {
2061
- min-width: 2rem;
2062
- padding: 0.25rem 0.5rem;
2063
- transition: none;
2064
- }
2065
- .PageSelector-module__button:focus,
2066
- .PageSelector-module__button:hover {
2067
- text-decoration: none;
2068
- }
2069
- .PageSelector-module__button:hover:not(.btn-primary):not(:disabled) {
2070
- background-color: var(--color-bg-2);
2071
- color: var(--link-color);
2072
- }
2073
-
2074
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/PageSwitcher/PageSwitcher.module.css */
2075
- .PageSwitcher-module__list,
2076
- .PageSwitcher-module__label {
2077
- display: flex;
2078
- align-items: center;
2079
- justify-content: center;
2080
- margin-left: 0;
2081
- margin-right: 0;
2082
- padding: 0;
2083
- margin-bottom: 0.625rem;
2084
- }
2085
- .PageSwitcher-module__list {
2086
- list-style: none;
2087
- }
2088
- .PageSwitcher-module__button {
2089
- min-width: 2rem;
2090
- padding: 0.25rem 0.5rem;
2091
- }
2092
- .PageSwitcher-module__button:focus,
2093
- .PageSwitcher-module__button:hover {
2094
- text-decoration: none;
2095
- }
2096
- .PageSwitcher-module__next-button,
2097
- .PageSwitcher-module__previous-button {
2098
- min-width: 4.5rem;
2099
- display: flex;
2100
- align-items: center;
2101
- }
2102
- .PageSwitcher-module__next-button-icon,
2103
- .PageSwitcher-module__previous-button-icon {
2104
- flex-grow: 0;
2105
- }
2106
- .PageSwitcher-module__next-button-label,
2107
- .PageSwitcher-module__previous-button-label {
2108
- flex-grow: 1;
2109
- text-align: center;
2110
- }
2111
- .PageSwitcher-module__first-page-button,
2112
- .PageSwitcher-module__last-page-button {
2113
- fill: currentColor !important;
2114
- }
2115
-
2116
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Tabs/Tabs.module.css */
2117
- :root {
2118
- --reach-tabs: 1;
2119
- }
2120
- [data-reach-tabs][data-orientation=vertical] {
2121
- display: flex;
2122
- }
2123
- [data-reach-tab-list] {
2124
- display: flex;
2125
- background: hsla(0, 0%, 0%, 0.05);
2126
- }
2127
- [data-reach-tab-list][aria-orientation=vertical] {
2128
- flex-direction: column;
2129
- }
2130
- [data-reach-tab] {
2131
- display: inline-block;
2132
- border: none;
2133
- padding: 0.25em 0.5em;
2134
- margin: 0;
2135
- border-bottom: 1px solid transparent;
2136
- background: none;
2137
- color: inherit;
2138
- font: inherit;
2139
- cursor: pointer;
2140
- -webkit-appearance: none;
2141
- -moz-appearance: none;
2142
- }
2143
- [data-reach-tab]:active {
2144
- background: hsla(0, 0%, 0%, 0.05);
2145
- }
2146
- [data-reach-tab]:disabled {
2147
- opacity: 0.25;
2148
- cursor: default;
2149
- }
2150
- [data-reach-tab][data-selected] {
2151
- border-bottom-color: currentColor;
2152
- }
2153
- .Tabs-module__wildcard-tabs {
2154
- --opacity-transition: 0.3s;
2155
- --scroll-gradient-color: var(--body-bg);
2156
- --small-size-font: 0.75rem;
2157
- --medium-size-font: 0.875rem;
2158
- --large-size-font: 1rem;
2159
- }
2160
- .Tabs-module__wildcard-tabs[data-reach-tabs] {
2161
- background: transparent;
2162
- }
2163
- .Tabs-module__wildcard-tabs [data-reach-tab] {
2164
- align-items: center;
2165
- letter-spacing: normal;
2166
- margin: 0;
2167
- min-height: 2rem;
2168
- padding: 0 0.125rem;
2169
- color: var(--body-color);
2170
- text-transform: none;
2171
- display: inline-flex;
2172
- flex-direction: column;
2173
- justify-content: center;
2174
- border-bottom: 2px solid transparent;
2175
- }
2176
- .Tabs-module__wildcard-tabs [data-reach-tab]:active {
2177
- background-color: transparent;
2178
- }
2179
- .Tabs-module__wildcard-tabs [data-reach-tab]:hover {
2180
- border-bottom: 2px solid var(--border-color);
2181
- }
2182
- .Tabs-module__wildcard-tabs [data-reach-tab][data-selected] {
2183
- color: var(--body-color);
2184
- font-weight: 700;
2185
- border-bottom: 2px solid var(--brand-secondary);
2186
- }
2187
- .Tabs-module__wildcard-tabs [data-reach-tab]::after {
2188
- content: attr(data-tab-content);
2189
- height: 0;
2190
- text-transform: capitalize;
2191
- visibility: hidden;
2192
- overflow: hidden;
2193
- -webkit-user-select: none;
2194
- -moz-user-select: none;
2195
- user-select: none;
2196
- pointer-events: none;
2197
- font-weight: 700;
2198
- }
2199
- .Tabs-module__wildcard-tabs [data-reach-tab]:first-of-type {
2200
- margin-left: 0;
2201
- }
2202
- .Tabs-module__wildcard-tabs [data-reach-tab].Tabs-module__focus-visible {
2203
- outline: none;
2204
- box-shadow: none;
2205
- }
2206
- .Tabs-module__wildcard-tabs [data-reach-tab]:focus-visible {
2207
- outline: none;
2208
- box-shadow: none;
2209
- }
2210
- .Tabs-module__wildcard-tabs [data-reach-tab].Tabs-module__focus-visible > .Tabs-module__tab-label {
2211
- padding: 0.125rem;
2212
- margin: -0.125rem;
2213
- border-radius: var(--border-radius);
2214
- outline: 1px solid transparent;
2215
- box-shadow: var(--focus-box-shadow);
2216
- }
2217
- .Tabs-module__wildcard-tabs [data-reach-tab]:focus-visible > .Tabs-module__tab-label {
2218
- padding: 0.125rem;
2219
- margin: -0.125rem;
2220
- border-radius: var(--border-radius);
2221
- outline: 1px solid transparent;
2222
- box-shadow: var(--focus-box-shadow);
2223
- }
2224
- .Tabs-module__wildcard-tabs .Tabs-module__tab-nowrap {
2225
- white-space: nowrap;
2226
- }
2227
- .Tabs-module__wildcard-tabs [data-reach-tab-list] {
2228
- background: transparent;
2229
- }
2230
- .Tabs-module__wildcard-tabs .Tabs-module__tablist-wrapper {
2231
- position: relative;
2232
- border-bottom: 1px solid var(--border-color-2);
2233
- padding-bottom: 0;
2234
- display: flex;
2235
- align-items: stretch;
2236
- justify-content: space-between;
2237
- }
2238
- .Tabs-module__wildcard-tabs .Tabs-module__tablist-wrapper::after,
2239
- .Tabs-module__wildcard-tabs .Tabs-module__tablist-wrapper::before {
2240
- content: "";
2241
- position: absolute;
2242
- width: 5rem;
2243
- top: 0;
2244
- height: 100%;
2245
- pointer-events: none;
2246
- opacity: 0;
2247
- transition: opacity var(--opacity-transition) ease;
2248
- }
2249
- @media (prefers-reduced-motion: reduce) {
2250
- .Tabs-module__wildcard-tabs .Tabs-module__tablist-wrapper::after,
2251
- .Tabs-module__wildcard-tabs .Tabs-module__tablist-wrapper::before {
2252
- transition: none;
2253
- }
2254
- }
2255
- .Tabs-module__wildcard-tabs .Tabs-module__tablist-wrapper::before {
2256
- left: 0;
2257
- background: linear-gradient(to right, var(--scroll-gradient-color) 15%, rgba(0, 0, 0, 0));
2258
- }
2259
- .Tabs-module__wildcard-tabs .Tabs-module__tablist-wrapper::after {
2260
- right: 0;
2261
- background: linear-gradient(to left, var(--scroll-gradient-color) 15%, rgba(0, 0, 0, 0));
2262
- }
2263
- .Tabs-module__wildcard-tabs .Tabs-module__tablist-wrapper-obscured-left::before {
2264
- opacity: 1;
2265
- }
2266
- .Tabs-module__wildcard-tabs .Tabs-module__tablist-wrapper-obscured-right::after {
2267
- opacity: 1;
2268
- }
2269
- .Tabs-module__wildcard-tabs .Tabs-module__tab-list {
2270
- display: flex;
2271
- flex-wrap: wrap;
2272
- gap: 0.75rem;
2273
- }
2274
- .Tabs-module__wildcard-tabs .Tabs-module__tab-list-scroll {
2275
- flex-wrap: nowrap;
2276
- overflow-x: scroll;
2277
- }
2278
- .Tabs-module__wildcard-tabs .Tabs-module__small {
2279
- font-size: var(--small-size-font);
2280
- }
2281
- .Tabs-module__wildcard-tabs .Tabs-module__medium {
2282
- font-size: var(--medium-size-font);
2283
- }
2284
- .Tabs-module__wildcard-tabs .Tabs-module__large {
2285
- font-size: var(--large-size-font);
2286
- }
2287
-
2288
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Badge/Badge.module.css */
2289
- :root {
2290
- --badge-font-size: 0.75rem;
2291
- --badge-font-weight: 500;
2292
- --badge-padding-y: 0.125rem;
2293
- --badge-padding-x: 0.375rem;
2294
- --badge-border-radius: 3px;
2295
- --badge-transition:
2296
- color 0.15s ease-in-out,
2297
- background-color 0.15s ease-in-out,
2298
- border-color 0.15s ease-in-out,
2299
- box-shadow 0.15s ease-in-out;
2300
- }
2301
- .Badge-module__badge {
2302
- display: inline-block;
2303
- padding: var(--badge-padding-y) var(--badge-padding-x);
2304
- font-size: var(--badge-font-size);
2305
- font-weight: var(--badge-font-weight);
2306
- text-align: center;
2307
- white-space: nowrap;
2308
- vertical-align: baseline;
2309
- border-radius: var(--badge-border-radius);
2310
- background-color: var(--subtle-bg);
2311
- color: var(--link-color);
2312
- border: none;
2313
- line-height: 1rem;
2314
- }
2315
- .Badge-module__badge:focus,
2316
- .Badge-module__badge.Badge-module__focus {
2317
- outline: 0;
2318
- }
2319
- a.Badge-module__badge:hover,
2320
- a.Badge-module__badge:focus {
2321
- text-decoration: none;
2322
- }
2323
- .Badge-module__badge:empty {
2324
- display: none;
2325
- }
2326
- .Badge-module__btn .Badge-module__badge {
2327
- position: relative;
2328
- top: -1px;
2329
- }
2330
- .Badge-module__pill {
2331
- padding-right: 0.6em;
2332
- padding-left: 0.6em;
2333
- border-radius: 10rem;
2334
- }
2335
- .Badge-module__sm {
2336
- --badge-font-size: 0.6875rem;
2337
- --badge-padding-y: 0;
2338
- --badge-padding-x: 0.25rem;
2339
- --badge-border-radius: 2px;
2340
- }
2341
- a.Badge-module__badge {
2342
- transition: var(--badge-transition);
2343
- }
2344
- .Badge-module__primary,
2345
- .Badge-module__secondary,
2346
- .Badge-module__success,
2347
- .Badge-module__danger,
2348
- .Badge-module__info,
2349
- .Badge-module__warning,
2350
- .Badge-module__merged,
2351
- .Badge-module__outline-secondary {
2352
- background-color: var(--badge-base);
2353
- color: var(--badge-text);
2354
- border: var(--badge-border, none);
2355
- }
2356
- a.Badge-module__primary,
2357
- a.Badge-module__secondary,
2358
- a.Badge-module__success,
2359
- a.Badge-module__danger,
2360
- a.Badge-module__info,
2361
- a.Badge-module__warning,
2362
- a.Badge-module__merged,
2363
- a.Badge-module__outline-secondary {
2364
- background-color: var(--badge-base);
2365
- color: var(--badge-text);
2366
- }
2367
- a.Badge-module__primary:hover,
2368
- a.Badge-module__primary:focus,
2369
- a.Badge-module__primary.Badge-module__focus,
2370
- a.Badge-module__secondary:hover,
2371
- a.Badge-module__secondary:focus,
2372
- a.Badge-module__secondary.Badge-module__focus,
2373
- a.Badge-module__success:hover,
2374
- a.Badge-module__success:focus,
2375
- a.Badge-module__success.Badge-module__focus,
2376
- a.Badge-module__danger:hover,
2377
- a.Badge-module__danger:focus,
2378
- a.Badge-module__danger.Badge-module__focus,
2379
- a.Badge-module__info:hover,
2380
- a.Badge-module__info:focus,
2381
- a.Badge-module__info.Badge-module__focus,
2382
- a.Badge-module__warning:hover,
2383
- a.Badge-module__warning:focus,
2384
- a.Badge-module__warning.Badge-module__focus,
2385
- a.Badge-module__merged:hover,
2386
- a.Badge-module__merged:focus,
2387
- a.Badge-module__merged.Badge-module__focus,
2388
- a.Badge-module__outline-secondary:hover,
2389
- a.Badge-module__outline-secondary:focus,
2390
- a.Badge-module__outline-secondary.Badge-module__focus {
2391
- color: var(--badge-text);
2392
- background-color: var(--badge-dark);
2393
- }
2394
- a.Badge-module__primary:focus,
2395
- a.Badge-module__primary.Badge-module__focus,
2396
- a.Badge-module__secondary:focus,
2397
- a.Badge-module__secondary.Badge-module__focus,
2398
- a.Badge-module__success:focus,
2399
- a.Badge-module__success.Badge-module__focus,
2400
- a.Badge-module__danger:focus,
2401
- a.Badge-module__danger.Badge-module__focus,
2402
- a.Badge-module__info:focus,
2403
- a.Badge-module__info.Badge-module__focus,
2404
- a.Badge-module__warning:focus,
2405
- a.Badge-module__warning.Badge-module__focus,
2406
- a.Badge-module__merged:focus,
2407
- a.Badge-module__merged.Badge-module__focus,
2408
- a.Badge-module__outline-secondary:focus,
2409
- a.Badge-module__outline-secondary.Badge-module__focus {
2410
- outline: 0;
2411
- }
2412
- .theme-light a.Badge-module__primary:focus,
2413
- .theme-light a.Badge-module__primary.Badge-module__focus,
2414
- .theme-light a.Badge-module__secondary:focus,
2415
- .theme-light a.Badge-module__secondary.Badge-module__focus,
2416
- .theme-light a.Badge-module__success:focus,
2417
- .theme-light a.Badge-module__success.Badge-module__focus,
2418
- .theme-light a.Badge-module__danger:focus,
2419
- .theme-light a.Badge-module__danger.Badge-module__focus,
2420
- .theme-light a.Badge-module__info:focus,
2421
- .theme-light a.Badge-module__info.Badge-module__focus,
2422
- .theme-light a.Badge-module__warning:focus,
2423
- .theme-light a.Badge-module__warning.Badge-module__focus,
2424
- .theme-light a.Badge-module__merged:focus,
2425
- .theme-light a.Badge-module__merged.Badge-module__focus,
2426
- .theme-light a.Badge-module__outline-secondary:focus,
2427
- .theme-light a.Badge-module__outline-secondary.Badge-module__focus {
2428
- box-shadow: 0 0 0 0.125rem var(--badge-light);
2429
- }
2430
- .theme-dark a.Badge-module__primary:focus,
2431
- .theme-dark a.Badge-module__primary.Badge-module__focus,
2432
- .theme-dark a.Badge-module__secondary:focus,
2433
- .theme-dark a.Badge-module__secondary.Badge-module__focus,
2434
- .theme-dark a.Badge-module__success:focus,
2435
- .theme-dark a.Badge-module__success.Badge-module__focus,
2436
- .theme-dark a.Badge-module__danger:focus,
2437
- .theme-dark a.Badge-module__danger.Badge-module__focus,
2438
- .theme-dark a.Badge-module__info:focus,
2439
- .theme-dark a.Badge-module__info.Badge-module__focus,
2440
- .theme-dark a.Badge-module__warning:focus,
2441
- .theme-dark a.Badge-module__warning.Badge-module__focus,
2442
- .theme-dark a.Badge-module__merged:focus,
2443
- .theme-dark a.Badge-module__merged.Badge-module__focus,
2444
- .theme-dark a.Badge-module__outline-secondary:focus,
2445
- .theme-dark a.Badge-module__outline-secondary.Badge-module__focus {
2446
- box-shadow: 0 0 0 0.125rem var(--badge-dark);
2447
- }
2448
- .Badge-module__primary {
2449
- --badge-base: var(--primary);
2450
- --badge-light: var(--primary-2);
2451
- --badge-dark: var(--primary-3);
2452
- --badge-text: var(--light-text);
2453
- }
2454
- .Badge-module__secondary {
2455
- --badge-base: var(--secondary);
2456
- --badge-light: var(--secondary-2);
2457
- --badge-dark: var(--secondary-3);
2458
- --badge-text: var(--body-color);
2459
- }
2460
- .Badge-module__success {
2461
- --badge-base: var(--success);
2462
- --badge-light: var(--success-2);
2463
- --badge-dark: var(--success-3);
2464
- --badge-text: var(--light-text);
2465
- }
2466
- .Badge-module__danger {
2467
- --badge-base: var(--danger);
2468
- --badge-light: var(--danger-2);
2469
- --badge-dark: var(--danger-3);
2470
- --badge-text: var(--light-text);
2471
- }
2472
- .Badge-module__info {
2473
- --badge-base: var(--info);
2474
- --badge-light: var(--info-2);
2475
- --badge-dark: var(--info-3);
2476
- --badge-text: var(--dark-text);
2477
- }
2478
- .Badge-module__warning {
2479
- --badge-base: var(--warning);
2480
- --badge-light: var(--warning-2);
2481
- --badge-dark: var(--warning-3);
2482
- --badge-text: var(--dark-text);
2483
- }
2484
- .Badge-module__merged {
2485
- --badge-base: var(--merged);
2486
- --badge-light: var(--merged-2);
2487
- --badge-dark: var(--merged-3);
2488
- --badge-text: var(--light-text);
2489
- }
2490
- .Badge-module__outline-secondary {
2491
- --badge-base: transparent;
2492
- --badge-light: var(--secondary-2);
2493
- --badge-dark: var(--secondary-2);
2494
- --badge-text: var(--text-muted);
2495
- --badge-border: 1px solid var(--secondary);
2496
- }
2497
- .theme-light a.Badge-module__secondary:focus,
2498
- .theme-light a.Badge-module__secondary.Badge-module__focus,
2499
- .theme-light a.Badge-module__outline-secondary:focus,
2500
- .theme-light a.Badge-module__outline-secondary.Badge-module__focus,
2501
- .theme-dark a.Badge-module__secondary:focus,
2502
- .theme-dark a.Badge-module__secondary.Badge-module__focus,
2503
- .theme-dark a.Badge-module__outline-secondary:focus,
2504
- .theme-dark a.Badge-module__outline-secondary.Badge-module__focus {
2505
- box-shadow: var(--focus-box-shadow);
2506
- }
2507
- .theme-light a.Badge-module__secondary:hover,
2508
- .theme-light a.Badge-module__secondary:focus,
2509
- .theme-light a.Badge-module__secondary.Badge-module__focus,
2510
- .theme-dark a.Badge-module__secondary:hover,
2511
- .theme-dark a.Badge-module__secondary:focus,
2512
- .theme-dark a.Badge-module__secondary.Badge-module__focus {
2513
- color: var(--body-color);
2514
- }
2515
- .theme-light a.Badge-module__outline-secondary:hover,
2516
- .theme-light a.Badge-module__outline-secondary:focus,
2517
- .theme-light a.Badge-module__outline-secondary.Badge-module__focus {
2518
- border-color: var(--secondary);
2519
- }
2520
- .theme-dark a.Badge-module__outline-secondary:hover,
2521
- .theme-dark a.Badge-module__outline-secondary:focus,
2522
- .theme-dark a.Badge-module__outline-secondary.Badge-module__focus {
2523
- border-color: var(--secondary-4);
2524
- }
2525
-
2526
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Badge/ProductStatusBadge.module.css */
2527
- .ProductStatusBadge-module__product-status-badge {
2528
- display: inline-flex;
2529
- align-items: center;
2530
- text-transform: capitalize;
2531
- }
2532
-
2533
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Panel/Panel.module.css */
2534
- .Panel-module__panel {
2535
- --panel-handle-size: 0.35rem;
2536
- --panel-handle-bg-color: var(--border-color-2);
2537
- --panel-handle-resizing-bg-color: var(--border-color);
2538
- overflow: visible;
2539
- bottom: 0;
2540
- }
2541
- .Panel-module__panel--bottom {
2542
- left: 0;
2543
- right: 0;
2544
- }
2545
- .Panel-module__panel--right,
2546
- .Panel-module__panel--left {
2547
- height: 100%;
2548
- top: 0;
2549
- }
2550
- .Panel-module__panel--left {
2551
- left: 0;
2552
- }
2553
- .Panel-module__panel--right {
2554
- right: 0;
2555
- }
2556
- .Panel-module__panel--fixed {
2557
- position: fixed;
2558
- }
2559
- .Panel-module__panel--relative {
2560
- position: relative;
2561
- flex: 0 0 auto;
2562
- }
2563
- .Panel-module__handle {
2564
- position: absolute;
2565
- opacity: 0;
2566
- -webkit-user-select: none;
2567
- -moz-user-select: none;
2568
- user-select: none;
2569
- z-index: 1;
2570
- flex-shrink: 0;
2571
- }
2572
- .Panel-module__handle--right,
2573
- .Panel-module__handle--left {
2574
- width: var(--panel-handle-size);
2575
- cursor: ew-resize;
2576
- top: 0;
2577
- bottom: 0;
2578
- }
2579
- .Panel-module__handle--right {
2580
- left: calc(-0.5 * var(--panel-handle-size));
2581
- }
2582
- .Panel-module__handle--left {
2583
- right: calc(-0.5 * var(--panel-handle-size));
2584
- }
2585
- .Panel-module__handle--bottom {
2586
- height: var(--panel-handle-size);
2587
- top: calc(-0.5 * var(--panel-handle-size));
2588
- cursor: ns-resize;
2589
- left: 0;
2590
- right: 0;
2591
- }
2592
- .Panel-module__handle:hover {
2593
- opacity: 0.5;
2594
- background-color: var(--border-color-2);
2595
- }
2596
- .Panel-module__handle--resizing,
2597
- .Panel-module__handle--resizing:hover {
2598
- opacity: 1;
2599
- background-color: var(--panel-handle-resizing-bg-color);
2600
- }
2601
-
2602
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Tree/Tree.module.css */
2603
- .Tree-module__file-tree.tree {
2604
- list-style: none;
2605
- margin: 0;
2606
- padding: 0.125rem;
2607
- }
2608
- .Tree-module__file-tree .tree-node,
2609
- .Tree-module__file-tree .tree-node-group {
2610
- list-style: none;
2611
- margin: 0;
2612
- padding: 0;
2613
- }
2614
- .Tree-module__file-tree .tree-branch-wrapper,
2615
- .Tree-module__file-tree .tree-node__leaf {
2616
- outline: none;
2617
- }
2618
- .Tree-module__file-tree .tree-node__branch {
2619
- display: block;
2620
- }
2621
- .Tree-module__file-tree .tree-node {
2622
- cursor: pointer;
2623
- }
2624
- .Tree-module__node {
2625
- padding: 0;
2626
- margin-right: 0.25rem;
2627
- border-radius: 0.25rem;
2628
- color: var(--text-muted);
2629
- -webkit-user-select: none;
2630
- -moz-user-select: none;
2631
- user-select: none;
2632
- display: flex;
2633
- align-items: center;
2634
- margin-top: 1px;
2635
- }
2636
- .Tree-module__node.Tree-module__selected,
2637
- .Tree-module__node:hover {
2638
- background-color: var(--color-bg-2);
2639
- color: var(--body-color);
2640
- }
2641
- .Tree-module__node .Tree-module__collapse-icon:hover {
2642
- background-color: var(--color-bg-3);
2643
- color: var(--body-color);
2644
- }
2645
- .Tree-module__node .Tree-module__collapse-icon {
2646
- min-height: 1.75rem;
2647
- min-width: 1rem;
2648
- display: flex;
2649
- align-items: center;
2650
- justify-content: center;
2651
- border-top-left-radius: 0.25rem;
2652
- border-bottom-left-radius: 0.25rem;
2653
- }
2654
- .Tree-module__node .Tree-module__content {
2655
- padding: 0.25rem;
2656
- padding-right: 0;
2657
- min-height: 1.75rem;
2658
- align-items: center;
2659
- border-radius: 0.25rem;
2660
- flex-grow: 1;
2661
- }
2662
- .Tree-module__node .Tree-module__content-in-branch {
2663
- padding-left: 0;
2664
- border-top-left-radius: 0;
2665
- border-bottom-left-radius: 0;
2666
- }
2667
- .Tree-module__node .Tree-module__collapse-icon,
2668
- .Tree-module__node .Tree-module__collapse-icon > * {
2669
- flex-shrink: 0;
2670
- }
2671
- .Tree-module__node a {
2672
- color: var(--body-color);
2673
- white-space: nowrap;
2674
- overflow: hidden;
2675
- text-overflow: ellipsis;
2676
- }
2677
- .tree-branch-wrapper.focus-visible {
2678
- box-shadow: none;
2679
- }
2680
- .focus-visible > .Tree-module__node {
2681
- outline: 0.125rem solid var(--primary-2);
2682
- }
2683
- .Tree-module__icon {
2684
- flex-shrink: 0;
2685
- width: 1rem;
2686
- height: 1rem;
2687
- }
2688
-
2689
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Card/Card.module.css */
2690
- :where(.Card-module__card) {
2691
- --card-bg: var(--color-bg-1);
2692
- --card-border-color: var(--border-color-2);
2693
- --card-border-radius: var(--border-radius);
2694
- --hover-box-shadow: 0 0 0 1px var(--primary) inset;
2695
- position: relative;
2696
- display: flex;
2697
- flex-direction: column;
2698
- min-width: 0;
2699
- word-wrap: break-word;
2700
- background-color: var(--card-bg);
2701
- background-clip: border-box;
2702
- border-width: 1px;
2703
- border-style: solid;
2704
- border-color: var(--card-border-color);
2705
- border-radius: var(--card-border-radius) !important;
2706
- }
2707
- button.Card-module__card {
2708
- cursor: pointer;
2709
- }
2710
- button.Card-module__card:hover:not(:disabled) {
2711
- --card-border-color: var(--primary);
2712
- box-shadow: var(--hover-box-shadow);
2713
- }
2714
- button.Card-module__card:focus {
2715
- --card-border-color: transparent;
2716
- box-shadow: var(--focus-box-shadow);
2717
- outline: none;
2718
- }
2719
-
2720
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Card/components/CardBody.module.css */
2721
- .CardBody-module__card-body {
2722
- flex: 1 1 auto;
2723
- min-height: 1px;
2724
- padding: 1rem;
2725
- color: var(--body-color);
2726
- }
2727
-
2728
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Card/components/CardHeader.module.css */
2729
- .CardHeader-module__card-header {
2730
- padding: 0.5rem;
2731
- background-color: var(--color-bg-2);
2732
- border-bottom: 1px solid var(--card-border-color);
2733
- }
2734
- .CardHeader-module__card-header:first-child {
2735
- border-radius: calc(var(--border-radius) - 1px) calc(var(--border-radius) - 1px) 0 0;
2736
- }
2737
-
2738
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Card/components/CardSubtitle.module.css */
2739
- .CardSubtitle-module__card-subtitle {
2740
- color: var(--text-muted);
2741
- font-size: 0.875rem;
2742
- }
2743
-
2744
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Card/components/CardTitle.module.css */
2745
- .CardTitle-module__card-title {
2746
- margin-bottom: 0.5rem;
2747
- font-size: 0.875rem;
2748
- }
2749
-
2750
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Card/components/CardText.module.css */
2751
- .CardText-module__card-text:last-child {
2752
- margin-bottom: 0;
2753
- }
2754
-
2755
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Card/components/CardList.module.css */
2756
- .CardList-module__list-group {
2757
- border-top: inherit;
2758
- border-bottom: inherit;
2759
- }
2760
- .CardList-module__list-group:first-child {
2761
- border-top-width: 0;
2762
- border-top-right-radius: var(--border-radius);
2763
- border-top-left-radius: var(--border-radius);
2764
- }
2765
- .CardList-module__list-group:last-child {
2766
- border-bottom-width: 0;
2767
- border-bottom-right-radius: var(--border-radius);
2768
- border-bottom-left-radius: var(--border-radius);
2769
- }
2770
-
2771
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Card/components/CardFooter.module.css */
2772
- .CardFooter-module__card-footer {
2773
- padding: 0.5rem;
2774
- background-color: var(--color-bg-2);
2775
- }
2776
- .CardFooter-module__card-footer:last-child {
2777
- border-radius: 0 0 calc(var(--border-radius) - 1px) calc(var(--border-radius) - 1px);
2778
- }
2779
-
2780
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Modal/Modal.module.css */
2781
- :root {
2782
- --reach-dialog: 1;
2783
- }
2784
- [data-reach-dialog-overlay] {
2785
- background: hsla(0, 0%, 0%, 0.33);
2786
- position: fixed;
2787
- top: 0;
2788
- right: 0;
2789
- bottom: 0;
2790
- left: 0;
2791
- overflow: auto;
2792
- }
2793
- [data-reach-dialog-content] {
2794
- width: 50vw;
2795
- margin: 10vh auto;
2796
- background: white;
2797
- padding: 2rem;
2798
- outline: none;
2799
- }
2800
- :root {
2801
- --modal-body-padding: 1.5rem;
2802
- }
2803
- [data-reach-dialog-overlay] {
2804
- background-color: var(--modal-bg);
2805
- }
2806
- [data-reach-dialog-content] {
2807
- background-color: var(--color-bg-1);
2808
- }
2809
- .Modal-module__modal {
2810
- background-color: var(--color-bg-1);
2811
- width: 32rem;
2812
- max-width: 100vw;
2813
- padding: var(--modal-body-padding);
2814
- border-radius: var(--border-radius);
2815
- border: 1px solid var(--border-color);
2816
- }
2817
- .Modal-module__center,
2818
- .Modal-module__top-third {
2819
- transform: translate(-50%, -50%);
2820
- position: absolute;
2821
- top: 50%;
2822
- margin: 0;
2823
- left: 50%;
2824
- }
2825
- .Modal-module__top-third {
2826
- top: 33%;
2827
- }
2828
- .Modal-module__full {
2829
- width: 100%;
2830
- }
2831
-
2832
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Feedback/FeedbackBadge/FeedbackBadge.module.css */
2833
- .FeedbackBadge-module__feedback-badge {
2834
- display: flex;
2835
- align-items: center;
2836
- }
2837
- .FeedbackBadge-module__product-status-badge {
2838
- text-transform: uppercase;
2839
- }
2840
- .FeedbackBadge-module__anchor {
2841
- margin-left: 0.5rem;
2842
- }
2843
-
2844
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Feedback/FeedbackPrompt/FeedbackPrompt.module.css */
2845
- .FeedbackPrompt-module__feedback-prompt {
2846
- margin: 0 0.375rem;
2847
- white-space: normal;
2848
- }
2849
- .FeedbackPrompt-module__menu {
2850
- width: 20rem;
2851
- padding: 1rem;
2852
- }
2853
- .FeedbackPrompt-module__close {
2854
- display: flex;
2855
- position: absolute;
2856
- padding: 0;
2857
- top: 1rem;
2858
- right: 1rem;
2859
- border: none;
2860
- background: transparent;
2861
- }
2862
- .FeedbackPrompt-module__icon {
2863
- height: 1.125rem;
2864
- width: 1.125rem;
2865
- color: var(--icon-color);
2866
- }
2867
- .FeedbackPrompt-module__from {
2868
- color: var(--text-muted);
2869
- border: solid 1px var(--input-border-color);
2870
- border-bottom-width: 0;
2871
- border-radius: var(--border-radius);
2872
- border-bottom-left-radius: 0;
2873
- border-bottom-right-radius: 0;
2874
- margin-bottom: 0;
2875
- padding: 0.25rem;
2876
- -webkit-user-select: none;
2877
- -moz-user-select: none;
2878
- user-select: none;
2879
- }
2880
- .FeedbackPrompt-module__textarea {
2881
- resize: none;
2882
- margin: 0.25rem 0;
2883
- }
2884
- .FeedbackPrompt-module__textarea--with-from {
2885
- margin-top: 0;
2886
- border-top-left-radius: 0;
2887
- border-top-right-radius: 0;
2888
- }
2889
- .FeedbackPrompt-module__success {
2890
- white-space: normal;
2891
- padding: 0.5rem;
2892
- text-align: center;
2893
- }
2894
- .FeedbackPrompt-module__success--tick {
2895
- background-color: var(--success);
2896
- color: var(--white);
2897
- border-radius: 50%;
2898
- width: 1.875rem;
2899
- height: auto;
2900
- padding: 0.125rem;
2901
- margin-bottom: 1rem;
2902
- }
2903
- .FeedbackPrompt-module__button {
2904
- margin-top: 1rem;
2905
- }
2906
-
2907
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Collapse/Collapse.module.css */
2908
- .Collapse-module__collapse:not(.Collapse-module__show) {
2909
- display: none;
2910
- }
2911
-
2912
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Combobox/Combobox.module.css */
2913
- .Combobox-module__combobox {
2914
- width: 100%;
2915
- }
2916
- .Combobox-module__popover {
2917
- font-size: inherit;
2918
- border-radius: 0;
2919
- display: flex;
2920
- justify-content: stretch;
2921
- }
2922
- .Combobox-module__list {
2923
- width: 100%;
2924
- overflow: auto;
2925
- }
2926
- .Combobox-module__list [data-reach-combobox-option]:hover {
2927
- color: var(--dropdown-link-hover-color);
2928
- }
2929
- .theme-dark .Combobox-module__list [data-reach-combobox-option]:hover {
2930
- background-color: var(--color-bg-3);
2931
- }
2932
- .theme-light .Combobox-module__list [data-reach-combobox-option]:hover {
2933
- background-color: var(--oc-gray-1);
2934
- }
2935
- .Combobox-module__list [data-highlighted],
2936
- .Combobox-module__list [data-highlighted]:hover {
2937
- background-color: var(--dropdown-link-active-bg) !important;
2938
- color: var(--dropdown-link-active-color);
2939
- }
2940
- .Combobox-module__list [data-suggested-value] {
2941
- font-weight: normal;
2942
- }
2943
- .Combobox-module__list [data-user-value] {
2944
- font-weight: bold;
2945
- }
2946
- .Combobox-module__item--disabled {
2947
- cursor: not-allowed;
2948
- }
2949
- .Combobox-module__group {
2950
- margin-top: 0.25rem;
2951
- }
2952
- .Combobox-module__group-heading {
2953
- display: block;
2954
- margin-bottom: 0.25rem;
2955
- padding: var(--dropdown-item-padding);
2956
- font-size: var(--dropdown-header-font-size);
2957
- color: var(--dropdown-header-color);
2958
- white-space: nowrap;
2959
- }
2960
-
2961
- /* css:/root/buildkite/build/sourcegraph/client/wildcard/src/components/Combobox/MultiCombobox.module.css */
2962
- .MultiCombobox-module__root {
2963
- width: 100%;
2964
- display: flex;
2965
- flex-wrap: wrap;
2966
- gap: 0.25rem;
2967
- padding: 0.25rem 0.375rem;
2968
- margin: 0;
2969
- border: 1px solid var(--input-border-color);
2970
- border-radius: var(--border-radius);
2971
- background: var(--input-bg);
2972
- }
2973
- .MultiCombobox-module__root:focus-within {
2974
- border-color: var(--input-focus-border-color);
2975
- box-shadow: var(--input-focus-box-shadow);
2976
- }
2977
- .MultiCombobox-module__root:has(.is-valid) {
2978
- border-color: var(--success);
2979
- }
2980
- .theme-light .MultiCombobox-module__root:has(.is-valid):focus-within {
2981
- box-shadow: 0 0 0 2px var(--success-2);
2982
- }
2983
- .theme-dark .MultiCombobox-module__root:has(.is-valid):focus-within {
2984
- box-shadow: 0 0 0 2px var(--success-3);
2985
- }
2986
- .MultiCombobox-module__root:has(.is-invalid) {
2987
- border-color: var(--danger);
2988
- }
2989
- .theme-light .MultiCombobox-module__root:has(.is-invalid):focus-within {
2990
- box-shadow: 0 0 0 2px var(--danger-2);
2991
- }
2992
- .theme-dark .MultiCombobox-module__root:has(.is-invalid):focus-within {
2993
- box-shadow: 0 0 0 2px var(--danger-3);
2994
- }
2995
- .MultiCombobox-module__root:has(.form-control:disabled) {
2996
- color: var(--text-disabled);
2997
- background-color: var(--input-disabled-bg);
2998
- }
2999
- .MultiCombobox-module__input-container {
3000
- flex-grow: 1;
3001
- min-width: 10rem;
3002
- }
3003
- .MultiCombobox-module__input-container [data-loading-spinner] {
3004
- position: absolute;
3005
- right: calc(0.25rem - 1px);
3006
- top: calc(0.35rem - 1px);
3007
- }
3008
- :root .MultiCombobox-module__input {
3009
- border: none;
3010
- outline: none;
3011
- padding: 0 0 0 0.5rem;
3012
- height: 1.75rem;
3013
- box-shadow: none !important;
3014
- }
3015
- .MultiCombobox-module__pill {
3016
- display: flex;
3017
- border-radius: 0.25rem;
3018
- min-width: 0;
3019
- }
3020
- .theme-dark .MultiCombobox-module__pill {
3021
- background-color: var(--color-bg-3);
3022
- }
3023
- .theme-light .MultiCombobox-module__pill {
3024
- background-color: var(--oc-gray-1);
3025
- }
3026
- .MultiCombobox-module__pill-text {
3027
- flex-grow: 1;
3028
- overflow: hidden;
3029
- text-overflow: ellipsis;
3030
- white-space: nowrap;
3031
- padding: 0.25rem 0.5rem;
3032
- }
3033
- .MultiCombobox-module__remove-pill {
3034
- border: none;
3035
- width: 1.75rem;
3036
- display: flex;
3037
- align-items: center;
3038
- justify-content: center;
3039
- border-top-left-radius: 0;
3040
- border-bottom-left-radius: 0;
3041
- }
3042
- .theme-dark .MultiCombobox-module__remove-pill:hover,
3043
- .theme-dark .MultiCombobox-module__remove-pill:focus {
3044
- background-color: #2a2f3f !important;
3045
- }
3046
- .theme-light .MultiCombobox-module__remove-pill:hover,
3047
- .theme-light .MultiCombobox-module__remove-pill:focus {
3048
- background-color: var(--color-bg-2) !important;
3049
- }
3050
- .MultiCombobox-module__popover {
3051
- display: flex;
3052
- border-radius: 0;
3053
- }
3054
- .MultiCombobox-module__popover:empty {
3055
- display: none;
3056
- }
3057
- .MultiCombobox-module__zero-state {
3058
- color: var(--text-muted);
3059
- font-size: 0.75rem;
3060
- padding: 0.5rem;
3061
- display: block;
3062
- }
3063
-
3064
- /* css:/root/buildkite/build/sourcegraph/client/shared/src/actions/ActionItem.module.css */
3065
- .ActionItem-module__action-item {
3066
- }
3067
- .ActionItem-module__action-item--loading {
3068
- position: relative;
3069
- }
3070
- .ActionItem-module__action-item--link {
3071
- padding: 0;
3072
- display: inline;
3073
- font-weight: 400;
3074
- border: 0;
3075
- vertical-align: baseline;
3076
- }
3077
- .ActionItem-module__loader {
3078
- position: absolute;
3079
- top: 50%;
3080
- left: 50%;
3081
- transform: translateX(-50%) translateY(-50%);
3082
- }
3083
-
3084
- /* css:/root/buildkite/build/sourcegraph/client/shared/src/hover/HoverOverlay.module.css */
3085
- .HoverOverlay-module__hover-overlay,
3086
- .HoverOverlay-module__card.HoverOverlay-module__hover-overlay {
3087
- --hover-overlay-vertical-padding: 0.25rem;
3088
- --hover-overlay-horizontal-padding: 1rem;
3089
- --hover-overlay-contents-right-padding: 1rem;
3090
- --hover-overlay-content-margin-top: 0.5rem;
3091
- --hover-overlay-separator-color: var(--border-color);
3092
- display: block;
3093
- position: absolute;
3094
- min-width: 6rem;
3095
- max-width: 34rem;
3096
- z-index: 100;
3097
- overflow: hidden;
3098
- padding-bottom: var(--hover-overlay-vertical-padding);
3099
- }
3100
- .HoverOverlay-module__close-button {
3101
- position: sticky;
3102
- float: right;
3103
- top: var(--hover-overlay-content-margin-top);
3104
- margin-right: -1.25rem;
3105
- margin-left: 0;
3106
- z-index: 1;
3107
- }
3108
- .HoverOverlay-module__close-button--loading {
3109
- position: absolute;
3110
- top: calc(var(--hover-overlay-content-margin-top) + var(--hover-overlay-vertical-padding));
3111
- right: 0.75rem;
3112
- margin-right: 0;
3113
- }
3114
- .HoverOverlay-module__badge {
3115
- float: right;
3116
- margin-top: var(--hover-overlay-content-margin-top);
3117
- margin-left: 0.5rem;
3118
- margin-right: 0.25rem;
3119
- margin-bottom: 0.25rem;
3120
- line-height: 1rem;
3121
- text-transform: uppercase;
3122
- }
3123
- .HoverOverlay-module__badge-label {
3124
- vertical-align: top;
3125
- }
3126
- .HoverOverlay-module__badge :first-of-type {
3127
- margin-right: 0;
3128
- }
3129
- .HoverOverlay-module__alert {
3130
- display: flex;
3131
- justify-content: space-between;
3132
- align-items: center;
3133
- margin-bottom: 0;
3134
- }
3135
- .HoverOverlay-module__alert .HoverOverlay-module__hover-overlay__content {
3136
- display: inline;
3137
- }
3138
- .HoverOverlay-module__alert p:last-child {
3139
- margin-bottom: 0;
3140
- }
3141
- .HoverOverlay-module__alert-icon {
3142
- margin-right: 0.25rem;
3143
- }
3144
- .HoverOverlay-module__alert-dismiss {
3145
- margin-left: 0.75rem;
3146
- line-height: 1;
3147
- }
3148
- .HoverOverlay-module__actions {
3149
- display: flex;
3150
- align-items: center;
3151
- padding-top: 0.75rem;
3152
- padding-bottom: 0.5rem;
3153
- padding-left: var(--hover-overlay-horizontal-padding);
3154
- padding-right: var(--hover-overlay-horizontal-padding);
3155
- }
3156
- .HoverOverlay-module__actions-container {
3157
- display: flex;
3158
- justify-content: space-between;
3159
- align-items: center;
3160
- border-top: 1px solid var(--hover-overlay-separator-color);
3161
- }
3162
- .HoverOverlay-module__actions-copy-link {
3163
- margin-right: var(--hover-overlay-horizontal-padding);
3164
- font-size: 0.75rem;
3165
- color: var(--link-color);
3166
- border-style: none;
3167
- background: transparent;
3168
- width: 5.1rem;
3169
- }
3170
- .HoverOverlay-module__actions-copy-link > span:last-child {
3171
- padding-left: 0.2rem;
3172
- }
3173
- .HoverOverlay-module__actions-inner {
3174
- margin-right: auto;
3175
- white-space: nowrap;
3176
- }
3177
- .HoverOverlay-module__action {
3178
- flex: 0 1 auto;
3179
- text-align: center;
3180
- }
3181
- .HoverOverlay-module__overlay-logo {
3182
- margin-left: 1rem;
3183
- }
3184
- .HoverOverlay-module__loader-row {
3185
- display: flex;
3186
- align-items: center;
3187
- justify-content: center;
3188
- padding: 0.5rem;
3189
- border: none;
3190
- border-radius: 0;
3191
- }
3192
- .HoverOverlay-module__hover-error {
3193
- margin-top: var(--hover-overlay-content-margin-top);
3194
- margin-bottom: 0.75rem;
3195
- }
3196
- .HoverOverlay-module__hover-empty {
3197
- display: block;
3198
- margin-top: var(--hover-overlay-content-margin-top);
3199
- margin-bottom: 0.5rem;
3200
- }
3201
- .HoverOverlay-module__buttons {
3202
- display: flex;
3203
- align-items: center;
3204
- margin-top: var(--hover-overlay-content-margin-top);
3205
- }
3206
- .HoverOverlay-module__buttons > *:first-child {
3207
- margin-left: 0;
3208
- }
3209
-
3210
- /* css:/root/buildkite/build/sourcegraph/client/shared/src/hover/HoverOverlayContents.module.css */
3211
- .HoverOverlayContents-module__hover-overlay__contents {
3212
- --hover-overlay-content-margin-top: 0.5rem;
3213
- --hover-overlay-contents-right-padding: 1rem;
3214
- --hover-overlay-vertical-padding: 0.25rem;
3215
- --hover-overlay-horizontal-padding: 1rem;
3216
- --hover-overlay-separator-color: var(--border-color);
3217
- overflow-x: hidden;
3218
- overflow-y: auto;
3219
- max-height: 10rem;
3220
- padding-top: var(--hover-overlay-vertical-padding);
3221
- padding-bottom: 0;
3222
- padding-left: var(--hover-overlay-horizontal-padding);
3223
- padding-right: var(--hover-overlay-contents-right-padding);
3224
- }
3225
- .HoverOverlayContents-module__hover-overlay__contents p {
3226
- margin-top: 0.75rem;
3227
- margin-bottom: 0.75rem;
3228
- }
3229
- .HoverOverlayContents-module__hover-overlay__contents pre {
3230
- margin-top: var(--hover-overlay-content-margin-top);
3231
- margin-bottom: 0.5rem;
3232
- line-height: 1rem;
3233
- }
3234
- .HoverOverlayContents-module__hover-overlay__contents code {
3235
- font-size: 0.75rem;
3236
- }
3237
- .HoverOverlayContents-module__hover-overlay__contents hr {
3238
- margin-top: 0;
3239
- margin-bottom: 0;
3240
- margin-left: calc(var(--hover-overlay-horizontal-padding) * -1);
3241
- margin-right: calc(var(--hover-overlay-contents-right-padding) * -1);
3242
- height: 1px;
3243
- overflow: visible;
3244
- border: none;
3245
- background-color: var(--hover-overlay-separator-color);
3246
- }
3247
- .HoverOverlayContents-module__hover-overlay__contents--with-close-button {
3248
- --hover-overlay-contents-right-padding: 2rem;
3249
- }
3250
- .HoverOverlayContents-module__hover-overlay__contents--loading {
3251
- padding: var(--hover-overlay-vertical-padding) var(--hover-overlay-horizontal-padding);
3252
- }
3253
- .HoverOverlayContents-module__hover-overlay__contents .HoverOverlayContents-module__hover-overlay__content {
3254
- font-size: 0.75rem;
3255
- line-height: 1.3333333333;
3256
- color: var(--hover-overlay-content-color);
3257
- }
3258
- .HoverOverlayContents-module__hover-overlay__contents .HoverOverlayContents-module__hover-overlay__content > *:first-child {
3259
- margin-top: var(--hover-overlay-content-margin-top);
3260
- margin-bottom: 0.5rem;
3261
- }
3262
-
3263
- /* css:/root/buildkite/build/sourcegraph/client/shared/src/hover/HoverOverlayContents/HoverOverlayContent/HoverOverlayContent.module.css */
3264
- .HoverOverlayContent-module__hover-overlay__content {
3265
- --hover-overlay-content-margin-top: 0.5rem;
3266
- display: contents;
3267
- max-height: 15rem;
3268
- overflow-x: auto;
3269
- word-wrap: normal;
3270
- }
3271
- .HoverOverlayContent-module__hover-overlay__content pre,
3272
- .HoverOverlayContent-module__hover-overlay__content code {
3273
- padding: 0;
3274
- white-space: pre-wrap;
3275
- overflow: visible;
3276
- }
3277
- .HoverOverlayContent-module__hover-overlay__content td {
3278
- padding-right: 1rem;
3279
- }
3280
- .HoverOverlayContent-module__hover-overlay__content tbody tr {
3281
- border-top: 1px solid var(--border-color);
3282
- }
3283
- .HoverOverlayContent-module__hover-overlay__content a {
3284
- color: var(--link-color);
3285
- }
3286
-
3287
- /* css:/root/buildkite/build/sourcegraph/client/shared/src/hover/HoverOverlayLogo/HoverOverlayLogo.module.css */
3288
- .HoverOverlayLogo-module__container {
3289
- background-color: var(--color-bg-1);
3290
- box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
3291
- border-radius: 1000px;
3292
- border-radius: 50%;
3293
- width: 1.75rem;
3294
- height: 1.75rem;
3295
- display: flex;
3296
- justify-content: center;
3297
- align-items: center;
3298
- }
3299
- .HoverOverlayLogo-module__icon {
3300
- width: 1rem;
3301
- height: 1rem;
3302
- }
3303
-
3304
- /* css:/root/buildkite/build/sourcegraph/client/shared/src/actions/ActionsNavItems.module.css */
3305
- .ActionsNavItems-module__action-item {
3306
- max-width: 10rem;
3307
- text-overflow: ellipsis;
3308
- overflow: hidden;
3309
- font-size: 0.75rem;
3310
- line-height: inherit;
3311
- letter-spacing: inherit;
3312
- }
3313
-
3314
- /* css:/root/buildkite/build/sourcegraph/client/browser/src/shared/components/CodeViewToolbar.module.css */
3315
- .CodeViewToolbar-module__code-view-toolbar {
3316
- margin: 0;
3317
- list-style: none;
3318
- }
3319
- .CodeViewToolbar-module__item {
3320
- display: inline-block;
3321
- }
3322
-
3323
- /* css:/root/buildkite/build/sourcegraph/client/browser/src/shared/code-hosts/bitbucket-cloud/codeHost.module.css */
3324
- .codeHost-module__secondary-button-base,
3325
- .codeHost-module__hover-overlay-action-item,
3326
- .codeHost-module__badge {
3327
- background-color: var(--secondary);
3328
- color: var(--body-color);
3329
- transition: background-color 150ms;
3330
- }
3331
- .codeHost-module__secondary-button-base:hover,
3332
- .codeHost-module__hover-overlay-action-item:hover,
3333
- .codeHost-module__badge:hover,
3334
- .codeHost-module__secondary-button-base:focus,
3335
- .codeHost-module__hover-overlay-action-item:focus,
3336
- .codeHost-module__badge:focus {
3337
- color: var(--body-color);
3338
- background-color: var(--secondary-3);
3339
- text-decoration: none;
3340
- }
3341
- .codeHost-module__action-item-active-base,
3342
- .codeHost-module__code-view-toolbar-action-item:hover,
3343
- .codeHost-module__open-on-sourcegraph:hover,
3344
- .codeHost-module__pressed {
3345
- background: rgba(9, 30, 66, 0.08);
3346
- transition: background 100ms;
3347
- }
3348
- .codeHost-module__icon {
3349
- height: 1rem;
3350
- width: 1rem;
3351
- }
3352
- .codeHost-module__open-on-sourcegraph {
3353
- height: 2rem;
3354
- border-radius: 3px;
3355
- display: flex;
3356
- justify-content: center;
3357
- align-items: center;
3358
- gap: 0.25rem;
3359
- background: rgba(9, 30, 66, 0.04);
3360
- margin-left: 4px;
3361
- padding-left: 8px;
3362
- padding-right: 8px;
3363
- text-decoration: none !important;
3364
- color: #42526e !important;
3365
- font-weight: 500;
3366
- outline: none;
3367
- }
3368
- .codeHost-module__code-view-toolbar {
3369
- height: 32px;
3370
- }
3371
- .codeHost-module__hover-overlay {
3372
- background-color: #ffffff;
3373
- box-shadow: 0 4px 16px -6px rgba(36, 41, 54, 0.2);
3374
- font-family:
3375
- -apple-system,
3376
- BlinkMacSystemFont,
3377
- "Segoe UI",
3378
- Roboto,
3379
- "Helvetica Neue",
3380
- Arial,
3381
- "Noto Sans",
3382
- sans-serif,
3383
- "Apple Color Emoji",
3384
- "Segoe UI Emoji",
3385
- "Segoe UI Symbol",
3386
- "Noto Color Emoji";
3387
- }
3388
- .codeHost-module__list-item {
3389
- height: 100%;
3390
- }
3391
- .codeHost-module__code-view-toolbar-action-item {
3392
- height: 100%;
3393
- display: flex;
3394
- align-items: center;
3395
- margin: 0 4px;
3396
- padding: 0 8px;
3397
- border-radius: 3px;
3398
- }
3399
- .codeHost-module__commit-container {
3400
- display: flex;
3401
- }
3402
- .codeHost-module__content {
3403
- color: var(--text-muted) !important;
3404
- }
3405
- .codeHost-module__close {
3406
- cursor: pointer;
3407
- background: none;
3408
- border: none;
3409
- width: 1rem;
3410
- height: 1rem;
3411
- color: var(--icon-color);
3412
- top: 0.25rem !important;
3413
- padding: 0;
3414
- }
3415
- .codeHost-module__close svg {
3416
- width: 1rem;
3417
- height: 1rem;
3418
- }
3419
- .codeHost-module__badge {
3420
- line-height: 1rem;
3421
- display: inline-block;
3422
- padding: 0 0.25rem;
3423
- margin-top: -0.25rem;
3424
- font-size: 0.6875 rem;
3425
- font-weight: 500;
3426
- text-align: center;
3427
- white-space: nowrap;
3428
- border-radius: 2px;
3429
- }
3430
- .codeHost-module__badge:hover,
3431
- .codeHost-module__badge:focus {
3432
- color: var(--body-color);
3433
- background-color: var(--secondary-3);
3434
- text-decoration: none;
3435
- }
3436
- .codeHost-module__hover-overlay-action-item {
3437
- display: flex;
3438
- justify-content: center;
3439
- align-items: center;
3440
- border-radius: 3px;
3441
- padding: 6px 8px;
3442
- font-size: calc(min(0.75rem, 0.9166666667em));
3443
- }
3444
-
3445
- /* css:/root/buildkite/build/sourcegraph/client/browser/src/shared/code-hosts/bitbucket/codeHost.module.css */
3446
- .codeHost-module__open-on-sourcegraph {
3447
- margin-left: 2px;
3448
- }
3449
- .codeHost-module__sg-toolbar-mount,
3450
- .codeHost-module__code-view-toolbar {
3451
- display: contents;
3452
- }
3453
- .codeHost-module__action-nav-item {
3454
- margin-left: 5px;
3455
- margin-top: 5px;
3456
- }
3457
- .codeHost-module__action-nav-item-new-diff {
3458
- margin: 0 8px 0 2px;
3459
- }
3460
- .codeHost-module__action-item-new-diff {
3461
- background-color: rgba(9, 30, 66, 0.04);
3462
- color: #42526e;
3463
- transition: background 0.1s ease-out 0s, box-shadow 0.15s cubic-bezier(0.47, 0.03, 0.49, 1.38) 0s;
3464
- display: inline-flex;
3465
- align-items: center;
3466
- justify-content: center;
3467
- border-radius: 3px;
3468
- height: 100%;
3469
- width: 24px;
3470
- padding: 0 2px;
3471
- }
3472
- .codeHost-module__action-item-new-diff:hover {
3473
- background: rgba(9, 30, 66, 0.08);
3474
- }
3475
- .file-toolbar {
3476
- display: flex;
3477
- align-items: center;
3478
- flex-wrap: wrap;
3479
- }
3480
- .file-toolbar > .primary {
3481
- flex: 0 2 auto;
3482
- order: 1;
3483
- }
3484
- .file-toolbar > .secondary {
3485
- float: none;
3486
- white-space: normal;
3487
- line-height: initial;
3488
- flex: 1 1 auto;
3489
- flex-wrap: wrap;
3490
- order: 2;
3491
- display: flex;
3492
- align-items: center;
3493
- justify-content: flex-end;
3494
- }
3495
- .file-toolbar > .secondary > .aui-buttons {
3496
- display: contents;
3497
- }
3498
- .file-toolbar > .secondary > .aui-buttons > .aui-button {
3499
- margin-left: 5px;
3500
- margin-top: 5px;
3501
- }
3502
- .codeHost-module__hover-overlay {
3503
- max-width: 544px !important;
3504
- }
3505
- .codeHost-module__hover-actions > span:not(:first-child) {
3506
- margin-left: 0.25rem !important;
3507
- }
3508
- .codeHost-module__hover-action-item {
3509
- margin: 0 !important;
3510
- border-radius: 0 !important;
3511
- border-bottom: none !important;
3512
- border-top: none !important;
3513
- border-right: none !important;
3514
- }
3515
- .codeHost-module__hover-action-item:first-child {
3516
- border-left: none !important;
3517
- }
3518
- .codeHost-module__hover-action-item + .codeHost-module__hover-action-item {
3519
- margin-left: 0.25rem !important;
3520
- }
3521
- .codeHost-module__btn-icon {
3522
- padding: 0 !important;
3523
- background: transparent !important;
3524
- border: none !important;
3525
- height: 1rem !important;
3526
- line-height: 1rem !important;
3527
- }
3528
- .codeHost-module__btn-icon.close {
3529
- margin-right: -1.25rem;
3530
- }
3531
- .codeHost-module__btn-icon:hover {
3532
- opacity: 0.7;
3533
- }
3534
-
3535
- /* css:/root/buildkite/build/sourcegraph/client/browser/src/shared/code-hosts/gerrit/codeHost.module.css */
3536
- .codeHost-module__hover-overlay {
3537
- background-color: #ffffff;
3538
- border: 1px solid rgba(0, 0, 0, 0.125);
3539
- box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
3540
- }
3541
- .codeHost-module__contents code {
3542
- font-family:
3543
- "Roboto Mono",
3544
- "SF Mono",
3545
- "Lucida Console",
3546
- Monaco,
3547
- monospace;
3548
- font-size: 12px;
3549
- }
3550
- .codeHost-module__close-button {
3551
- border: none;
3552
- background-color: transparent;
3553
- cursor: pointer;
3554
- }
3555
- .codeHost-module__close-button svg {
3556
- height: 14px;
3557
- }
3558
- .codeHost-module__actions {
3559
- background-color: #fafafa;
3560
- justify-content: space-around;
3561
- padding: 4px;
3562
- }
3563
- .codeHost-module__action {
3564
- color: #2a66d9;
3565
- padding: 5px 4px;
3566
- flex: none;
3567
- text-decoration: none;
3568
- text-transform: uppercase;
3569
- font-family:
3570
- Roboto,
3571
- -apple-system,
3572
- system-ui,
3573
- "Segoe UI",
3574
- Helvetica,
3575
- Arial,
3576
- sans-serif;
3577
- }
3578
- .codeHost-module__action:hover {
3579
- background-color: rgba(0, 0, 0, 0.12);
3580
- border-radius: var(--border-radius);
3581
- }
3582
- .codeHost-module__action svg {
3583
- height: 12px;
3584
- width: 12px;
3585
- }
3586
-
3587
- /* css:/root/buildkite/build/sourcegraph/client/browser/src/shared/code-hosts/github/codeHost.module.css */
3588
- :root {
3589
- --viewport-sm: 576px;
3590
- --viewport-md: 768px;
3591
- --viewport-lg: 992px;
3592
- --viewport-xl: 1200px;
3593
- }
3594
- :root {
3595
- --body-bg: var(--color-canvas-default, var(--color-bg-canvas, var(--white)));
3596
- --border-color: var(--color-border-default, var(--color-border-primary, var(--secondary)));
3597
- --secondary: var(--color-btn-bg, var(--color-auto-gray-2), var(--gray-06));
3598
- }
3599
- [data-color-mode=dark] {
3600
- --mark-bg: var(--mark-bg-dark);
3601
- }
3602
- @media (prefers-color-scheme: dark) {
3603
- [data-color-mode=auto] {
3604
- --mark-bg: var(--mark-bg-dark);
3605
- }
3606
- }
3607
- .codeHost-module__action-item {
3608
- height: 28px;
3609
- }
3610
- .codeHost-module__icon {
3611
- height: 16px;
3612
- width: 16px;
3613
- }
3614
- .codeHost-module__code-view-toolbar {
3615
- margin-bottom: -4px;
3616
- text-align: right;
3617
- }
3618
- .js-blob-header .codeHost-module__code-view-toolbar {
3619
- margin-right: 4px;
3620
- }
3621
- .codeHost-module__code-view-toolbar-item {
3622
- margin-left: 0 !important;
3623
- margin-bottom: 4px;
3624
- }
3625
- .codeHost-module__hover-overlay-badge {
3626
- margin-top: -0.33rem;
3627
- }
3628
- .codeHost-module__hover-overlay-close-button {
3629
- top: 0.33rem !important;
3630
- }
3631
- .AppHeader .open-on-sourcegraph,
3632
- .sourcegraph-github-file-code-view-toolbar-mount .open-on-sourcegraph {
3633
- min-height: 100%;
3634
- display: flex;
3635
- align-items: center;
3636
- }
3637
- .pagehead-actions .open-on-sourcegraph .codeHost-module__icon {
3638
- margin-bottom: -1px;
3639
- }
3640
- .repository-content {
3641
- }
3642
- .repository-content > .Box:not(.Box--condensed) > .Box-header:not(.Box-header--blue) > .text-mono {
3643
- flex-shrink: 0 !important;
3644
- }
3645
- .repository-content > .Box:not(.Box--condensed) > .Box-header:not(.Box-header--blue) > div:nth-child(2) > div:not(.sourcegraph-github-file-code-view-toolbar-mount) {
3646
- flex-shrink: 0;
3647
- display: flex;
3648
- align-items: center;
3649
- }
3650
- .diff-view .file-header {
3651
- flex-wrap: wrap;
3652
- }
3653
- .diff-view .file-header .file-info {
3654
- flex: 0 2 auto !important;
3655
- }
3656
- .diff-view .file-header .file-actions {
3657
- flex: 1 1 auto;
3658
- margin-left: 1rem;
3659
- display: flex;
3660
- align-items: center;
3661
- justify-content: flex-end;
3662
- }
3663
-
3664
- /* css:/root/buildkite/build/sourcegraph/client/browser/src/shared/code-hosts/gitlab/codeHost.module.css */
3665
- :root {
3666
- --gray-10: #fafafa;
3667
- }
3668
- .codeHost-module__btn-icon img {
3669
- position: relative;
3670
- top: 2px;
3671
- vertical-align: baseline;
3672
- opacity: 0.6;
3673
- }
3674
- .codeHost-module__btn-icon img:hover {
3675
- opacity: 1;
3676
- }
3677
- .codeHost-module__hover-overlay {
3678
- border-color: #e5e5e5;
3679
- margin-bottom: 0;
3680
- }
3681
- .codeHost-module__hover-overlay pre,
3682
- .codeHost-module__hover-overlay code {
3683
- padding: 0;
3684
- border: none;
3685
- background: none;
3686
- color: inherit;
3687
- }
3688
- .codeHost-module__hover-overlay .hljs {
3689
- display: block;
3690
- overflow-x: auto;
3691
- padding: 0.5em;
3692
- color: #333333;
3693
- }
3694
- .codeHost-module__hover-overlay .hljs-comment,
3695
- .codeHost-module__hover-overlay .hljs-quote {
3696
- color: #999988;
3697
- }
3698
- .codeHost-module__hover-overlay .hljs-keyword,
3699
- .codeHost-module__hover-overlay .hljs-selector-tag,
3700
- .codeHost-module__hover-overlay .hljs-subst {
3701
- color: inherit;
3702
- font-weight: 600;
3703
- }
3704
- .codeHost-module__hover-overlay .hljs-number,
3705
- .codeHost-module__hover-overlay .hljs-literal,
3706
- .codeHost-module__hover-overlay .hljs-variable,
3707
- .codeHost-module__hover-overlay .hljs-template-variable,
3708
- .codeHost-module__hover-overlay .hljs-tag .hljs-attr {
3709
- color: #008080;
3710
- }
3711
- .codeHost-module__hover-overlay .hljs-string,
3712
- .codeHost-module__hover-overlay .hljs-doctag {
3713
- color: #dd1144;
3714
- }
3715
- .codeHost-module__hover-overlay .hljs-title,
3716
- .codeHost-module__hover-overlay .hljs-section,
3717
- .codeHost-module__hover-overlay .hljs-selector-id {
3718
- color: #333333;
3719
- }
3720
- .codeHost-module__hover-overlay .hljs-subst {
3721
- font-weight: normal;
3722
- }
3723
- .codeHost-module__hover-overlay .hljs-type,
3724
- .codeHost-module__hover-overlay .hljs-class .hljs-title {
3725
- color: #445588;
3726
- }
3727
- .codeHost-module__hover-overlay .hljs-tag,
3728
- .codeHost-module__hover-overlay .hljs-name,
3729
- .codeHost-module__hover-overlay .hljs-attribute {
3730
- color: #000080;
3731
- font-weight: normal;
3732
- }
3733
- .codeHost-module__hover-overlay .hljs-regexp,
3734
- .codeHost-module__hover-overlay .hljs-link {
3735
- color: #009926;
3736
- }
3737
- .codeHost-module__hover-overlay .hljs-symbol,
3738
- .codeHost-module__hover-overlay .hljs-bullet {
3739
- color: #990073;
3740
- }
3741
- .codeHost-module__hover-overlay .hljs-built_in,
3742
- .codeHost-module__hover-overlay .hljs-builtin-name {
3743
- color: #0086b3;
3744
- }
3745
- .codeHost-module__hover-overlay .hljs-meta {
3746
- color: #999999;
3747
- font-weight: bold;
3748
- }
3749
- .codeHost-module__hover-overlay .hljs-deletion {
3750
- background: #ffdddd;
3751
- }
3752
- .codeHost-module__hover-overlay .hljs-addition {
3753
- background: #ddffdd;
3754
- }
3755
- .codeHost-module__hover-overlay .hljs-emphasis {
3756
- font-style: italic;
3757
- }
3758
- .codeHost-module__hover-overlay .hljs-strong {
3759
- font-weight: bold;
3760
- }
3761
-
3762
- /* css:/root/buildkite/build/sourcegraph/client/browser/src/shared/code-hosts/phabricator/codeHost.module.css */
3763
- .codeHost-module__hover-overlay {
3764
- margin: 0;
3765
- }
3766
- .codeHost-module__btn-icon {
3767
- background: transparent !important;
3768
- border: none !important;
3769
- padding: 0 !important;
3770
- }
3771
- .codeHost-module__btn-icon:hover {
3772
- opacity: 0.7;
3773
- }
3774
- .codeHost-module__icon {
3775
- height: 14px;
3776
- width: 14px;
3777
- }
3778
- .codeHost-module__action-item[data-action-item-pressed=true] {
3779
- box-shadow: inset 0 0.15em 0.3em #cad2e2;
3780
- }
3781
- .codeHost-module__hover-overlay-action-item {
3782
- border-radius: 0 !important;
3783
- border-bottom: none !important;
3784
- border-top: none !important;
3785
- border-right: none !important;
3786
- }
3787
- .codeHost-module__hover-overlay-action-item:first-child {
3788
- border-left: none !important;
3789
- }
3790
- .codeHost-module__hover-overlay-action-item-icon {
3791
- vertical-align: middle;
3792
- }
3793
-
3794
- /* css:/root/buildkite/build/sourcegraph/client/browser/src/shared/code-hosts/shared/ViewOnSourcegraphButton.module.css */
3795
- .ViewOnSourcegraphButton-module__icon--muted {
3796
- filter: grayscale(100%);
3797
- }
3798
-
3799
- /* css:/root/buildkite/build/sourcegraph/client/browser/src/shared/code-hosts/shared/codeHost.module.css */
3800
- .codeHost-module__hover-overlay {
3801
- isolation: isolate;
3802
- z-index: 2000 !important;
3803
- }
1
+ @charset "UTF-8";@layer wildcard{[data-wildcard-root]{--sg-comp-button-text-color: var(--sg-theme-foreground);--sg-comp-button-border-color: transparent;--sg-comp-button-background: transparent;--sg-comp-button-active-background: transparent;--sg-comp-button-pressed-background: transparent;--sg-comp-button-shadow: none;--sg-comp-button-border-radius: var(--sg-utils-radius-sm);--sg-comp-button-padding-y-sm: .1875rem;--sg-comp-button-padding-x-sm: .375rem;--sg-comp-button-padding-y-lg: .375rem;--sg-comp-button-padding-x-lg: .625rem;--sg-comp-button-border-width: 1px}}.Button-module__btn{display:inline-flex;align-items:center;justify-content:center;text-align:center;position:relative;overflow:clip;-webkit-user-select:none;-moz-user-select:none;user-select:none;vertical-align:middle;cursor:pointer;text-decoration:none;gap:var(--sg-utils-space-100);letter-spacing:-.0071428571em;font-size:var(--sg-theme-text-regular);font-weight:var(--sg-theme-weight-medium);font-family:var(--sg-theme-font-sans),sans-serif;line-height:1.4285714286;padding:var(--sg-utils-space-100) var(--sg-utils-space-300);color:var(--sg-comp-button-text-color);border:1px solid var(--sg-comp-button-border-color);border-radius:var(--sg-comp-button-border-radius);background-color:var(--sg-comp-button-background);box-shadow:var(--sg-comp-button-shadow);transition:all .1s ease-in-out}.Button-module__btn:hover{background-color:var(--sg-comp-button-active-background);color:var(--sg-comp-button-text-color);text-decoration:none}.Button-module__btn:active{background-color:var(--sg-comp-button-pressed-background)}.Button-module__btn.Button-module__focus-visible{--sg-comp-button-border-color: var(--sg-theme-border-color-focus);box-shadow:var(--sg-theme-shadow-focus);outline:none}.Button-module__btn:focus-visible{--sg-comp-button-border-color: var(--sg-theme-border-color-focus);box-shadow:var(--sg-theme-shadow-focus);outline:none}.Button-module__btn:disabled,.Button-module__btn[aria-disabled=true]{--sg-comp-icon-color: color-mix(in oklch, var(--sg-comp-button-text-color) 30%, transparent);--sg-comp-button-active-background: var(--sg-comp-button-background);--sg-comp-button-pressed-background: var(--sg-comp-button-background);transition:none;box-shadow:none;cursor:not-allowed;transform:none;color:var(--sg-comp-button-disabled-text-color, color-mix(in oklch, var(--sg-comp-button-text-color) 60%, transparent));background-color:var(--sg-comp-button-disabled-background-color, color-mix(in oklch, var(--sg-comp-button-background) 55%, transparent));border-color:color-mix(in oklch,var(--sg-comp-button-border-color) 40%,transparent)}input.Button-module__btn.Button-module__focus-visible{outline:2px solid var(--sg-theme-border-color-focus);outline-offset:2px}input.Button-module__btn:focus-visible{outline:2px solid var(--sg-theme-border-color-focus);outline-offset:2px}input.Button-module__btn[aria-disabled=true]{cursor:not-allowed;filter:brightness(.7)}.Button-module__btn.Button-module__btn-block{display:flex;width:100%}.Button-module__btn-inline{display:inline-flex}.Button-module__btn-sm{padding:var(--sg-comp-button-padding-y-sm) var(--sg-comp-button-padding-x-sm);font-size:var(--sg-theme-text-small)}.Button-module__btn-sm[data-sg-button-variant=icon]{padding:var(--sg-comp-button-padding-y-sm)}.Button-module__btn.Button-module__btn-lg{padding:var(--sg-comp-button-padding-y-lg) var(--sg-comp-button-padding-x-lg);font-size:var(--sg-theme-text-large)}.Button-module__btn.Button-module__btn-lg[data-sg-button-variant=icon]{padding:var(--sg-comp-button-padding-y-lg)}.Button-module__btn-primary{--sg-comp-button-border-color: transparent;--sg-comp-button-shadow: var(--sg-theme-shadow-micro);--sg-comp-button-background: var(--sg-theme-neutral);--sg-comp-button-text-color: var(--sg-theme-background);--sg-comp-button-active-background: color-mix(in oklch, var(--sg-theme-foreground) 75%, var(--sg-theme-background));--sg-comp-button-pressed-background: color-mix( in oklch, var(--sg-theme-foreground) 85%, var(--sg-theme-background) );--sg-comp-button-disabled-text-color: oklch(from var(--sg-theme-background) l c h / .3);--sg-comp-icon-color: currentColor}.Button-module__btn-primary.disabled,.Button-module__btn-primary:disabled,.Button-module__btn-primary[aria-disabled=true]{color:var(--sg-comp-button-disabled-text-color)}.Button-module__btn-secondary,.Button-module__btn-outline{--sg-comp-button-border-color: var(--sg-theme-border-color);--sg-comp-button-shadow: var(--sg-theme-shadow-micro);--sg-comp-button-text-color: var(--sg-theme-foreground);--sg-comp-button-background: var(--sg-theme-background);--sg-comp-button-active-background: color-mix(in oklch, var(--sg-theme-foreground) 5%, var(--sg-theme-background));--sg-comp-button-pressed-background: color-mix( in oklch, var(--sg-theme-foreground) 10%, var(--sg-theme-background) )}.Button-module__btn-success{--sg-comp-button-border-color: transparent;--sg-comp-button-shadow: var(--sg-theme-shadow-micro);--sg-comp-button-background: var(--sg-theme-success);--sg-comp-button-text-color: var(--sg-theme-success-foreground);--sg-comp-button-active-background: var(--sg-theme-success-muted);--sg-comp-button-pressed-background: var(--sg-theme-success-raised)}.Button-module__btn-danger{--sg-comp-button-border-color: var(--sg-theme-destructive-muted);--sg-comp-button-shadow: var(--sg-theme-shadow-micro);--sg-comp-button-text-color: var(--sg-theme-destructive-foreground);--sg-comp-button-background: var(--sg-theme-destructive);--sg-comp-button-active-background: var(--sg-theme-destructive-muted);--sg-comp-button-pressed-background: var(--sg-theme-destructive-raised)}.Button-module__btn-warning{--sg-comp-button-border-color: transparent;--sg-comp-button-shadow: var(--sg-theme-shadow-micro);--sg-comp-button-background: var(--sg-theme-warning);--sg-comp-button-text-color: var(--sg-theme-warning-foreground);--sg-comp-button-active-background: var(--sg-theme-warning-muted);--sg-comp-button-pressed-background: var(--sg-theme-warning-raised)}.Button-module__btn-info{--sg-comp-button-border-color: transparent;--sg-comp-button-shadow: var(--sg-theme-shadow-micro);--sg-comp-button-background: var(--sg-theme-info);--sg-comp-button-text-color: var(--sg-theme-info-foreground);--sg-comp-button-active-background: var(--sg-theme-info-muted);--sg-comp-button-pressed-background: var(--sg-theme-info-raised)}.Button-module__btn-merged{--sg-comp-button-border-color: transparent;--sg-comp-button-shadow: var(--sg-theme-shadow-micro);--sg-comp-button-background: var(--sg-theme-merged);--sg-comp-button-text-color: var(--sg-theme-merged-foreground);--sg-comp-button-active-background: var(--sg-theme-merged-muted);--sg-comp-button-pressed-background: var(--sg-theme-merged-raised)}.Button-module__btn-primary:active,.Button-module__btn-secondary:active,.Button-module__btn-outline:active,.Button-module__btn-success:active,.Button-module__btn-danger:active,.Button-module__btn-warning:active,.Button-module__btn-info:active,.Button-module__btn-merged:active{border-color:color-mix(in oklch,currentColor 25%,transparent);transform:translateY(1px)}.Button-module__btn-link{--sg-comp-button-text-color: var(--sg-theme-link);--sg-comp-button-active-background: color-mix(in oklch, var(--sg-theme-link) 10%, transparent);--sg-comp-button-pressed-background: color-mix(in oklch, var(--sg-theme-link) 20%, transparent)}.Button-module__btn-link.disabled,.Button-module__btn-link:disabled,.Button-module__btn-link[aria-disabled=true]{opacity:.3}.Button-module__btn-link:not(:disabled,.disabled,[aria-disabled=true]):hover:not(.focus,.Button-module__focus-visible),.Button-module__btn-link:not(:disabled,.disabled,[aria-disabled=true]):active,.Button-module__btn-link:not(:disabled,.disabled,[aria-disabled=true]).active{text-decoration:underline}.Button-module__btn-link:not(:disabled,.disabled,[aria-disabled=true]):hover:not(.focus,:focus-visible),.Button-module__btn-link:not(:disabled,.disabled,[aria-disabled=true]):active,.Button-module__btn-link:not(:disabled,.disabled,[aria-disabled=true]).active{text-decoration:underline}.Button-module__btn-link:not(:disabled,.disabled,[aria-disabled=true]).Button-module__focus-visible,.Button-module__btn-link:not(:disabled,.disabled,[aria-disabled=true]).focus{text-decoration:underline}.Button-module__btn-link:not(:disabled,.disabled,[aria-disabled=true]):focus-visible,.Button-module__btn-link:not(:disabled,.disabled,[aria-disabled=true]).focus{text-decoration:underline}.Button-module__btn-icon{--sg-comp-icon-color: inherit;--sg-comp-icon-size: 1lh;--sg-comp-button-text-color: inherit;--sg-comp-button-active-background: var(--sg-theme-background-muted);--sg-comp-button-pressed-background: var(--sg-theme-background-raised);display:inline-flex;flex:none;padding:var(--sg-utils-space-100);margin:0;border:none}.Button-module__btn-icon.Button-module__btn.Button-module__btn-block{display:flex}.Button-module__btn-icon:hover:not(:disabled,.disabled,[aria-disabled=true]){--sg-comp-icon-color: var(--sg-theme-foreground)}.Button-module__btn-icon.Button-module__focus:not(:disabled,.disabled,[aria-disabled=true]){box-shadow:var(--sg-theme-shadow-focus)}.Button-module__btn:where(a):hover{text-decoration:none}.Button-module__btn-group,.Button-module__btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.Button-module__btn-group>.Button-module__btn,.Button-module__btn-group-vertical>.Button-module__btn{position:relative;flex:1 1 auto;box-shadow:none;transform:translate(0)!important}.Button-module__btn-group>*:not(:first-child){margin-left:calc(-1 * var(--sg-comp-button-border-width))}.Button-module__btn-group>.Button-module__btn:not(:last-child,.dropdown-toggle),.Button-module__btn-group>*:not(:last-child) .Button-module__btn{border-top-right-radius:0;border-bottom-right-radius:0}.Button-module__btn-group>.Button-module__btn:not(:first-child),.Button-module__btn-group>*:not(:first-child) .Button-module__btn{border-top-left-radius:0;border-bottom-left-radius:0}.Button-module__btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.Button-module__btn-group-vertical>.Button-module__btn,.Button-module__btn-group-vertical>.Button-module__btn-group{width:100%}.Button-module__btn-group-vertical>.Button-module__btn:not(:first-child),.Button-module__btn-group-vertical>.Button-module__btn-group:not(:first-child){margin-top:var(--sg-comp-button-border-width)}.Button-module__btn-group-vertical>.Button-module__btn:not(:last-child,.dropdown-toggle),.Button-module__btn-group-vertical>.Button-module__btn-group:not(:last-child)>.Button-module__btn{border-bottom-left-radius:0;border-bottom-right-radius:0}.Button-module__btn-group-vertical>.Button-module__btn:not(:first-child),.Button-module__btn-group-vertical>.Button-module__btn-group:not(:first-child)>.Button-module__btn{border-top-left-radius:0;border-top-right-radius:0}@layer wildcard{[data-wildcard-root]{--icon-inline-md-size: calc(20em / 14);--icon-inline-size: calc(16em / 14)}}.Icon-module__icon-inline{vertical-align:bottom;display:inline-flex;align-items:center}svg.Icon-module__icon-inline,div.Icon-module__icon-inline,img.Icon-module__icon-inline,.Icon-module__icon-inline svg{width:var(--icon-inline-size);height:var(--icon-inline-size);fill:currentColor;vertical-align:text-bottom}svg.Icon-module__icon-inline-md,div.Icon-module__icon-inline-md,img.Icon-module__icon-inline-md,.Icon-module__icon-inline-md svg{width:var(--icon-inline-md-size);height:var(--icon-inline-md-size)}svg.mdi-icon.lucide{fill:transparent}.LanguageIcon-module__icon{width:1rem;height:1rem}.LanguageIcon-module__blue{fill:var(--blue)!important}.LanguageIcon-module__pink{fill:var(--pink)!important}.LanguageIcon-module__yellow{fill:var(--yellow)!important}.LanguageIcon-module__red{fill:var(--red)!important}.LanguageIcon-module__gray{fill:var(--gray-05)!important}.LanguageIcon-module__green{fill:var(--green)!important}.LanguageIcon-module__cyan{fill:var(--cyan)!important}.LanguageIcon-module__default-icon{fill:var(--gray-07)!important}.AnchorLink-module__anchor-link{--link-hover-decoration: underline}a:where(.AnchorLink-module__anchor-link){color:var(--link-color);text-decoration:none}a:where(.AnchorLink-module__anchor-link):hover{color:var(--link-hover-color);-webkit-text-decoration:var(--link-hover-decoration);text-decoration:var(--link-hover-decoration)}a:where(.AnchorLink-module__anchor-link):not([href]){color:inherit;text-decoration:none}a:where(.AnchorLink-module__anchor-link):not([href]):hover{color:inherit;text-decoration:none}[hidden]{display:none}.FloatingPanel-module__floating-panel{position:fixed;display:block;overflow:auto;top:0;left:0;pointer-events:none}.FloatingPanel-module__floating-panel-absolute{position:absolute}.PopoverContent-module__popover{min-width:10rem;font-size:.875rem;background-clip:padding-box;background-color:var(--dropdown-bg);border:1px solid var(--dropdown-border-color);border-radius:var(--popover-border-radius);color:var(--body-color);box-shadow:var(--dropdown-shadow)}.PopoverTail-module__tail{position:fixed;top:0;left:0;width:var(--tail-width);height:calc(var(--tail-width) / 2);overflow:hidden;pointer-events:none}.PopoverTail-module__tail--size-sm{--tail-width: 16px}.PopoverTail-module__tail--size-md{--tail-width: 24px}.PopoverTail-module__tail--size-lg{--tail-width: 36px}.PopoverTail-module__tail[data-side=top]{top:-1px}.PopoverTail-module__tail[data-side=left]{left:-1px}.PopoverTail-module__tail[data-side=right]{left:1px}.PopoverTail-module__tail[data-side=bottom]{top:1px}.PopoverTail-module__tail-inner{width:var(--tail-width);height:var(--tail-width);display:flex;align-items:center;justify-content:center;overflow:hidden}.PopoverTail-module__tail-inner:before{content:"";width:70%;height:70%;transform:translateY(-70%) rotate(45deg);background-color:var(--tail-background, var(--dropdown-bg));border:var(--tail-border, 1px solid var(--dropdown-border-color))}.MenuDivider-module__dropdown-divider{height:0;margin:.25rem 0;overflow:hidden;border-top:1px solid var(--border-color)}.Typography-module__align--left{text-align:left}.Typography-module__align--center{text-align:center}.Typography-module__align--right{text-align:right}.Typography-module__font-weight-regular{font-weight:400}.Typography-module__font-weight-medium{font-weight:500}.Typography-module__font-weight-bold{font-weight:600}.Typography-module__single-line{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.Typography-module__break-word{word-break:break-all}.Typography-module__small{font-size:.75rem;line-height:1rem;font-weight:inherit}@layer wildcard{[data-wildcard-root]{--code-font-family: sfmono-regular, consolas, menlo, dejavu sans mono, monospace;--code-font-size: calc(12em / 14)}}.Code-module__code{font-family:var(--code-font-family);font-size:var(--code-font-size);line-height:1rem;white-space:pre}.Heading-module__h1{font-size:1.625rem;font-weight:600;margin:0 0 1rem}.Heading-module__h2{font-size:1.25rem;font-weight:600}.Heading-module__h3{font-size:1rem;font-weight:600}.Heading-module__h4{font-size:.875rem;font-weight:500}.Heading-module__h5{font-size:.625rem;font-weight:600;text-transform:uppercase;margin:0}.Heading-module__h6{font-size:.625rem;font-weight:400}.Label-module__label{display:inline-block;font-weight:500;letter-spacing:-.0071428571em}.Label-module__label--underline{text-decoration:underline}.Label-module__label--uppercase{text-transform:uppercase}.Label-module__label--single-line{display:block}.MenuHeader-module__dropdown-header{display:block;padding:var(--dropdown-item-padding);margin-bottom:0;font-size:var(--dropdown-header-font-size);color:var(--dropdown-header-color);white-space:nowrap}.MenuItem-module__dropdown-item{display:block;width:100%;padding:var(--dropdown-item-padding);clear:both;font-weight:400;color:var(--dropdown-link-color);text-align:inherit;text-decoration:none;white-space:nowrap;background-color:transparent;border:0}.MenuItem-module__dropdown-item:hover,.MenuItem-module__dropdown-item:focus{color:var(--dropdown-link-hover-color);text-decoration:none;background-color:var(--dropdown-link-hover-bg)}.MenuItem-module__dropdown-item.MenuItem-module__active,.MenuItem-module__dropdown-item:active{color:var(--dropdown-link-active-color);text-decoration:none;background-color:var(--dropdown-link-active-bg)}.MenuItem-module__dropdown-item.MenuItem-module__disabled,.MenuItem-module__dropdown-item:disabled{color:var(--dropdown-link-disabled-color);pointer-events:none;background-color:transparent}.MenuItem-module__dropdown-item[data-reach-menu-item][aria-disabled]:active,.MenuItem-module__dropdown-item[data-reach-menu-item][aria-disabled]:hover{background-color:unset;color:unset}.MenuItem-module__dropdown-item[data-reach-menu-item][data-selected]:not(:active){background-color:var(--dropdown-link-hover-bg);color:unset}.MenuList-module__menu-list.MenuList-module__focus-visible{box-shadow:var(--focus-box-shadow)}.MenuList-module__menu-list:focus-visible{box-shadow:var(--focus-box-shadow)}.Breadcrumbs-module__list{margin:0;padding:0;display:flex;flex-wrap:nowrap;align-items:center;white-space:nowrap;list-style:none;position:relative;width:100%;overflow:hidden}.Breadcrumbs-module__separator{padding:0 .25rem;color:var(--link-color)}.Breadcrumbs-module__item--hidden{position:absolute;top:0;left:0;visibility:hidden;z-index:-1}.Breadcrumbs-module__item--with-button{display:flex}.Breadcrumbs-module__item--last{overflow:hidden;text-overflow:ellipsis}.Breadcrumbs-module__more-button{display:flex!important;border:none!important;padding:0 .25rem!important;color:var(--link-color)}.Breadcrumbs-module__more-button--active,.Breadcrumbs-module__more-button:hover,.Breadcrumbs-module__more-button:focus{color:var(--link-color)!important;background-color:var(--dropdown-link-hover-bg)!important}.Breadcrumbs-module__truncated-list{display:flex;flex-direction:column;list-style:none;padding:0!important;margin:0;border-radius:2px!important}.Breadcrumbs-module__truncated-list-item{cursor:pointer;padding:.15rem .35rem!important;display:flex!important;gap:.25rem;align-items:center}.Breadcrumbs-module__truncated-list-item[data-reach-menu-item][data-selected]:not(:active){background-color:var(--primary);color:var(--light-text)}.Alert-module__alert{--alert-icon-display: block;--alert-icon-block-width: 2.5rem;--alert-content-padding: .5rem;--alert-background-color: var(--color-bg-1);overflow:hidden;position:relative;margin-bottom:1rem;color:var(--body-color);border-radius:var(--border-radius);border:1px solid var(--alert-border-color);background-color:var(--alert-background-color);padding:var(--alert-content-padding) var(--alert-content-padding) var(--alert-content-padding) calc(var(--alert-icon-block-width) + var(--alert-content-padding))}.Alert-module__alert--with-no-icon{padding:var(--alert-content-padding)}.Alert-module__alert--with-no-icon:before,.Alert-module__alert--with-no-icon:after{--alert-icon-display: none}.Alert-module__alert a{font-weight:500}.Alert-module__alert a:hover{text-decoration:underline}.Alert-module__alert a[class*=btn]:hover{text-decoration:none!important}.Alert-module__alert h4{margin-bottom:.25rem}.Alert-module__alert-primary:before,.Alert-module__alert-primary:after,.Alert-module__alert-secondary:before,.Alert-module__alert-secondary:after,.Alert-module__alert-success:before,.Alert-module__alert-success:after,.Alert-module__alert-danger:before,.Alert-module__alert-danger:after,.Alert-module__alert-warning:before,.Alert-module__alert-warning:after,.Alert-module__alert-info:before,.Alert-module__alert-info:after,.Alert-module__alert-merged:before,.Alert-module__alert-merged:after,.Alert-module__alert-note:before,.Alert-module__alert-note:after,.Alert-module__alert-waiting:before,.Alert-module__alert-waiting:after{display:var(--alert-icon-display);content:"";position:absolute;top:0;left:0;width:var(--alert-icon-block-width);height:100%}.Alert-module__alert-primary:before,.Alert-module__alert-secondary:before,.Alert-module__alert-success:before,.Alert-module__alert-danger:before,.Alert-module__alert-warning:before,.Alert-module__alert-info:before,.Alert-module__alert-merged:before,.Alert-module__alert-note:before,.Alert-module__alert-waiting:before{border:2px solid var(--color-bg-1);border-top-left-radius:var(--border-radius);border-bottom-left-radius:var(--border-radius);background-color:var(--alert-icon-background-color)}.Alert-module__alert-primary:after,.Alert-module__alert-secondary:after,.Alert-module__alert-success:after,.Alert-module__alert-danger:after,.Alert-module__alert-warning:after,.Alert-module__alert-info:after,.Alert-module__alert-merged:after,.Alert-module__alert-note:after,.Alert-module__alert-waiting:after{-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:1rem;mask-size:1rem;-webkit-mask-position:50% 50%;mask-position:50% 50%;background-color:var(--alert-icon-color)}.Alert-module__alert-info{--alert-border-color: var(--info);--alert-icon-color: var(--light-text)}.theme-light .Alert-module__alert-info{--alert-icon-background-color: var(--info-4)}.theme-dark .Alert-module__alert-info{--alert-icon-background-color: var(--info-3)}.Alert-module__alert-primary{--alert-border-color: var(--primary);--alert-icon-color: var(--light-text);--alert-icon-background-color: var(--primary-4)}.Alert-module__alert-secondary{--alert-icon-color: var(--light-text);--alert-icon-background-color: var(--secondary-4)}.theme-light .Alert-module__alert-secondary{--alert-border-color: var(--secondary-3)}.theme-dark .Alert-module__alert-secondary{--alert-border-color: var(--secondary)}.Alert-module__alert-info:after,.Alert-module__alert-primary:after,.Alert-module__alert-secondary:after{-webkit-mask-image:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M13 9h-2V7h2m0 10h-2v-6h2m-1-9A10 10 0 002 12a10 10 0 0010 10 10 10 0 0010-10A10 10 0 0012 2z'/></svg>");mask-image:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M13 9h-2V7h2m0 10h-2v-6h2m-1-9A10 10 0 002 12a10 10 0 0010 10 10 10 0 0010-10A10 10 0 0012 2z'/></svg>")}.Alert-module__alert-warning,.Alert-module__alert-waiting{--alert-icon-color: var(--light-text);--alert-border-color: var(--warning);--alert-icon-background-color: var(--warning-4)}.Alert-module__alert-warning:after{-webkit-mask-image:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M13 14h-2V9h2m0 9h-2v-2h2M1 21h22L12 2 1 21z'/></svg>");mask-image:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M13 14h-2V9h2m0 9h-2v-2h2M1 21h22L12 2 1 21z'/></svg>")}.Alert-module__alert-waiting:after{-webkit-mask-image:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6,2H18V8H18V8L14,12L18,16V16H18V22H6V16H6V16L10,12L6,8V8H6V2M16,16.5L12,12.5L8,16.5V20H16V16.5M12,11.5L16,7.5V4H8V7.5L12,11.5M10,6H14V6.75L12,8.75L10,6.75V6Z' /></svg>");mask-image:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6,2H18V8H18V8L14,12L18,16V16H18V22H6V16H6V16L10,12L6,8V8H6V2M16,16.5L12,12.5L8,16.5V20H16V16.5M12,11.5L16,7.5V4H8V7.5L12,11.5M10,6H14V6.75L12,8.75L10,6.75V6Z' /></svg>")}.Alert-module__alert-danger{--alert-icon-color: var(--light-text);--alert-border-color: var(--danger);--alert-icon-background-color: var(--danger-4)}.Alert-module__alert-danger:after{-webkit-mask-image:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M13 13h-2V7h2m0 10h-2v-2h2M12 2A10 10 0 002 12a10 10 0 0010 10 10 10 0 0010-10A10 10 0 0012 2z'/></svg>");mask-image:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M13 13h-2V7h2m0 10h-2v-2h2M12 2A10 10 0 002 12a10 10 0 0010 10 10 10 0 0010-10A10 10 0 0012 2z'/></svg>")}.Alert-module__alert-success{--alert-icon-color: var(--light-text);--alert-border-color: var(--success);--alert-icon-background-color: var(--success-4)}.Alert-module__alert-success:after{-webkit-mask-image:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2m-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/></svg>");mask-image:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2m-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/></svg>")}.Alert-module__alert-merged{--alert-icon-color: var(--light-text);--alert-border-color: var(--merged);--alert-icon-background-color: var(--merged-4)}.Alert-module__alert-merged:after{-webkit-mask-image:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M7 3a3 3 0 013 3c0 1.29-.81 2.39-1.96 2.81.54 5 5.04 5.96 7.15 6.15A2.985 2.985 0 0118 13a3 3 0 013 3 3 3 0 01-3 3c-1.31 0-2.43-.84-2.84-2-4.25-.2-5.72-1.81-7.16-3.61v1.78c1.17.41 2 1.52 2 2.83a3 3 0 01-3 3 3 3 0 01-3-3c0-1.31.83-2.42 2-2.83V8.83A2.99 2.99 0 014 6a3 3 0 013-3m0 2a1 1 0 00-1 1 1 1 0 001 1 1 1 0 001-1 1 1 0 00-1-1m0 12a1 1 0 00-1 1 1 1 0 001 1 1 1 0 001-1 1 1 0 00-1-1m11-2a1 1 0 00-1 1 1 1 0 001 1 1 1 0 001-1 1 1 0 00-1-1z'/></svg>");mask-image:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M7 3a3 3 0 013 3c0 1.29-.81 2.39-1.96 2.81.54 5 5.04 5.96 7.15 6.15A2.985 2.985 0 0118 13a3 3 0 013 3 3 3 0 01-3 3c-1.31 0-2.43-.84-2.84-2-4.25-.2-5.72-1.81-7.16-3.61v1.78c1.17.41 2 1.52 2 2.83a3 3 0 01-3 3 3 3 0 01-3-3c0-1.31.83-2.42 2-2.83V8.83A2.99 2.99 0 014 6a3 3 0 013-3m0 2a1 1 0 00-1 1 1 1 0 001 1 1 1 0 001-1 1 1 0 00-1-1m0 12a1 1 0 00-1 1 1 1 0 001 1 1 1 0 001-1 1 1 0 00-1-1m11-2a1 1 0 00-1 1 1 1 0 001 1 1 1 0 001-1 1 1 0 00-1-1z'/></svg>")}.Alert-module__alert-note{--alert-icon-block-width: 0rem;--alert-border-color: var(--border-color);--alert-content-padding: .75rem;--alert-background-color: var(--subtle-bg)}.Alert-module__alert-note:after,.Alert-module__alert-note:before{display:none}.AlertLink-module__alert-link{font-weight:500}.AlertLink-module__alert-link:hover{text-decoration:underline}.Container-module__container{padding:1.5rem;background-color:var(--color-bg-1);border:1px solid var(--border-color);border-radius:var(--border-radius)}.Markdown-module__markdown>p:only-child{display:contents}.Markdown-module__markdown h1,.Markdown-module__markdown h2,.Markdown-module__markdown h3,.Markdown-module__markdown h4,.Markdown-module__markdown h5,.Markdown-module__markdown h6{display:table;border-bottom:1px solid var(--border-color);padding-bottom:.5rem}.Markdown-module__markdown h1 a.anchor,.Markdown-module__markdown h2 a.anchor,.Markdown-module__markdown h3 a.anchor,.Markdown-module__markdown h4 a.anchor,.Markdown-module__markdown h5 a.anchor,.Markdown-module__markdown h6 a.anchor{opacity:0;font-size:1rem;padding:.125rem;margin-left:-1rem;width:1rem;display:inline-block}.Markdown-module__markdown h1 a.anchor:before,.Markdown-module__markdown h2 a.anchor:before,.Markdown-module__markdown h3 a.anchor:before,.Markdown-module__markdown h4 a.anchor:before,.Markdown-module__markdown h5 a.anchor:before,.Markdown-module__markdown h6 a.anchor:before{content:"#"}.Markdown-module__markdown h1:hover a.anchor,.Markdown-module__markdown h2:hover a.anchor,.Markdown-module__markdown h3:hover a.anchor,.Markdown-module__markdown h4:hover a.anchor,.Markdown-module__markdown h5:hover a.anchor,.Markdown-module__markdown h6:hover a.anchor{opacity:1}.Markdown-module__markdown h1{width:100%}.Markdown-module__markdown table,.Markdown-module__markdown th,.Markdown-module__markdown td{border:1px solid var(--border-color);padding:.5rem 1rem}.Markdown-module__markdown table{margin-bottom:1rem}.Markdown-module__markdown ol,.Markdown-module__markdown ul{margin-left:0}.Markdown-module__markdown code,.Markdown-module__markdown pre{background:var(--code-bg)}.Markdown-module__markdown pre{padding:.5rem}.Markdown-module__markdown code{display:inline-block;padding:.25rem}.Markdown-module__markdown p>code{white-space:nowrap}.Markdown-module__markdown blockquote{padding:0 1rem;color:var(--text-muted);border-left:4px solid var(--border-color)}.Markdown-module__markdown img{max-width:100%;margin-bottom:.5rem}{}.chroma .chroma-err{color:var(--chroma-error-fg);background-color:var(--chroma-error-bg)}.chroma .chroma-lnlinks{outline:none;text-decoration:none;color:var(--chroma-line-link-fg)}.chroma .chroma-lntd{vertical-align:top;padding:0;margin:0;border:0}.chroma .chroma-lntable{border-spacing:0;padding:0;margin:0;border:0}.chroma .chroma-hl{background-color:var(--chroma-line-highlight-bg)}.chroma .chroma-lnt{white-space:pre;-webkit-user-select:none;-moz-user-select:none;user-select:none;margin-right:.4rem;padding:0 .4rem;color:var(--chroma-line-numbers-table-fg)}.chroma .chroma-ln{white-space:pre;-webkit-user-select:none;-moz-user-select:none;user-select:none;margin-right:.4rem;padding:0 .4rem;color:var(--chroma-line-numbers-fg)}.chroma .chroma-line{display:flex}.chroma .chroma-k{color:var(--chroma-keyword-fg);font-weight:700}.chroma .chroma-kc{color:var(--chroma-keyword-constant-fg);font-weight:700}.chroma .chroma-kd{color:var(--chroma-keyword-declaration-fg);font-weight:700}.chroma .chroma-kn{color:var(--chroma-keyword-namespace-fg);font-weight:700}.chroma .chroma-kp{color:var(--chroma-keyword-pseudo-fg);font-weight:700}.chroma .chroma-kr{color:var(--chroma-keyword-reserved-fg);font-weight:700}.chroma .chroma-kt{color:var(--chroma-keyword-type-fg);font-weight:700}.chroma .chroma-na{color:var(--chroma-name-attribute-fg)}.chroma .chroma-nb{color:var(--chroma-name-builtin-fg)}.chroma .chroma-bp{color:var(--chroma-name-builtin-pseudo-fg)}.chroma .chroma-nc{color:var(--chroma-name-class-fg);font-weight:700}.chroma .chroma-no{color:var(--chroma-name-constant-fg)}.chroma .chroma-nd{color:var(--chroma-name-decorator-fg);font-weight:700}.chroma .chroma-ni{color:var(--chroma-name-entity-fg)}.chroma .chroma-ne{color:var(--chroma-name-exception-fg);font-weight:700}.chroma .chroma-nf{color:var(--chroma-name-function-fg);font-weight:700}.chroma .chroma-nl{color:var(--chroma-name-label-fg);font-weight:700}.chroma .chroma-nn{color:var(--chroma-name-namespace-fg)}.chroma .chroma-nt{color:var(--chroma-name-tag-fg)}.chroma .chroma-nv{color:var(--chroma-name-variable-fg)}.chroma .chroma-vc{color:var(--chroma-name-variable-class-fg)}.chroma .chroma-vg{color:var(--chroma-name-variable-global-fg)}.chroma .chroma-vi{color:var(--chroma-name-variable-instance-fg)}.chroma .chroma-s{color:var(--chroma-literal-string-fg)}.chroma .chroma-sa{color:var(--chroma-literal-string-affix-fg)}.chroma .chroma-sb{color:var(--chroma-literal-string-backtick-fg)}.chroma .chroma-sc{color:var(--chroma-literal-string-char-fg)}.chroma .chroma-dl{color:var(--chroma-literal-string-delimiter-fg)}.chroma .chroma-sd{color:var(--chroma-literal-string-doc-fg)}.chroma .chroma-s2{color:var(--chroma-literal-string-double-fg)}.chroma .chroma-se{color:var(--chroma-literal-string-escape-fg)}.chroma .chroma-sh{color:var(--chroma-literal-string-heredoc-fg)}.chroma .chroma-si{color:var(--chroma-literal-string-interpol-fg)}.chroma .chroma-sx{color:var(--chroma-literal-string-other-fg)}.chroma .chroma-sr{color:var(--chroma-literal-string-regex-fg)}.chroma .chroma-s1{color:var(--chroma-literal-string-single-fg)}.chroma .chroma-ss{color:var(--chroma-literal-string-symbol-fg)}.chroma .chroma-m{color:var(--chroma-literal-number-fg)}.chroma .chroma-mb{color:var(--chroma-literal-number-bin-fg)}.chroma .chroma-mf{color:var(--chroma-literal-number-float-fg)}.chroma .chroma-mh{color:var(--chroma-literal-number-hex-fg)}.chroma .chroma-mi{color:var(--chroma-literal-number-integer-fg)}.chroma .chroma-il{color:var(--chroma-literal-number-integer-long-fg)}.chroma .chroma-mo{color:var(--chroma-literal-number-oct-fg)}.chroma .chroma-o{color:var(--chroma-operator-fg);font-weight:700}.chroma .chroma-ow{color:var(--chroma-operator-word-fg);font-weight:700}.chroma .chroma-c{color:var(--chroma-comment-fg);font-style:italic}.chroma .chroma-ch{color:var(--chroma-comment-hashbang-fg);font-style:italic}.chroma .chroma-cm{color:var(--chroma-comment-multiline-fg);font-style:italic}.chroma .chroma-c1{color:var(--chroma-comment-single-fg);font-style:italic}.chroma .chroma-cs{color:var(--chroma-comment-special-fg);font-weight:700;font-style:italic}.chroma .chroma-cp{color:var(--chroma-comment-preproc-fg);font-weight:700;font-style:italic}.chroma .chroma-cpf{color:var(--chroma-comment-preproc-file-fg);font-weight:700;font-style:italic}.chroma .chroma-gd{color:var(--chroma-generic-deleted-fg);background-color:var(--chroma-generic-deleted-bg)}.chroma .chroma-ge{color:var(--chroma-generic-emph-fg);font-style:italic}.chroma .chroma-gr{color:var(--chroma-generic-error-fg)}.chroma .chroma-gh{color:var(--chroma-generic-heading-fg)}.chroma .chroma-gi{color:var(--chroma-generic-inserted-fg);background-color:var(--chroma-generic-inserted-bg)}.chroma .chroma-go{color:var(--chroma-generic-output-fg)}.chroma .chroma-gp{color:var(--chroma-generic-prompt-fg)}.chroma .chroma-gs{font-weight:700}.chroma .chroma-gu{color:var(--chroma-generic-subheading-fg)}.chroma .chroma-gt{color:var(--chroma-generic-traceback-fg)}.chroma .chroma-gl{text-decoration:underline}.chroma .chroma-w{color:var(--chroma-text-whitespace-fg)}@layer wildcard{[data-wildcard-root]{--tooltip-font-size: .75rem;--tooltip-line-height: 1.02rem;--tooltip-max-width: 256px;--tooltip-color: var(--light-text);--tooltip-border-radius: var(--border-radius);--tooltip-padding-y: .25rem;--tooltip-padding-x: .5rem;--tooltip-margin: 0}}.Tooltip-module__tooltip-content{font-size:var(--tooltip-font-size);line-height:var(--tooltip-line-height);max-width:var(--tooltip-max-width);background-color:var(--tooltip-bg);border-radius:var(--tooltip-border-radius);color:var(--tooltip-color);padding:var(--tooltip-padding-y) var(--tooltip-padding-x);-webkit-user-select:text;-moz-user-select:text;user-select:text;word-wrap:break-word;border:none;min-width:0}.Tooltip-module__tooltip-arrow{--tail-background: var(--tooltip-bg);--tail-border: none}.Tooltip-module__tooltip-arrow[data-side=top]{top:-2px}.Tooltip-module__tooltip-arrow[data-side=left]{left:-2px}.Tooltip-module__tooltip-arrow[data-side=right]{left:2px}.Tooltip-module__tooltip-arrow[data-side=bottom]{top:2px}.Tooltip-module__tooltip-wrapper{display:inline-flex;-webkit-user-select:text;-moz-user-select:text;user-select:text}.Tooltip-module__tooltip-trigger-container{display:inline-block;position:relative}.Tooltip-module__tooltip-trigger-disabled-overlay{cursor:not-allowed;position:absolute;height:100%;width:100%;z-index:999999}.Tick-module__tick{fill:var(--text-muted);font-size:.75rem}.Axis-module__grid-line line{stroke:var(--border-color-2);stroke-width:1}.Axis-module__axis-line{stroke:var(--border-color-2);stroke-width:1}.Axis-module__axis-line--vertical{stroke-width:0;display:none}.Axis-module__axis-tick line{stroke:var(--border-color-2);stroke-width:1}.ScrollBox-module__root{--shutter-height-internal: var(--shutter-height, 2rem);--shutter-color-start-internal: var(--shutter-color-start, var(--color-bg-1));--shutter-color-stop-internal: var(--shutter-color-stop, rgb(249, 250, 251, 0));position:relative;overflow:hidden}.ScrollBox-module__root:before,.ScrollBox-module__root:after{content:"";display:block;position:absolute;width:100%;height:var(--shutter-height-internal);max-height:100%;opacity:0;pointer-events:none;transition:opacity .3s ease}.ScrollBox-module__root:before{top:0;background:linear-gradient(0deg,var(--shutter-color-stop-internal) 0%,var(--shutter-color-start-internal) 100%)}.ScrollBox-module__root:after{bottom:0;background:linear-gradient(180deg,var(--shutter-color-stop-internal) 0%,var(--shutter-color-start-internal) 100%)}.ScrollBox-module__root--with-top-fader:before{opacity:1}.ScrollBox-module__root--with-bottom-fader:after{opacity:1}.ScrollBox-module__scroll-container{overflow-y:auto;height:100%}.Tooltip-module__tooltip{pointer-events:none;padding:.5rem}.Tooltip-module__tail{pointer-events:none}.Tooltip-module__tooltip-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:.25rem;min-width:12rem;max-width:20rem}.Tooltip-module__item{display:flex;align-items:baseline;padding:.125rem .25rem;border-radius:.25rem;font-weight:400;font-size:.75rem}.Tooltip-module__item--active{background-color:var(--secondary-2)}.Tooltip-module__legend-text{flex-grow:1;overflow:hidden;text-overflow:ellipsis;margin-right:1rem}.Tooltip-module__legend-stacked-value{font-weight:700}.Tooltip-module__mark{align-self:baseline;width:.5rem;height:.5rem;flex-shrink:0;margin-right:.25rem;border-radius:50%}.LegendList-module__legend-list{display:flex;flex-wrap:wrap;-moz-column-gap:.5rem;column-gap:.5rem;row-gap:.25rem;list-style:none;margin:0!important;padding:0;line-height:1.3}.LegendList-module__legend-item{display:flex;align-items:flex-start;word-break:break-all}.LegendList-module__legend-mark-container{display:flex;align-items:center}.LegendList-module__legend-mark-container:before{content:"a";width:0;visibility:hidden}.LegendList-module__legend-mark{display:flex;align-items:center;width:.5rem;height:.5rem;flex-shrink:0;margin-right:.25rem;border-radius:50%}.LineChartContent-module__svg--with-cursor{cursor:pointer}.LineChart-module__root:focus,.LineChart-module__root:focus-within{box-shadow:var(--focus-box-shadow)}.PieArc-module__label{pointer-events:inherit!important}.PieArc-module__label div{background-color:var(--body-bg);border:1px solid var(--border-color);padding:.25rem .5rem}.PieArc-module__label-title{font-weight:400;font-size:1rem;color:var(--body-color);background-color:var(--body-bg);text-decoration:none;max-width:150px;text-overflow:ellipsis;overflow:hidden;margin-bottom:0}.PieArc-module__label-sub-title{color:var(--text-muted);text-decoration:none;margin-bottom:0}.PieArc-module__arc{stroke:var(--body-bg)}.PieArc-module__arc-path{stroke-width:1;stroke:var(--body-bg)}.PieArc-module__label-line,.PieArc-module__label-circle{stroke:var(--body-color);fill:var(--body-color)}.PieChart-module__svg{overflow:visible}.PieChart-module__link{text-decoration:none}.PieChart-module__link:focus .PieChart-module__arc-path{stroke-width:3;stroke:var(--primary)}.PieChart-module__link--fade{opacity:.5}.PieChart-module__arc-path--fake{stroke-width:3;stroke:var(--primary);transform:scale(1.03)}.theme-dark .GroupedBars-module__bar--fade{filter:brightness(.5)}.theme-light .GroupedBars-module__bar--fade{filter:sepia(45%) brightness(134%) contrast(1.2) opacity(.9)}.TooltipContent-module__one-line-tooltip{display:flex;justify-content:space-between;gap:2rem;margin:0}.BarChartContent-module__root{pointer-events:bounding-box}.BarChartContent-module__root--with-hovered-link-point{cursor:pointer}.BaseControlInput-module__label:hover{color:var(--input-label-hover-color)}.TextArea-module__label{text-align:left;display:block;margin-bottom:0}.TextArea-module__textarea{margin:0}.TextArea-module__resize-none{resize:none}.FlexTextArea-module__textarea{margin:0}.LoadingSpinner-module__loading-spinner{margin:.125rem;width:1rem;height:1rem;border-radius:50%;animation:LoadingSpinner-module__loading-spinner-spin 1s linear infinite;border:2px solid var(--loading-spinner-outer-color, rgba(0, 0, 0, .3));border-top:2px solid var(--loading-spinner-inner-color, rgb(0, 0, 0))}.theme-light .LoadingSpinner-module__loading-spinner{--loading-spinner-outer-color: var(--gray-05);--loading-spinner-inner-color: var(--gray-08)}.theme-dark .LoadingSpinner-module__loading-spinner{--loading-spinner-outer-color: var(--gray-07);--loading-spinner-inner-color: var(--white)}@keyframes LoadingSpinner-module__loading-spinner-spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.LoaderInput-module__container{position:relative}.LoaderInput-module__spinner{position:absolute;right:calc(.5rem - 1px);top:calc(.5rem - 1px)}.Input-module__label{width:100%}.Input-module__input-loading{padding-right:2rem}.Input-module__loader-input{display:flex}.Input-module__description-block{margin:0 0 0 .25rem}.Input-module__description-block ul{margin:0;padding-left:1rem}.Select-module__label-block{width:100%;margin-bottom:.5rem}.FormGroup-module__description{font-size:.875rem}.FormGroup-module__label{font-weight:700}@layer wildcard{[data-wildcard-root]{--path-icon-size: calc(22em / 26)}}.Breadcrumb-module__wrapper{display:inline-flex;align-items:center}.Breadcrumb-module__wrapper:not(:last-child):after{content:"/";display:block;margin-right:.5rem;color:var(--icon-color);font-weight:400}.Breadcrumb-module__path{display:inline-flex;align-items:center}.Breadcrumb-module__icon{margin-right:.5rem;height:var(--path-icon-size);width:var(--path-icon-size)}.Breadcrumb-module__text{margin-right:.5rem}.Heading-module__heading{display:flex;flex-wrap:wrap;flex-grow:1;align-items:center;margin:0;overflow-wrap:anywhere}@layer wildcard{[data-wildcard-root]{--viewport-sm: 576px;--viewport-md: 768px;--viewport-lg: 992px;--viewport-xl: 1200px}}.PageHeader-module__container{display:flex;flex-direction:column;flex-wrap:wrap;justify-content:space-between;gap:1rem}@media (min-width: 768px){.PageHeader-module__container{flex-direction:row;flex-wrap:nowrap;align-items:flex-end}}@media (min-width: 768px){.PageHeader-module__content{min-width:0;flex:1}}.PageHeader-module__annotation{display:block;margin-bottom:.5rem}.PageHeader-module__byline{display:block;margin-top:.5rem}.PageHeader-module__description{display:block;margin-top:.5rem;margin-bottom:0}.PageHeader-module__breadcrumb svg{flex-shrink:0}.PageSelector-module__list{display:flex;align-items:center;justify-content:center;list-style:none;margin-left:0;margin-right:0;padding:0}.PageSelector-module__button{min-width:2rem;padding:.25rem .5rem;transition:none}.PageSelector-module__button:focus,.PageSelector-module__button:hover{text-decoration:none}.PageSelector-module__button:hover:not(.btn-primary,:disabled){background-color:var(--color-bg-2);color:var(--link-color)}.PageSwitcher-module__list,.PageSwitcher-module__label{display:flex;align-items:center;justify-content:center;margin-left:0;margin-right:0;padding:0;margin-bottom:.625rem}.PageSwitcher-module__list{list-style:none}.PageSwitcher-module__button{min-width:2rem;padding:.25rem .5rem}.PageSwitcher-module__button:focus,.PageSwitcher-module__button:hover{text-decoration:none}.PageSwitcher-module__next-button,.PageSwitcher-module__previous-button{min-width:4.5rem;display:flex;align-items:center}.PageSwitcher-module__next-button-icon,.PageSwitcher-module__previous-button-icon{flex-grow:0}.PageSwitcher-module__next-button-label,.PageSwitcher-module__previous-button-label{flex-grow:1;text-align:center}.PageSwitcher-module__first-page-button,.PageSwitcher-module__last-page-button{fill:currentColor!important}:root{--reach-tabs: 1}[data-reach-tabs][data-orientation=vertical]{display:flex}[data-reach-tab-list]{display:flex;background:#0000000d}[data-reach-tab-list][aria-orientation=vertical]{flex-direction:column}[data-reach-tab]{display:inline-block;border:none;padding:.25em .5em;margin:0;border-bottom:1px solid transparent;background:none;color:inherit;font:inherit;cursor:pointer;-webkit-appearance:none;-moz-appearance:none}[data-reach-tab]:active{background:#0000000d}[data-reach-tab]:disabled{opacity:.25;cursor:default}[data-reach-tab][data-selected]{border-bottom-color:currentColor}.Tabs-module__wildcard-tabs{--opacity-transition: .3s;--scroll-gradient-color: var(--body-bg);--small-size-font: .75rem;--medium-size-font: .875rem;--large-size-font: 1rem}.Tabs-module__wildcard-tabs[data-reach-tabs]{background:transparent}.Tabs-module__wildcard-tabs [data-reach-tab]{align-items:center;letter-spacing:normal;margin:0;min-height:2rem;padding:0 .125rem;color:var(--body-color)!important;text-transform:none;display:inline-flex;flex-direction:column;justify-content:center;border-bottom:2px solid transparent}.Tabs-module__wildcard-tabs [data-reach-tab]:active{background-color:transparent}.Tabs-module__wildcard-tabs [data-reach-tab]:hover{color:var(--body-color)!important;text-transform:none!important;border-bottom:2px solid var(--border-color)}.Tabs-module__wildcard-tabs [data-reach-tab][data-selected]{color:var(--body-color);font-weight:700;border-bottom:2px solid var(--brand-secondary)}.Tabs-module__wildcard-tabs [data-reach-tab]:after{content:attr(data-tab-content);height:0;text-transform:capitalize;visibility:hidden;overflow:hidden;-webkit-user-select:none;-moz-user-select:none;user-select:none;pointer-events:none;font-weight:700}.Tabs-module__wildcard-tabs [data-reach-tab]:first-of-type{margin-left:0}.Tabs-module__wildcard-tabs [data-reach-tab].Tabs-module__focus-visible{outline:none;box-shadow:none}.Tabs-module__wildcard-tabs [data-reach-tab]:focus-visible{outline:none;box-shadow:none}.Tabs-module__wildcard-tabs [data-reach-tab].Tabs-module__focus-visible>.Tabs-module__tab-label{padding:.125rem;margin:-.125rem;border-radius:var(--border-radius);outline:1px solid transparent;box-shadow:var(--focus-box-shadow)}.Tabs-module__wildcard-tabs [data-reach-tab]:focus-visible>.Tabs-module__tab-label{padding:.125rem;margin:-.125rem;border-radius:var(--border-radius);outline:1px solid transparent;box-shadow:var(--focus-box-shadow)}.Tabs-module__wildcard-tabs .Tabs-module__tab-nowrap{white-space:nowrap}.Tabs-module__wildcard-tabs [data-reach-tab-list]{background:transparent}.Tabs-module__wildcard-tabs .Tabs-module__tablist-wrapper{position:relative;border-bottom:1px solid var(--border-color-2);padding-bottom:0;display:flex;align-items:stretch;justify-content:space-between}.Tabs-module__wildcard-tabs .Tabs-module__tablist-wrapper:after,.Tabs-module__wildcard-tabs .Tabs-module__tablist-wrapper:before{content:"";position:absolute;width:5rem;top:0;height:100%;pointer-events:none;opacity:0;transition:opacity var(--opacity-transition) ease}@media (prefers-reduced-motion: reduce){.Tabs-module__wildcard-tabs .Tabs-module__tablist-wrapper:after,.Tabs-module__wildcard-tabs .Tabs-module__tablist-wrapper:before{transition:none}}.Tabs-module__wildcard-tabs .Tabs-module__tablist-wrapper:before{left:0;background:linear-gradient(to right,var(--scroll-gradient-color) 15%,rgba(0,0,0,0))}.Tabs-module__wildcard-tabs .Tabs-module__tablist-wrapper:after{right:0;background:linear-gradient(to left,var(--scroll-gradient-color) 15%,rgba(0,0,0,0))}.Tabs-module__wildcard-tabs .Tabs-module__tablist-wrapper-obscured-left:before{opacity:1}.Tabs-module__wildcard-tabs .Tabs-module__tablist-wrapper-obscured-right:after{opacity:1}.Tabs-module__wildcard-tabs .Tabs-module__tab-list{display:flex;flex-wrap:wrap;gap:.75rem}.Tabs-module__wildcard-tabs .Tabs-module__tab-list-scroll{flex-wrap:nowrap;overflow-x:scroll}.Tabs-module__wildcard-tabs .Tabs-module__small{font-size:var(--small-size-font)}.Tabs-module__wildcard-tabs .Tabs-module__medium{font-size:var(--medium-size-font)}.Tabs-module__wildcard-tabs .Tabs-module__large{font-size:var(--large-size-font)}@layer wildcard{[data-wildcard-root]{--badge-font-size: .75rem;--badge-font-weight: 500;--badge-padding-y: .125rem;--badge-padding-x: .375rem;--badge-border-radius: 3px;--badge-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out}}.Badge-module__badge{display:inline-block;padding:var(--badge-padding-y) var(--badge-padding-x);font-size:var(--badge-font-size);font-weight:var(--badge-font-weight);text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:var(--badge-border-radius);background-color:var(--subtle-bg);color:var(--link-color);border:none;line-height:1rem}.Badge-module__badge:focus,.Badge-module__badge.Badge-module__focus{outline:0}a.Badge-module__badge:hover,a.Badge-module__badge:focus{text-decoration:none}.Badge-module__badge:empty{display:none}.Badge-module__btn .Badge-module__badge{position:relative;top:-1px}.Badge-module__pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.Badge-module__sm{--badge-font-size: .6875rem;--badge-padding-y: 0;--badge-padding-x: .25rem;--badge-border-radius: 2px}a.Badge-module__badge{transition:var(--badge-transition)}.Badge-module__primary,.Badge-module__secondary,.Badge-module__success,.Badge-module__danger,.Badge-module__info,.Badge-module__warning,.Badge-module__merged,.Badge-module__outline-secondary{background-color:var(--badge-base);color:var(--badge-text);border:var(--badge-border, none)}a.Badge-module__primary,a.Badge-module__secondary,a.Badge-module__success,a.Badge-module__danger,a.Badge-module__info,a.Badge-module__warning,a.Badge-module__merged,a.Badge-module__outline-secondary{background-color:var(--badge-base);color:var(--badge-text)}a.Badge-module__primary:hover,a.Badge-module__primary:focus,a.Badge-module__primary.Badge-module__focus,a.Badge-module__secondary:hover,a.Badge-module__secondary:focus,a.Badge-module__secondary.Badge-module__focus,a.Badge-module__success:hover,a.Badge-module__success:focus,a.Badge-module__success.Badge-module__focus,a.Badge-module__danger:hover,a.Badge-module__danger:focus,a.Badge-module__danger.Badge-module__focus,a.Badge-module__info:hover,a.Badge-module__info:focus,a.Badge-module__info.Badge-module__focus,a.Badge-module__warning:hover,a.Badge-module__warning:focus,a.Badge-module__warning.Badge-module__focus,a.Badge-module__merged:hover,a.Badge-module__merged:focus,a.Badge-module__merged.Badge-module__focus,a.Badge-module__outline-secondary:hover,a.Badge-module__outline-secondary:focus,a.Badge-module__outline-secondary.Badge-module__focus{color:var(--badge-text);background-color:var(--badge-dark)}a.Badge-module__primary:focus,a.Badge-module__primary.Badge-module__focus,a.Badge-module__secondary:focus,a.Badge-module__secondary.Badge-module__focus,a.Badge-module__success:focus,a.Badge-module__success.Badge-module__focus,a.Badge-module__danger:focus,a.Badge-module__danger.Badge-module__focus,a.Badge-module__info:focus,a.Badge-module__info.Badge-module__focus,a.Badge-module__warning:focus,a.Badge-module__warning.Badge-module__focus,a.Badge-module__merged:focus,a.Badge-module__merged.Badge-module__focus,a.Badge-module__outline-secondary:focus,a.Badge-module__outline-secondary.Badge-module__focus{outline:0}.theme-light a.Badge-module__primary:focus,.theme-light a.Badge-module__primary.Badge-module__focus,.theme-light a.Badge-module__secondary:focus,.theme-light a.Badge-module__secondary.Badge-module__focus,.theme-light a.Badge-module__success:focus,.theme-light a.Badge-module__success.Badge-module__focus,.theme-light a.Badge-module__danger:focus,.theme-light a.Badge-module__danger.Badge-module__focus,.theme-light a.Badge-module__info:focus,.theme-light a.Badge-module__info.Badge-module__focus,.theme-light a.Badge-module__warning:focus,.theme-light a.Badge-module__warning.Badge-module__focus,.theme-light a.Badge-module__merged:focus,.theme-light a.Badge-module__merged.Badge-module__focus,.theme-light a.Badge-module__outline-secondary:focus,.theme-light a.Badge-module__outline-secondary.Badge-module__focus{box-shadow:0 0 0 .125rem var(--badge-light)}.theme-dark a.Badge-module__primary:focus,.theme-dark a.Badge-module__primary.Badge-module__focus,.theme-dark a.Badge-module__secondary:focus,.theme-dark a.Badge-module__secondary.Badge-module__focus,.theme-dark a.Badge-module__success:focus,.theme-dark a.Badge-module__success.Badge-module__focus,.theme-dark a.Badge-module__danger:focus,.theme-dark a.Badge-module__danger.Badge-module__focus,.theme-dark a.Badge-module__info:focus,.theme-dark a.Badge-module__info.Badge-module__focus,.theme-dark a.Badge-module__warning:focus,.theme-dark a.Badge-module__warning.Badge-module__focus,.theme-dark a.Badge-module__merged:focus,.theme-dark a.Badge-module__merged.Badge-module__focus,.theme-dark a.Badge-module__outline-secondary:focus,.theme-dark a.Badge-module__outline-secondary.Badge-module__focus{box-shadow:0 0 0 .125rem var(--badge-dark)}.Badge-module__primary{--badge-base: var(--primary);--badge-light: var(--primary-2);--badge-dark: var(--primary-3);--badge-text: var(--light-text)}.Badge-module__secondary{--badge-base: var(--secondary);--badge-light: var(--secondary-2);--badge-dark: var(--secondary-3);--badge-text: var(--body-color)}.Badge-module__success{--badge-base: var(--success);--badge-light: var(--success-2);--badge-dark: var(--success-3);--badge-text: var(--light-text)}.Badge-module__danger{--badge-base: var(--danger);--badge-light: var(--danger-2);--badge-dark: var(--danger-3);--badge-text: var(--light-text)}.Badge-module__info{--badge-base: var(--info);--badge-light: var(--info-2);--badge-dark: var(--info-3);--badge-text: var(--light-text)}.Badge-module__warning{--badge-base: var(--warning);--badge-light: var(--warning-2);--badge-dark: var(--warning-3);--badge-text: var(--dark-text)}.Badge-module__merged{--badge-base: var(--merged);--badge-light: var(--merged-2);--badge-dark: var(--merged-3);--badge-text: var(--light-text)}.Badge-module__outline-secondary{--badge-base: transparent;--badge-light: var(--secondary-2);--badge-dark: var(--secondary-2);--badge-text: var(--text-muted);--badge-border: 1px solid var(--secondary)}.theme-light a.Badge-module__secondary:focus,.theme-light a.Badge-module__secondary.Badge-module__focus,.theme-light a.Badge-module__outline-secondary:focus,.theme-light a.Badge-module__outline-secondary.Badge-module__focus,.theme-dark a.Badge-module__secondary:focus,.theme-dark a.Badge-module__secondary.Badge-module__focus,.theme-dark a.Badge-module__outline-secondary:focus,.theme-dark a.Badge-module__outline-secondary.Badge-module__focus{box-shadow:var(--focus-box-shadow)}.theme-light a.Badge-module__secondary:hover,.theme-light a.Badge-module__secondary:focus,.theme-light a.Badge-module__secondary.Badge-module__focus,.theme-dark a.Badge-module__secondary:hover,.theme-dark a.Badge-module__secondary:focus,.theme-dark a.Badge-module__secondary.Badge-module__focus{color:var(--body-color)}.theme-light a.Badge-module__outline-secondary:hover,.theme-light a.Badge-module__outline-secondary:focus,.theme-light a.Badge-module__outline-secondary.Badge-module__focus{border-color:var(--secondary)}.theme-dark a.Badge-module__outline-secondary:hover,.theme-dark a.Badge-module__outline-secondary:focus,.theme-dark a.Badge-module__outline-secondary.Badge-module__focus{border-color:var(--secondary-4)}.ProductStatusBadge-module__product-status-badge{display:inline-flex;align-items:center;text-transform:capitalize}.Panel-module__panel{--panel-handle-size: .35rem;--panel-handle-bg-color: var(--border-color-2);--panel-handle-resizing-bg-color: var(--border-color);overflow:visible;bottom:0}.Panel-module__panel--bottom{left:0;right:0}.Panel-module__panel--right,.Panel-module__panel--left{height:100%;top:0}.Panel-module__panel--left{left:0}.Panel-module__panel--right{right:0}.Panel-module__panel--fixed{position:fixed}.Panel-module__panel--relative{position:relative;flex:0 0 auto}.Panel-module__handle{position:absolute;opacity:0;-webkit-user-select:none;-moz-user-select:none;user-select:none;z-index:2;flex-shrink:0}.Panel-module__handle--right,.Panel-module__handle--left{width:var(--panel-handle-size);cursor:ew-resize;top:0;bottom:0}.Panel-module__handle--right{left:calc(-.5 * var(--panel-handle-size))}.Panel-module__handle--left{right:calc(-.5 * var(--panel-handle-size))}.Panel-module__handle--bottom{height:var(--panel-handle-size);top:calc(-.5 * var(--panel-handle-size));cursor:ns-resize;left:0;right:0}.Panel-module__handle:hover{opacity:.5;background-color:var(--border-color-2)}.Panel-module__handle--resizing,.Panel-module__handle--resizing:hover{opacity:1;background-color:var(--panel-handle-resizing-bg-color)}.Tree-module__file-tree.tree{list-style:none;margin:0;padding:.125rem}.Tree-module__file-tree .tree-node,.Tree-module__file-tree .tree-node-group{list-style:none;margin:0;padding:0}.Tree-module__file-tree .tree-branch-wrapper,.Tree-module__file-tree .tree-node__leaf{outline:none}.Tree-module__file-tree .tree-node__branch{display:block}.Tree-module__file-tree .tree-node{cursor:pointer}.Tree-module__node{padding:0;margin-right:.25rem;border-radius:.25rem;color:var(--text-muted);-webkit-user-select:none;-moz-user-select:none;user-select:none;display:flex;align-items:center;margin-top:1px}.Tree-module__node.Tree-module__selected,.Tree-module__node:hover{background-color:var(--color-bg-2);color:var(--body-color)}.Tree-module__node .Tree-module__collapse-icon:hover{background-color:var(--color-bg-3);color:var(--body-color)}.Tree-module__node .Tree-module__collapse-icon{min-height:1.75rem;min-width:1rem;display:flex;align-items:center;justify-content:center;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.Tree-module__node .Tree-module__content{padding:.25rem;padding-right:0;min-height:1.75rem;align-items:center;border-radius:.25rem;flex-grow:1}.Tree-module__node .Tree-module__content-in-branch{padding-left:0;border-top-left-radius:0;border-bottom-left-radius:0}.Tree-module__node .Tree-module__collapse-icon,.Tree-module__node .Tree-module__collapse-icon>*{flex-shrink:0}.Tree-module__node a{color:var(--body-color);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.tree-branch-wrapper.focus-visible{box-shadow:none}.focus-visible>.Tree-module__node{outline:.125rem solid var(--primary-2)}.Tree-module__icon{flex-shrink:0;width:1rem;height:1rem}:where(.Card-module__card){--card-bg: var(--color-bg-1);--card-border-color: var(--border-color-2);--card-border-radius: var(--border-radius);--hover-box-shadow: 0 0 0 1px var(--primary) inset;position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:var(--card-bg);background-clip:border-box;border-width:1px;border-style:solid;border-color:var(--card-border-color);border-radius:var(--card-border-radius)!important}button.Card-module__card{cursor:pointer}button.Card-module__card:hover:not(:disabled){--card-border-color: var(--primary);box-shadow:var(--hover-box-shadow)}button.Card-module__card:focus{--card-border-color: transparent;box-shadow:var(--focus-box-shadow);outline:none}.CardBody-module__card-body{flex:1 1 auto;min-height:1px;padding:1rem;color:var(--body-color)}.CardHeader-module__card-header{padding:.5rem;background-color:var(--color-bg-2);border-bottom:1px solid var(--card-border-color)}.CardHeader-module__card-header:first-child{border-radius:calc(var(--border-radius) - 1px) calc(var(--border-radius) - 1px) 0 0}.CardSubtitle-module__card-subtitle{color:var(--text-muted);font-size:.875rem}.CardTitle-module__card-title{margin-bottom:.5rem;font-size:.875rem}.CardText-module__card-text:last-child{margin-bottom:0}.CardList-module__list-group{border-top:inherit;border-bottom:inherit}.CardList-module__list-group:first-child{border-top-width:0;border-top-right-radius:var(--border-radius);border-top-left-radius:var(--border-radius)}.CardList-module__list-group:last-child{border-bottom-width:0;border-bottom-right-radius:var(--border-radius);border-bottom-left-radius:var(--border-radius)}.CardFooter-module__card-footer{padding:.5rem;background-color:var(--color-bg-2)}.CardFooter-module__card-footer:last-child{border-radius:0 0 calc(var(--border-radius) - 1px) calc(var(--border-radius) - 1px)}[data-reach-dialog-overlay]{background:#00000054;position:fixed;inset:0;overflow:auto}[data-reach-dialog-content]{width:50vw;margin:10vh auto;background:#fff;padding:2rem;outline:none}@layer wildcard{[data-wildcard-root]{--modal-body-padding: 1.5rem}}[data-reach-dialog-overlay]{background-color:var(--modal-bg)}[data-reach-dialog-content]{background-color:var(--color-bg-1)}.Modal-module__modal{background-color:var(--color-bg-1);width:32rem;max-width:100vw;padding:var(--modal-body-padding);border-radius:var(--border-radius);border:1px solid var(--border-color)}.Modal-module__center,.Modal-module__top-third{transform:translate(-50%,-50%);position:absolute;top:50%;margin:0;left:50%}.Modal-module__top-third{top:33%}.Modal-module__full{width:100%}.FeedbackBadge-module__feedback-badge{display:flex;align-items:center}.FeedbackBadge-module__product-status-badge{text-transform:uppercase}.FeedbackBadge-module__anchor{margin-left:.5rem}.FeedbackPrompt-module__feedback-prompt{margin:0 .375rem;white-space:normal}.FeedbackPrompt-module__menu{width:20rem;padding:1rem}.FeedbackPrompt-module__close{display:flex;position:absolute;padding:0;top:1rem;right:1rem;border:none;background:transparent}.FeedbackPrompt-module__icon{height:1.125rem;width:1.125rem;color:var(--icon-color)}.FeedbackPrompt-module__from{color:var(--text-muted);border:solid 1px var(--input-border-color);border-bottom-width:0;border-radius:var(--border-radius);border-bottom-left-radius:0;border-bottom-right-radius:0;margin-bottom:0;padding:.25rem;-webkit-user-select:none;-moz-user-select:none;user-select:none}.FeedbackPrompt-module__textarea{resize:none;margin:.25rem 0}.FeedbackPrompt-module__textarea--with-from{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.FeedbackPrompt-module__success{white-space:normal;padding:.5rem;text-align:center}.FeedbackPrompt-module__success--tick{background-color:var(--success);color:var(--white);border-radius:50%;width:1.875rem;height:auto;padding:.125rem;margin-bottom:1rem}.FeedbackPrompt-module__button{margin-top:1rem}.Collapse-module__collapse:not(.Collapse-module__show){display:none}.Collapse-module__button{transform:none!important}.Combobox-module__combobox{width:100%}.Combobox-module__popover{font-size:inherit;border-radius:0;display:flex;justify-content:stretch}.Combobox-module__popover[data-reach-combobox-popover]{background-color:var(--dropdown-bg)}.Combobox-module__list{width:100%;overflow:auto}.Combobox-module__list [data-reach-combobox-option]:hover{color:var(--dropdown-link-hover-color)}.theme-dark .Combobox-module__list [data-reach-combobox-option]:hover{background-color:var(--color-bg-3)}.theme-light .Combobox-module__list [data-reach-combobox-option]:hover{background-color:var(--oc-gray-1)}.Combobox-module__list [data-highlighted],.Combobox-module__list [data-highlighted]:hover{background-color:var(--dropdown-link-active-bg)!important;color:var(--dropdown-link-active-color)}.Combobox-module__list [data-suggested-value]{font-weight:400}.Combobox-module__list [data-user-value]{font-weight:700}[data-reach-combobox-option].Combobox-module__item--disabled,.Combobox-module__item--disabled{color:var(--text-muted);cursor:not-allowed}.Combobox-module__group{margin-top:.25rem}.Combobox-module__group-heading{display:block;margin-bottom:.25rem;padding:var(--dropdown-item-padding);font-size:var(--dropdown-header-font-size);color:var(--dropdown-header-color);white-space:nowrap}.MultiCombobox-module__root{width:100%;display:flex;flex-wrap:wrap;gap:.25rem;padding:.25rem .375rem;margin:0;border:1px solid var(--input-border-color);border-radius:var(--border-radius);background:var(--input-bg)}.MultiCombobox-module__root.MultiCombobox-module__no-wrap{flex-wrap:nowrap;overflow:hidden}.MultiCombobox-module__root:focus-within{border-color:var(--input-focus-border-color);box-shadow:var(--input-focus-box-shadow)}.MultiCombobox-module__root:has(.is-valid){border-color:var(--success)}.theme-light .MultiCombobox-module__root:has(.is-valid):focus-within{box-shadow:0 0 0 2px var(--success-2)}.theme-dark .MultiCombobox-module__root:has(.is-valid):focus-within{box-shadow:0 0 0 2px var(--success-3)}.MultiCombobox-module__root:has(.is-invalid){border-color:var(--danger)}.theme-light .MultiCombobox-module__root:has(.is-invalid):focus-within{box-shadow:0 0 0 2px var(--danger-2)}.theme-dark .MultiCombobox-module__root:has(.is-invalid):focus-within{box-shadow:0 0 0 2px var(--danger-3)}.MultiCombobox-module__root:has(.form-control:disabled){color:var(--text-disabled);background-color:var(--input-disabled-bg)}.MultiCombobox-module__input-container{flex-grow:1;min-width:10rem}.MultiCombobox-module__input-container [data-loading-spinner]{position:absolute;right:calc(.25rem - 1px);top:calc(.35rem - 1px)}.MultiCombobox-module__input{border:none;outline:none;padding:0 0 0 .5rem;height:1.75rem;box-shadow:none!important}.MultiCombobox-module__pill{display:flex;border-radius:.25rem;flex-shrink:0}.theme-dark .MultiCombobox-module__pill{background-color:var(--color-bg-3)}.theme-light .MultiCombobox-module__pill{background-color:var(--oc-gray-1)}.MultiCombobox-module__pill-text{white-space:nowrap;padding:.25rem .5rem}.MultiCombobox-module__remove-pill{border:none;width:1.75rem;display:flex;align-items:center;justify-content:center;border-top-left-radius:0;border-bottom-left-radius:0}.theme-dark .MultiCombobox-module__remove-pill:hover,.theme-dark .MultiCombobox-module__remove-pill:focus{background-color:#2a2f3f!important}.theme-light .MultiCombobox-module__remove-pill:hover,.theme-light .MultiCombobox-module__remove-pill:focus{background-color:var(--color-bg-2)!important}.MultiCombobox-module__popover{display:flex;border-radius:0}.MultiCombobox-module__popover:empty{display:none}.MultiCombobox-module__zero-state{color:var(--text-muted);font-size:.75rem;padding:.5rem;display:block}.MultiCombobox-module__pill-trigger{display:flex;border-radius:.25rem;flex-shrink:0;cursor:pointer}.theme-dark .MultiCombobox-module__pill-trigger{background-color:var(--color-bg-3)}.theme-light .MultiCombobox-module__pill-trigger{background-color:var(--oc-gray-1)}.MultiCombobox-module__pill-trigger:hover{opacity:.8}.MultiCombobox-module__consolidated-popover{padding:.5rem;max-width:400px;overflow-y:auto}.MultiCombobox-module__consolidated-list{list-style:none;margin:0;padding:0;display:flex;flex-wrap:wrap;gap:.25rem}.MultiCombobox-module__consolidated-list .MultiCombobox-module__pill{flex-shrink:1;min-width:0;max-width:100%}.MultiCombobox-module__consolidated-list .MultiCombobox-module__pill-text{overflow:hidden;text-overflow:ellipsis}.ActionItem-module__action-item--loading{position:relative}.ActionItem-module__action-item--link{padding:0;display:inline;font-weight:400;border:0;vertical-align:baseline}.ActionItem-module__loader{position:absolute;top:50%;left:50%;transform:translate(-50%) translateY(-50%)}.HoverOverlay-module__hover-overlay,.HoverOverlay-module__card.HoverOverlay-module__hover-overlay{--hover-overlay-vertical-padding: .25rem;--hover-overlay-horizontal-padding: 1rem;--hover-overlay-contents-right-padding: 1rem;--hover-overlay-content-margin-top: .5rem;--hover-overlay-separator-color: var(--border-color);display:block;position:absolute;min-width:6rem;max-width:34rem;z-index:100;overflow:hidden;padding-bottom:var(--hover-overlay-vertical-padding)}.HoverOverlay-module__close-button{position:sticky;float:right;top:var(--hover-overlay-content-margin-top);margin-right:-1.25rem;margin-left:0;z-index:1}.HoverOverlay-module__close-button--loading{position:absolute;top:calc(var(--hover-overlay-content-margin-top) + var(--hover-overlay-vertical-padding));right:.75rem;margin-right:0}.HoverOverlay-module__badge{float:right;margin-top:var(--hover-overlay-content-margin-top);margin-left:.5rem;margin-right:.25rem;margin-bottom:.25rem;line-height:1rem;text-transform:uppercase}.HoverOverlay-module__badge-label{vertical-align:top}.HoverOverlay-module__badge :first-of-type{margin-right:0}.HoverOverlay-module__alert{display:flex;justify-content:space-between;align-items:center;margin-bottom:0}.HoverOverlay-module__alert .HoverOverlay-module__hover-overlay__content{display:inline}.HoverOverlay-module__alert p:last-child{margin-bottom:0}.HoverOverlay-module__alert-icon{margin-right:.25rem}.HoverOverlay-module__alert-dismiss{margin-left:.75rem;line-height:1}.HoverOverlay-module__actions{display:flex;align-items:center;padding-top:.75rem;padding-bottom:.5rem;padding-left:var(--hover-overlay-horizontal-padding);padding-right:var(--hover-overlay-horizontal-padding)}.HoverOverlay-module__actions-container{display:flex;justify-content:space-between;align-items:center;border-top:1px solid var(--hover-overlay-separator-color)}.HoverOverlay-module__actions-copy-link{margin-right:var(--hover-overlay-horizontal-padding);font-size:.75rem;color:var(--link-color);border-style:none;background:transparent;width:5.1rem}.HoverOverlay-module__actions-copy-link>span:last-child{padding-left:.2rem}.HoverOverlay-module__actions-inner{margin-right:auto;white-space:nowrap}.HoverOverlay-module__action{flex:0 1 auto;text-align:center}.HoverOverlay-module__overlay-logo{margin-left:1rem}.HoverOverlay-module__loader-row{display:flex;align-items:center;justify-content:center;padding:.5rem;border:none;border-radius:0}.HoverOverlay-module__hover-error{margin-top:var(--hover-overlay-content-margin-top);margin-bottom:.75rem}.HoverOverlay-module__hover-empty{display:block;margin-top:var(--hover-overlay-content-margin-top);margin-bottom:.5rem}.HoverOverlay-module__buttons{display:flex;align-items:center;margin-top:var(--hover-overlay-content-margin-top)}.HoverOverlay-module__buttons>*:first-child{margin-left:0}.HoverOverlayContents-module__hover-overlay__contents{--hover-overlay-content-margin-top: .5rem;--hover-overlay-contents-right-padding: 1rem;--hover-overlay-vertical-padding: .25rem;--hover-overlay-horizontal-padding: 1rem;--hover-overlay-separator-color: var(--border-color);overflow-x:hidden;overflow-y:auto;max-height:10rem;padding-top:var(--hover-overlay-vertical-padding);padding-bottom:0;padding-left:var(--hover-overlay-horizontal-padding);padding-right:var(--hover-overlay-contents-right-padding)}.HoverOverlayContents-module__hover-overlay__contents p{margin-top:.75rem;margin-bottom:.75rem}.HoverOverlayContents-module__hover-overlay__contents pre{margin-top:var(--hover-overlay-content-margin-top);margin-bottom:.5rem;line-height:1rem}.HoverOverlayContents-module__hover-overlay__contents code{font-size:.75rem}.HoverOverlayContents-module__hover-overlay__contents hr{margin-top:0;margin-bottom:0;margin-left:calc(var(--hover-overlay-horizontal-padding) * -1);margin-right:calc(var(--hover-overlay-contents-right-padding) * -1);height:1px;overflow:visible;border:none;background-color:var(--hover-overlay-separator-color)}.HoverOverlayContents-module__hover-overlay__contents--with-close-button{--hover-overlay-contents-right-padding: 2rem}.HoverOverlayContents-module__hover-overlay__contents--loading{padding:var(--hover-overlay-vertical-padding) var(--hover-overlay-horizontal-padding)}.HoverOverlayContents-module__hover-overlay__contents .HoverOverlayContents-module__hover-overlay__content{font-size:.75rem;line-height:1.3333333333;color:var(--hover-overlay-content-color)}.HoverOverlayContents-module__hover-overlay__contents .HoverOverlayContents-module__hover-overlay__content>*:first-child{margin-top:var(--hover-overlay-content-margin-top);margin-bottom:.5rem}.HoverOverlayContent-module__hover-overlay__content{--hover-overlay-content-margin-top: .5rem;display:contents;max-height:15rem;overflow-x:auto;word-wrap:normal}.HoverOverlayContent-module__hover-overlay__content pre,.HoverOverlayContent-module__hover-overlay__content code{padding:0;white-space:pre-wrap;overflow:visible}.HoverOverlayContent-module__hover-overlay__content td{padding-right:1rem}.HoverOverlayContent-module__hover-overlay__content tbody tr{border-top:1px solid var(--border-color)}.HoverOverlayContent-module__hover-overlay__content a{color:var(--link-color)}.HoverOverlayLogo-module__container{width:1.75rem;height:1.75rem;display:flex;justify-content:center;align-items:center}.HoverOverlayLogo-module__icon{width:1rem;height:1rem}.ActionsNavItems-module__action-item{max-width:10rem;text-overflow:ellipsis;overflow:hidden;font-size:.75rem;line-height:inherit;letter-spacing:inherit}.CodeViewToolbar-module__code-view-toolbar{margin:0;list-style:none}.CodeViewToolbar-module__item{display:inline-block}.codeHost-module__secondary-button-base,.codeHost-module__hover-overlay-action-item,.codeHost-module__badge{background-color:var(--secondary);color:var(--body-color);transition:background-color .15s}.codeHost-module__secondary-button-base:hover,.codeHost-module__hover-overlay-action-item:hover,.codeHost-module__badge:hover,.codeHost-module__secondary-button-base:focus,.codeHost-module__hover-overlay-action-item:focus,.codeHost-module__badge:focus{color:var(--body-color);background-color:var(--secondary-3);text-decoration:none}.codeHost-module__action-item-active-base,.codeHost-module__code-view-toolbar-action-item:hover,.codeHost-module__open-on-sourcegraph:hover,.codeHost-module__pressed{background:#091e4214;transition:background .1s}.codeHost-module__icon{height:1rem;width:1rem}.codeHost-module__open-on-sourcegraph{height:2rem;border-radius:3px;display:flex;justify-content:center;align-items:center;gap:.25rem;background:#091e420a;margin-left:4px;padding-left:8px;padding-right:8px;text-decoration:none!important;color:#42526e!important;font-weight:500;outline:none}.codeHost-module__code-view-toolbar{height:32px}.codeHost-module__hover-overlay{background-color:#fff;box-shadow:0 4px 16px -6px #24293633;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji"}.codeHost-module__list-item{height:100%}.codeHost-module__code-view-toolbar-action-item{height:100%;display:flex;align-items:center;margin:0 4px;padding:0 8px;border-radius:3px}.codeHost-module__commit-container{display:flex}.codeHost-module__content{color:var(--text-muted)!important}.codeHost-module__close{cursor:pointer;background:none;border:none;width:1rem;height:1rem;color:var(--icon-color);top:.25rem!important;padding:0}.codeHost-module__close svg{width:1rem;height:1rem}.codeHost-module__badge{line-height:1rem;display:inline-block;padding:0 .25rem;margin-top:-.25rem;font-size:.6875rem;font-weight:500;text-align:center;white-space:nowrap;border-radius:2px}.codeHost-module__badge:hover,.codeHost-module__badge:focus{color:var(--body-color);background-color:var(--secondary-3);text-decoration:none}.codeHost-module__hover-overlay-action-item{display:flex;justify-content:center;align-items:center;border-radius:3px;padding:6px 8px;font-size:min(.75rem,.9166666667em)}.codeHost-module__open-on-sourcegraph{margin-left:2px}.codeHost-module__sg-toolbar-mount,.codeHost-module__code-view-toolbar{display:contents}.codeHost-module__action-nav-item{margin-left:5px;margin-top:5px}.codeHost-module__action-nav-item-new-diff{margin:0 8px 0 2px}.codeHost-module__action-item-new-diff{background-color:#091e420a;color:#42526e;transition:background .1s ease-out 0s,box-shadow .15s cubic-bezier(.47,.03,.49,1.38) 0s;display:inline-flex;align-items:center;justify-content:center;border-radius:3px;height:100%;width:24px;padding:0 2px}.codeHost-module__action-item-new-diff:hover{background:#091e4214}.file-toolbar{display:flex;align-items:center;flex-wrap:wrap}.file-toolbar>.primary{flex:0 2 auto;order:1}.file-toolbar>.secondary{float:none;white-space:normal;line-height:initial;flex:1 1 auto;flex-wrap:wrap;order:2;display:flex;align-items:center;justify-content:flex-end}.file-toolbar>.secondary>.aui-buttons{display:contents}.file-toolbar>.secondary>.aui-buttons>.aui-button{margin-left:5px;margin-top:5px}.codeHost-module__hover-overlay{max-width:544px!important}.codeHost-module__hover-actions>span:not(:first-child){margin-left:.25rem!important}.codeHost-module__hover-action-item{margin:0!important;border-radius:0!important;border-bottom:none!important;border-top:none!important;border-right:none!important}.codeHost-module__hover-action-item:first-child{border-left:none!important}.codeHost-module__hover-action-item+.codeHost-module__hover-action-item{margin-left:.25rem!important}.codeHost-module__btn-icon{padding:0!important;background:transparent!important;border:none!important;height:1rem!important;line-height:1rem!important}.codeHost-module__btn-icon.close{margin-right:-1.25rem}.codeHost-module__hover-overlay{background-color:#fff;border:1px solid rgba(0,0,0,.125);box-shadow:0 1px 5px #0000004d}.codeHost-module__contents code{font-family:Roboto Mono,SF Mono,Lucida Console,Monaco,monospace;font-size:12px}.codeHost-module__close-button{border:none;background-color:transparent;cursor:pointer}.codeHost-module__close-button svg{height:14px}.codeHost-module__actions{background-color:#fafafa;justify-content:space-around;padding:4px}.codeHost-module__action{color:#2a66d9;padding:5px 4px;flex:none;text-decoration:none;text-transform:uppercase;font-family:Roboto,-apple-system,system-ui,Segoe UI,Helvetica,Arial,sans-serif}.codeHost-module__action:hover{background-color:#0000001f;border-radius:var(--border-radius)}.codeHost-module__action svg{height:12px;width:12px}@layer wildcard{[data-wildcard-root]{--viewport-sm: 576px;--viewport-md: 768px;--viewport-lg: 992px;--viewport-xl: 1200px}}:root{--body-bg: var(--color-canvas-default, var(--color-bg-canvas, var(--white)));--border-color: var(--color-border-default, var(--color-border-primary, var(--secondary)));--secondary: var(--color-btn-bg, var(--color-auto-gray-2), var(--gray-06))}[data-color-mode=dark]{--mark-bg: var(--mark-bg-dark)}@media (prefers-color-scheme: dark){[data-color-mode=auto]{--mark-bg: var(--mark-bg-dark)}}.codeHost-module__action-item{height:28px}.codeHost-module__icon{height:16px;width:16px}.codeHost-module__code-view-toolbar{margin-bottom:-4px;text-align:right}.js-blob-header .codeHost-module__code-view-toolbar{margin-right:4px}.codeHost-module__code-view-toolbar-item{margin-left:0!important;margin-bottom:4px}.codeHost-module__hover-overlay-badge{margin-top:-.33rem}.codeHost-module__hover-overlay-close-button{top:.33rem!important}.AppHeader .open-on-sourcegraph,.sourcegraph-github-file-code-view-toolbar-mount .open-on-sourcegraph{min-height:100%;display:flex;align-items:center}.pagehead-actions .open-on-sourcegraph .codeHost-module__icon{margin-bottom:-1px}.repository-content>.Box:not(.Box--condensed)>.Box-header:not(.Box-header--blue)>.text-mono{flex-shrink:0!important}.repository-content>.Box:not(.Box--condensed)>.Box-header:not(.Box-header--blue)>div:nth-child(2)>div:not(.sourcegraph-github-file-code-view-toolbar-mount){flex-shrink:0;display:flex;align-items:center}.diff-view .file-header{flex-wrap:wrap}.diff-view .file-header .file-info{flex:0 2 auto!important}.diff-view .file-header .file-actions{flex:1 1 auto;margin-left:1rem;display:flex;align-items:center;justify-content:flex-end}:root{--gray-10: #fafafa}.codeHost-module__btn-icon img{position:relative;top:2px;vertical-align:baseline;opacity:.6}.codeHost-module__btn-icon img:hover{opacity:1}.codeHost-module__hover-overlay{border-color:#e5e5e5;margin-bottom:0}.codeHost-module__hover-overlay pre,.codeHost-module__hover-overlay code{padding:0;border:none;background:none;color:inherit}.theme-dark .codeHost-module__hover-overlay{background-color:var(--body-bg, #1f2028);color:var(--body-color, #f2f4f8);border-color:var(--border-color, #2b3045)}.codeHost-module__hover-overlay .hljs{display:block;overflow-x:auto;padding:.5em;color:#333}.codeHost-module__hover-overlay .hljs-comment,.codeHost-module__hover-overlay .hljs-quote{color:#998}.codeHost-module__hover-overlay .hljs-keyword,.codeHost-module__hover-overlay .hljs-selector-tag,.codeHost-module__hover-overlay .hljs-subst{color:#a626a4;font-weight:600}.codeHost-module__hover-overlay .hljs-number,.codeHost-module__hover-overlay .hljs-literal,.codeHost-module__hover-overlay .hljs-variable,.codeHost-module__hover-overlay .hljs-template-variable,.codeHost-module__hover-overlay .hljs-tag .hljs-attr{color:#986801}.codeHost-module__hover-overlay .hljs-string,.codeHost-module__hover-overlay .hljs-doctag{color:#50a14f}.codeHost-module__hover-overlay .hljs-title,.codeHost-module__hover-overlay .hljs-section,.codeHost-module__hover-overlay .hljs-selector-id{color:#4078f2}.codeHost-module__hover-overlay .hljs-subst{font-weight:400}.codeHost-module__hover-overlay .hljs-type,.codeHost-module__hover-overlay .hljs-class .hljs-title{color:#c18401}.codeHost-module__hover-overlay .hljs-tag,.codeHost-module__hover-overlay .hljs-name,.codeHost-module__hover-overlay .hljs-attribute{color:#e45649;font-weight:400}.codeHost-module__hover-overlay .hljs-regexp,.codeHost-module__hover-overlay .hljs-link{color:#009926}.codeHost-module__hover-overlay .hljs-symbol,.codeHost-module__hover-overlay .hljs-bullet{color:#990073}.codeHost-module__hover-overlay .hljs-built_in,.codeHost-module__hover-overlay .hljs-builtin-name{color:#0086b3}.codeHost-module__hover-overlay .hljs-meta{color:#999;font-weight:700}.codeHost-module__hover-overlay .hljs-deletion{background:#fdd}.codeHost-module__hover-overlay .hljs-addition{background:#dfd}.codeHost-module__hover-overlay .hljs-emphasis{font-style:italic}.codeHost-module__hover-overlay .hljs-strong{font-weight:700}.theme-dark .codeHost-module__hover-overlay .hljs{color:#c9d1d9}.theme-dark .codeHost-module__hover-overlay .hljs-comment,.theme-dark .codeHost-module__hover-overlay .hljs-quote{color:#8b949e}.theme-dark .codeHost-module__hover-overlay .hljs-keyword,.theme-dark .codeHost-module__hover-overlay .hljs-selector-tag,.theme-dark .codeHost-module__hover-overlay .hljs-subst{color:#ff7b72}.theme-dark .codeHost-module__hover-overlay .hljs-number,.theme-dark .codeHost-module__hover-overlay .hljs-literal,.theme-dark .codeHost-module__hover-overlay .hljs-variable,.theme-dark .codeHost-module__hover-overlay .hljs-template-variable,.theme-dark .codeHost-module__hover-overlay .hljs-tag .hljs-attr{color:#79c0ff}.theme-dark .codeHost-module__hover-overlay .hljs-string,.theme-dark .codeHost-module__hover-overlay .hljs-doctag{color:#a5d6ff}.theme-dark .codeHost-module__hover-overlay .hljs-title,.theme-dark .codeHost-module__hover-overlay .hljs-section,.theme-dark .codeHost-module__hover-overlay .hljs-selector-id{color:#d2a8ff}.theme-dark .codeHost-module__hover-overlay .hljs-type,.theme-dark .codeHost-module__hover-overlay .hljs-class .hljs-title{color:#ffa657}.theme-dark .codeHost-module__hover-overlay .hljs-tag,.theme-dark .codeHost-module__hover-overlay .hljs-name,.theme-dark .codeHost-module__hover-overlay .hljs-attribute,.theme-dark .codeHost-module__hover-overlay .hljs-regexp,.theme-dark .codeHost-module__hover-overlay .hljs-link{color:#7ee787}.theme-dark .codeHost-module__hover-overlay .hljs-symbol,.theme-dark .codeHost-module__hover-overlay .hljs-bullet,.theme-dark .codeHost-module__hover-overlay .hljs-built_in,.theme-dark .codeHost-module__hover-overlay .hljs-builtin-name{color:#ffa657}.theme-dark .codeHost-module__hover-overlay .hljs-meta{color:#8b949e}.theme-dark .codeHost-module__hover-overlay .hljs-deletion{background:#3d1f1f}.theme-dark .codeHost-module__hover-overlay .hljs-addition{background:#1f3d1f}.codeHost-module__hover-overlay{margin:0}.codeHost-module__btn-icon{background:transparent!important;border:none!important;padding:0!important}.codeHost-module__btn-icon:hover{opacity:.7}.codeHost-module__icon{height:14px;width:14px}.codeHost-module__action-item[data-action-item-pressed=true]{box-shadow:inset 0 .15em .3em #cad2e2}.codeHost-module__hover-overlay-action-item{border-radius:0!important;border-bottom:none!important;border-top:none!important;border-right:none!important}.codeHost-module__hover-overlay-action-item:first-child{border-left:none!important}.codeHost-module__hover-overlay-action-item-icon{vertical-align:middle}.ViewOnSourcegraphButton-module__icon--muted{filter:grayscale(100%)}.codeHost-module__hover-overlay{isolation:isolate;z-index:2000!important}
3804
2
  /*# sourceMappingURL=contentPage.main.bundle.css.map */