@ansiversa/components 0.0.73 → 0.0.74
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.
- package/package.json +1 -1
- package/src/styles/global.css +96 -0
package/package.json
CHANGED
package/src/styles/global.css
CHANGED
|
@@ -274,6 +274,102 @@
|
|
|
274
274
|
gap: 0.5rem;
|
|
275
275
|
}
|
|
276
276
|
|
|
277
|
+
/* Public list page (generic) ----------------------------------------- */
|
|
278
|
+
|
|
279
|
+
.av-public-titlewrap {
|
|
280
|
+
display: flex;
|
|
281
|
+
align-items: baseline;
|
|
282
|
+
gap: 0.5rem;
|
|
283
|
+
flex-wrap: wrap;
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
.av-public-count-inline {
|
|
287
|
+
color: var(--av-text-muted);
|
|
288
|
+
font-size: 0.875rem;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
.av-public-toolbar-left {
|
|
292
|
+
display: grid;
|
|
293
|
+
gap: 0.5rem;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
.av-public-toolbar-top {
|
|
297
|
+
display: flex;
|
|
298
|
+
align-items: center;
|
|
299
|
+
justify-content: space-between;
|
|
300
|
+
gap: 0.75rem;
|
|
301
|
+
width: 100%;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
.av-public-filters {
|
|
305
|
+
display: grid;
|
|
306
|
+
gap: 0.5rem;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
/* tighten toolbar spacing */
|
|
310
|
+
.av-faq-public__section .av-table-toolbar__row {
|
|
311
|
+
gap: 0;
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
/* hide default toolbar action slot (actions live in title/top area) */
|
|
315
|
+
.av-faq-public__section .av-table-toolbar__actions {
|
|
316
|
+
display: none;
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
/* selects grid on mobile */
|
|
320
|
+
.av-public-filter-selects {
|
|
321
|
+
display: grid;
|
|
322
|
+
grid-template-columns: 1fr 1fr;
|
|
323
|
+
gap: 0.5rem;
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
.av-public-filter-selects .av-public-select-lg {
|
|
327
|
+
grid-column: 1 / -1;
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
@media (min-width: 1024px) {
|
|
331
|
+
.av-public-filters {
|
|
332
|
+
display: flex;
|
|
333
|
+
flex-wrap: nowrap;
|
|
334
|
+
align-items: flex-end;
|
|
335
|
+
gap: 0.5rem;
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
.av-faq-public__section .av-table-toolbar__row {
|
|
339
|
+
gap: 0;
|
|
340
|
+
align-items: flex-end;
|
|
341
|
+
flex-wrap: nowrap;
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
.av-faq-public__section .av-table-toolbar__actions {
|
|
345
|
+
display: none;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
.av-public-filters > .av-public-filter-search {
|
|
349
|
+
flex: 2 1 0;
|
|
350
|
+
width: auto;
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
.av-public-filter-selects {
|
|
354
|
+
display: flex;
|
|
355
|
+
flex: 1 1 640px;
|
|
356
|
+
gap: 0.5rem;
|
|
357
|
+
align-items: flex-end;
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
.av-public-select-lg {
|
|
361
|
+
flex: 2 1 380px;
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
.av-public-select-md {
|
|
365
|
+
flex: 1 1 220px;
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
.av-public-select-sm {
|
|
369
|
+
flex: 0 1 170px;
|
|
370
|
+
}
|
|
371
|
+
}
|
|
372
|
+
|
|
277
373
|
@media (max-width: 640px) {
|
|
278
374
|
.av-faq-summary {
|
|
279
375
|
flex-wrap: wrap;
|