@sourcegraph/code-host-integration 0.0.91 → 0.0.93

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