@sourcegraph/code-host-integration 0.0.91 → 0.0.92

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