lightning-pose-app 1.8.1a1__py3-none-any.whl → 1.8.1a3__py3-none-any.whl
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.
- {lightning_pose_app-1.8.1a1.dist-info → lightning_pose_app-1.8.1a3.dist-info}/METADATA +1 -1
- lightning_pose_app-1.8.1a3.dist-info/RECORD +21 -0
- litpose_app/main.py +300 -290
- litpose_app/ngdist/ng_app/3rdpartylicenses.txt +11 -11
- litpose_app/ngdist/ng_app/app.component-UHVEDPZR.css.map +7 -0
- litpose_app/ngdist/ng_app/index.html +11 -2
- litpose_app/ngdist/ng_app/{main-QMBNNDJG.js → main-LJHMLKBL.js} +1008 -634
- litpose_app/ngdist/ng_app/main-LJHMLKBL.js.map +1 -0
- litpose_app/ngdist/ng_app/project-settings.component-5IRK7U7U.css.map +7 -0
- litpose_app/ngdist/ng_app/{styles-JT3DWFJR.css → styles-4V6RXJMC.css} +402 -25
- litpose_app/ngdist/ng_app/styles-4V6RXJMC.css.map +7 -0
- litpose_app/ngdist/ng_app/video-tile.component-XSYKMARQ.css.map +7 -0
- litpose_app/ngdist/ng_app/viewer-page.component-MRTIUFL2.css.map +7 -0
- litpose_app/run_ffprobe.py +132 -132
- litpose_app/super_rglob.py +48 -36
- lightning_pose_app-1.8.1a1.dist-info/RECORD +0 -17
- litpose_app/ngdist/ng_app/main-QMBNNDJG.js.map +0 -1
- litpose_app/ngdist/ng_app/styles-JT3DWFJR.css.map +0 -7
- {lightning_pose_app-1.8.1a1.dist-info → lightning_pose_app-1.8.1a3.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["project-settings.component.html"],
|
|
4
|
+
"sourcesContent": ["\n ::placeholder {\n /** bring back the default style from daisy. dont know why it's getting overridden. */\n color: color-mix(in oklch, currentColor 50%, #0000) !important;\n }\n"],
|
|
5
|
+
"mappings": ";AACE;AAEE,SAAA,UAAA,GAAA,KAAA,EAAA,aAAA,GAAA,EAAA;AACF;",
|
|
6
|
+
"names": []
|
|
7
|
+
}
|
|
@@ -31,10 +31,17 @@
|
|
|
31
31
|
--color-black: #000;
|
|
32
32
|
--spacing: 0.25rem;
|
|
33
33
|
--container-xs: 20rem;
|
|
34
|
+
--container-lg: 32rem;
|
|
34
35
|
--text-sm: 0.875rem;
|
|
35
36
|
--text-sm--line-height: calc(1.25 / 0.875);
|
|
36
37
|
--text-base: 1rem;
|
|
37
38
|
--text-base--line-height: calc(1.5 / 1);
|
|
39
|
+
--text-lg: 1.125rem;
|
|
40
|
+
--text-lg--line-height: calc(1.75 / 1.125);
|
|
41
|
+
--text-xl: 1.25rem;
|
|
42
|
+
--text-xl--line-height: calc(1.75 / 1.25);
|
|
43
|
+
--font-weight-semibold: 600;
|
|
44
|
+
--font-weight-bold: 700;
|
|
38
45
|
--radius-sm: 0.25rem;
|
|
39
46
|
--radius-md: 0.375rem;
|
|
40
47
|
--default-font-family: var(--font-sans);
|
|
@@ -230,6 +237,56 @@
|
|
|
230
237
|
}
|
|
231
238
|
}
|
|
232
239
|
@layer utilities {
|
|
240
|
+
.modal {
|
|
241
|
+
pointer-events: none;
|
|
242
|
+
visibility: hidden;
|
|
243
|
+
position: fixed;
|
|
244
|
+
inset: calc(0.25rem * 0);
|
|
245
|
+
margin: calc(0.25rem * 0);
|
|
246
|
+
display: grid;
|
|
247
|
+
height: 100%;
|
|
248
|
+
max-height: none;
|
|
249
|
+
width: 100%;
|
|
250
|
+
max-width: none;
|
|
251
|
+
align-items: center;
|
|
252
|
+
justify-items: center;
|
|
253
|
+
background-color: transparent;
|
|
254
|
+
padding: calc(0.25rem * 0);
|
|
255
|
+
color: inherit;
|
|
256
|
+
overflow-x: hidden;
|
|
257
|
+
transition:
|
|
258
|
+
translate 0.3s ease-out,
|
|
259
|
+
visibility 0.3s allow-discrete,
|
|
260
|
+
background-color 0.3s ease-out,
|
|
261
|
+
opacity 0.1s ease-out;
|
|
262
|
+
overflow-y: hidden;
|
|
263
|
+
overscroll-behavior: contain;
|
|
264
|
+
z-index: 999;
|
|
265
|
+
}
|
|
266
|
+
.modal::backdrop {
|
|
267
|
+
display: none;
|
|
268
|
+
}
|
|
269
|
+
.modal.modal-open,
|
|
270
|
+
.modal[open],
|
|
271
|
+
.modal:target {
|
|
272
|
+
pointer-events: auto;
|
|
273
|
+
visibility: visible;
|
|
274
|
+
opacity: 100%;
|
|
275
|
+
background-color: oklch(0% 0 0/ 0.4);
|
|
276
|
+
}
|
|
277
|
+
:is(.modal.modal-open, .modal[open], .modal:target) .modal-box {
|
|
278
|
+
translate: 0 0;
|
|
279
|
+
scale: 1;
|
|
280
|
+
opacity: 1;
|
|
281
|
+
}
|
|
282
|
+
@starting-style {
|
|
283
|
+
.modal.modal-open,
|
|
284
|
+
.modal[open],
|
|
285
|
+
.modal:target {
|
|
286
|
+
visibility: hidden;
|
|
287
|
+
opacity: 0%;
|
|
288
|
+
}
|
|
289
|
+
}
|
|
233
290
|
.tooltip {
|
|
234
291
|
position: relative;
|
|
235
292
|
display: inline-block;
|
|
@@ -1115,6 +1172,25 @@
|
|
|
1115
1172
|
.select:has(> select[disabled]) > select[disabled] {
|
|
1116
1173
|
cursor: not-allowed;
|
|
1117
1174
|
}
|
|
1175
|
+
.menu-horizontal {
|
|
1176
|
+
display: inline-flex;
|
|
1177
|
+
flex-direction: row;
|
|
1178
|
+
}
|
|
1179
|
+
.menu-horizontal > li:not(.menu-title) > details > ul {
|
|
1180
|
+
position: absolute;
|
|
1181
|
+
margin-inline-start: calc(0.25rem * 0);
|
|
1182
|
+
margin-top: calc(0.25rem * 4);
|
|
1183
|
+
padding-block: calc(0.25rem * 2);
|
|
1184
|
+
padding-inline-end: calc(0.25rem * 2);
|
|
1185
|
+
}
|
|
1186
|
+
.menu-horizontal > li > details > ul:before {
|
|
1187
|
+
content: none;
|
|
1188
|
+
}
|
|
1189
|
+
:where(.menu-horizontal > li:not(.menu-title) > details > ul) {
|
|
1190
|
+
border-radius: var(--radius-box);
|
|
1191
|
+
background-color: var(--color-base-100);
|
|
1192
|
+
box-shadow: 0 1px 3px 0 oklch(0% 0 0/0.1), 0 1px 2px -1px oklch(0% 0 0/0.1);
|
|
1193
|
+
}
|
|
1118
1194
|
.checkbox {
|
|
1119
1195
|
border: var(--border) solid var(--input-color, var(--color-base-content));
|
|
1120
1196
|
position: relative;
|
|
@@ -1264,9 +1340,6 @@
|
|
|
1264
1340
|
.absolute {
|
|
1265
1341
|
position: absolute;
|
|
1266
1342
|
}
|
|
1267
|
-
.fixed {
|
|
1268
|
-
position: fixed;
|
|
1269
|
-
}
|
|
1270
1343
|
.relative {
|
|
1271
1344
|
position: relative;
|
|
1272
1345
|
}
|
|
@@ -1302,14 +1375,91 @@
|
|
|
1302
1375
|
.-top-1 {
|
|
1303
1376
|
top: calc(var(--spacing) * -1);
|
|
1304
1377
|
}
|
|
1305
|
-
.top-0 {
|
|
1306
|
-
top: calc(var(--spacing) * 0);
|
|
1307
|
-
}
|
|
1308
1378
|
.-left-1 {
|
|
1309
1379
|
left: calc(var(--spacing) * -1);
|
|
1310
1380
|
}
|
|
1311
|
-
.
|
|
1312
|
-
|
|
1381
|
+
.textarea {
|
|
1382
|
+
border: var(--border) solid #0000;
|
|
1383
|
+
min-height: calc(0.25rem * 20);
|
|
1384
|
+
flex-shrink: 1;
|
|
1385
|
+
appearance: none;
|
|
1386
|
+
border-radius: var(--radius-field);
|
|
1387
|
+
background-color: var(--color-base-100);
|
|
1388
|
+
padding-block: calc(0.25rem * 2);
|
|
1389
|
+
vertical-align: middle;
|
|
1390
|
+
width: clamp(3rem, 20rem, 100%);
|
|
1391
|
+
padding-inline-start: 0.75rem;
|
|
1392
|
+
padding-inline-end: 0.75rem;
|
|
1393
|
+
font-size: 0.875rem;
|
|
1394
|
+
border-color: var(--input-color);
|
|
1395
|
+
box-shadow: 0 1px var(--input-color) inset, 0 -1px oklch(100% 0 0 / calc(var(--depth) * 0.1)) inset;
|
|
1396
|
+
--input-color: var(--color-base-content);
|
|
1397
|
+
}
|
|
1398
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1399
|
+
.textarea {
|
|
1400
|
+
box-shadow: 0 1px color-mix(in oklab, var(--input-color) calc(var(--depth) * 10%), #0000) inset, 0 -1px oklch(100% 0 0 / calc(var(--depth) * 0.1)) inset;
|
|
1401
|
+
}
|
|
1402
|
+
}
|
|
1403
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1404
|
+
.textarea {
|
|
1405
|
+
--input-color: color-mix(in oklab, var(--color-base-content) 20%, #0000);
|
|
1406
|
+
}
|
|
1407
|
+
}
|
|
1408
|
+
.textarea textarea {
|
|
1409
|
+
appearance: none;
|
|
1410
|
+
background-color: transparent;
|
|
1411
|
+
border: none;
|
|
1412
|
+
}
|
|
1413
|
+
.textarea textarea:focus,
|
|
1414
|
+
.textarea textarea:focus-within {
|
|
1415
|
+
--tw-outline-style: none;
|
|
1416
|
+
outline-style: none;
|
|
1417
|
+
}
|
|
1418
|
+
@media (forced-colors: active) {
|
|
1419
|
+
.textarea textarea:focus,
|
|
1420
|
+
.textarea textarea:focus-within {
|
|
1421
|
+
outline: 2px solid transparent;
|
|
1422
|
+
outline-offset: 2px;
|
|
1423
|
+
}
|
|
1424
|
+
}
|
|
1425
|
+
.textarea:focus,
|
|
1426
|
+
.textarea:focus-within {
|
|
1427
|
+
--input-color: var(--color-base-content);
|
|
1428
|
+
box-shadow: 0 1px var(--input-color);
|
|
1429
|
+
outline: 2px solid var(--input-color);
|
|
1430
|
+
outline-offset: 2px;
|
|
1431
|
+
isolation: isolate;
|
|
1432
|
+
}
|
|
1433
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1434
|
+
.textarea:focus,
|
|
1435
|
+
.textarea:focus-within {
|
|
1436
|
+
box-shadow: 0 1px color-mix(in oklab, var(--input-color) calc(var(--depth) * 10%), #0000);
|
|
1437
|
+
}
|
|
1438
|
+
}
|
|
1439
|
+
.textarea:has(> textarea[disabled]),
|
|
1440
|
+
.textarea:is(:disabled, [disabled]) {
|
|
1441
|
+
cursor: not-allowed;
|
|
1442
|
+
border-color: var(--color-base-200);
|
|
1443
|
+
background-color: var(--color-base-200);
|
|
1444
|
+
color: var(--color-base-content);
|
|
1445
|
+
box-shadow: none;
|
|
1446
|
+
}
|
|
1447
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1448
|
+
.textarea:has(> textarea[disabled]),
|
|
1449
|
+
.textarea:is(:disabled, [disabled]) {
|
|
1450
|
+
color: color-mix(in oklab, var(--color-base-content) 40%, transparent);
|
|
1451
|
+
}
|
|
1452
|
+
}
|
|
1453
|
+
:is(.textarea:has(> textarea[disabled]), .textarea:is(:disabled, [disabled]))::placeholder {
|
|
1454
|
+
color: var(--color-base-content);
|
|
1455
|
+
}
|
|
1456
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1457
|
+
{
|
|
1458
|
+
color: color-mix(in oklab, var(--color-base-content) 20%, transparent);
|
|
1459
|
+
}
|
|
1460
|
+
}
|
|
1461
|
+
.textarea:has(> textarea[disabled]) > textarea[disabled] {
|
|
1462
|
+
cursor: not-allowed;
|
|
1313
1463
|
}
|
|
1314
1464
|
.stack {
|
|
1315
1465
|
display: inline-grid;
|
|
@@ -1380,15 +1530,118 @@
|
|
|
1380
1530
|
grid-column: 1 / 4;
|
|
1381
1531
|
grid-row: 1 / 6;
|
|
1382
1532
|
}
|
|
1533
|
+
.modal-backdrop {
|
|
1534
|
+
grid-column-start: 1;
|
|
1535
|
+
grid-row-start: 1;
|
|
1536
|
+
display: grid;
|
|
1537
|
+
align-self: stretch;
|
|
1538
|
+
justify-self: stretch;
|
|
1539
|
+
color: transparent;
|
|
1540
|
+
z-index: -1;
|
|
1541
|
+
}
|
|
1542
|
+
.modal-backdrop button {
|
|
1543
|
+
cursor: pointer;
|
|
1544
|
+
}
|
|
1383
1545
|
.z-30 {
|
|
1384
1546
|
z-index: 30;
|
|
1385
1547
|
}
|
|
1386
1548
|
.z-40 {
|
|
1387
1549
|
z-index: 40;
|
|
1388
1550
|
}
|
|
1551
|
+
.modal-box {
|
|
1552
|
+
grid-column-start: 1;
|
|
1553
|
+
grid-row-start: 1;
|
|
1554
|
+
max-height: 100vh;
|
|
1555
|
+
width: calc(11/12 * 100%);
|
|
1556
|
+
max-width: 32rem;
|
|
1557
|
+
background-color: var(--color-base-100);
|
|
1558
|
+
padding: calc(0.25rem * 6);
|
|
1559
|
+
transition:
|
|
1560
|
+
translate 0.3s ease-out,
|
|
1561
|
+
scale 0.3s ease-out,
|
|
1562
|
+
opacity 0.2s ease-out 0.05s,
|
|
1563
|
+
box-shadow 0.3s ease-out;
|
|
1564
|
+
border-top-left-radius: var(--modal-tl, var(--radius-box));
|
|
1565
|
+
border-top-right-radius: var(--modal-tr, var(--radius-box));
|
|
1566
|
+
border-bottom-left-radius: var(--modal-bl, var(--radius-box));
|
|
1567
|
+
border-bottom-right-radius: var(--modal-br, var(--radius-box));
|
|
1568
|
+
scale: 95%;
|
|
1569
|
+
opacity: 0;
|
|
1570
|
+
box-shadow: oklch(0% 0 0/ 0.25) 0px 25px 50px -12px;
|
|
1571
|
+
overflow-y: auto;
|
|
1572
|
+
overscroll-behavior: contain;
|
|
1573
|
+
}
|
|
1389
1574
|
.m-4 {
|
|
1390
1575
|
margin: calc(var(--spacing) * 4);
|
|
1391
1576
|
}
|
|
1577
|
+
.my-4 {
|
|
1578
|
+
margin-block: calc(var(--spacing) * 4);
|
|
1579
|
+
}
|
|
1580
|
+
.my-6 {
|
|
1581
|
+
margin-block: calc(var(--spacing) * 6);
|
|
1582
|
+
}
|
|
1583
|
+
.label {
|
|
1584
|
+
display: inline-flex;
|
|
1585
|
+
align-items: center;
|
|
1586
|
+
gap: calc(0.25rem * 1.5);
|
|
1587
|
+
white-space: nowrap;
|
|
1588
|
+
color: currentColor;
|
|
1589
|
+
}
|
|
1590
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1591
|
+
.label {
|
|
1592
|
+
color: color-mix(in oklab, currentColor 60%, transparent);
|
|
1593
|
+
}
|
|
1594
|
+
}
|
|
1595
|
+
.label:has(input) {
|
|
1596
|
+
cursor: pointer;
|
|
1597
|
+
}
|
|
1598
|
+
.label:is(.input > *, .select > *) {
|
|
1599
|
+
display: flex;
|
|
1600
|
+
height: calc(100% - 0.5rem);
|
|
1601
|
+
align-items: center;
|
|
1602
|
+
padding-inline: calc(0.25rem * 3);
|
|
1603
|
+
white-space: nowrap;
|
|
1604
|
+
font-size: inherit;
|
|
1605
|
+
}
|
|
1606
|
+
.label:is(.input > *, .select > *):first-child {
|
|
1607
|
+
margin-inline-start: calc(0.25rem * -3);
|
|
1608
|
+
margin-inline-end: calc(0.25rem * 3);
|
|
1609
|
+
border-inline-end: var(--border) solid currentColor;
|
|
1610
|
+
}
|
|
1611
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1612
|
+
.label:is(.input > *, .select > *):first-child {
|
|
1613
|
+
border-inline-end: var(--border) solid color-mix(in oklab, currentColor 10%, #0000);
|
|
1614
|
+
}
|
|
1615
|
+
}
|
|
1616
|
+
.label:is(.input > *, .select > *):last-child {
|
|
1617
|
+
margin-inline-start: calc(0.25rem * 3);
|
|
1618
|
+
margin-inline-end: calc(0.25rem * -3);
|
|
1619
|
+
border-inline-start: var(--border) solid currentColor;
|
|
1620
|
+
}
|
|
1621
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1622
|
+
.label:is(.input > *, .select > *):last-child {
|
|
1623
|
+
border-inline-start: var(--border) solid color-mix(in oklab, currentColor 10%, #0000);
|
|
1624
|
+
}
|
|
1625
|
+
}
|
|
1626
|
+
.modal-action {
|
|
1627
|
+
margin-top: calc(0.25rem * 6);
|
|
1628
|
+
display: flex;
|
|
1629
|
+
justify-content: flex-end;
|
|
1630
|
+
gap: calc(0.25rem * 2);
|
|
1631
|
+
}
|
|
1632
|
+
.mt-8 {
|
|
1633
|
+
margin-top: calc(var(--spacing) * 8);
|
|
1634
|
+
}
|
|
1635
|
+
.fieldset-legend {
|
|
1636
|
+
margin-bottom: calc(0.25rem * -1);
|
|
1637
|
+
display: flex;
|
|
1638
|
+
align-items: center;
|
|
1639
|
+
justify-content: space-between;
|
|
1640
|
+
gap: calc(0.25rem * 2);
|
|
1641
|
+
padding-block: calc(0.25rem * 2);
|
|
1642
|
+
color: var(--color-base-content);
|
|
1643
|
+
font-weight: 600;
|
|
1644
|
+
}
|
|
1392
1645
|
.mb-1 {
|
|
1393
1646
|
margin-bottom: calc(var(--spacing) * 1);
|
|
1394
1647
|
}
|
|
@@ -1430,12 +1683,53 @@
|
|
|
1430
1683
|
box-shadow: 0 2px 3px -1px color-mix(in oklab, currentColor calc(var(--depth) * 100%), #0000);
|
|
1431
1684
|
}
|
|
1432
1685
|
}
|
|
1686
|
+
.navbar {
|
|
1687
|
+
display: flex;
|
|
1688
|
+
width: 100%;
|
|
1689
|
+
align-items: center;
|
|
1690
|
+
padding: 0.5rem;
|
|
1691
|
+
min-height: 4rem;
|
|
1692
|
+
}
|
|
1693
|
+
.navbar-end {
|
|
1694
|
+
display: inline-flex;
|
|
1695
|
+
align-items: center;
|
|
1696
|
+
width: 50%;
|
|
1697
|
+
justify-content: flex-end;
|
|
1698
|
+
}
|
|
1699
|
+
.navbar-start {
|
|
1700
|
+
display: inline-flex;
|
|
1701
|
+
align-items: center;
|
|
1702
|
+
width: 50%;
|
|
1703
|
+
justify-content: flex-start;
|
|
1704
|
+
}
|
|
1705
|
+
.navbar-center {
|
|
1706
|
+
display: inline-flex;
|
|
1707
|
+
align-items: center;
|
|
1708
|
+
flex-shrink: 0;
|
|
1709
|
+
}
|
|
1710
|
+
.fieldset {
|
|
1711
|
+
display: grid;
|
|
1712
|
+
gap: calc(0.25rem * 1.5);
|
|
1713
|
+
padding-block: calc(0.25rem * 1);
|
|
1714
|
+
font-size: 0.75rem;
|
|
1715
|
+
grid-template-columns: 1fr;
|
|
1716
|
+
grid-auto-rows: max-content;
|
|
1717
|
+
}
|
|
1433
1718
|
.block {
|
|
1434
1719
|
display: block;
|
|
1435
1720
|
}
|
|
1436
1721
|
.flex {
|
|
1437
1722
|
display: flex;
|
|
1438
1723
|
}
|
|
1724
|
+
.inline {
|
|
1725
|
+
display: inline;
|
|
1726
|
+
}
|
|
1727
|
+
.btn-circle {
|
|
1728
|
+
border-radius: calc(infinity * 1px);
|
|
1729
|
+
padding-inline: calc(0.25rem * 0);
|
|
1730
|
+
width: var(--size);
|
|
1731
|
+
height: var(--size);
|
|
1732
|
+
}
|
|
1439
1733
|
.h-2 {
|
|
1440
1734
|
height: calc(var(--spacing) * 2);
|
|
1441
1735
|
}
|
|
@@ -1448,12 +1742,12 @@
|
|
|
1448
1742
|
.h-full {
|
|
1449
1743
|
height: 100%;
|
|
1450
1744
|
}
|
|
1451
|
-
.h-screen {
|
|
1452
|
-
height: 100vh;
|
|
1453
|
-
}
|
|
1454
1745
|
.max-h-60 {
|
|
1455
1746
|
max-height: calc(var(--spacing) * 60);
|
|
1456
1747
|
}
|
|
1748
|
+
.min-h-0 {
|
|
1749
|
+
min-height: calc(var(--spacing) * 0);
|
|
1750
|
+
}
|
|
1457
1751
|
.w-2 {
|
|
1458
1752
|
width: calc(var(--spacing) * 2);
|
|
1459
1753
|
}
|
|
@@ -1469,14 +1763,20 @@
|
|
|
1469
1763
|
.w-60 {
|
|
1470
1764
|
width: calc(var(--spacing) * 60);
|
|
1471
1765
|
}
|
|
1766
|
+
.w-auto {
|
|
1767
|
+
width: auto;
|
|
1768
|
+
}
|
|
1472
1769
|
.w-fit {
|
|
1473
1770
|
width: fit-content;
|
|
1474
1771
|
}
|
|
1475
1772
|
.w-full {
|
|
1476
1773
|
width: 100%;
|
|
1477
1774
|
}
|
|
1478
|
-
.w-
|
|
1479
|
-
width:
|
|
1775
|
+
.w-lg {
|
|
1776
|
+
width: var(--container-lg);
|
|
1777
|
+
}
|
|
1778
|
+
.shrink {
|
|
1779
|
+
flex-shrink: 1;
|
|
1480
1780
|
}
|
|
1481
1781
|
.shrink-0 {
|
|
1482
1782
|
flex-shrink: 0;
|
|
@@ -1523,12 +1823,18 @@
|
|
|
1523
1823
|
.items-center {
|
|
1524
1824
|
align-items: center;
|
|
1525
1825
|
}
|
|
1826
|
+
.items-start {
|
|
1827
|
+
align-items: flex-start;
|
|
1828
|
+
}
|
|
1526
1829
|
.items-stretch {
|
|
1527
1830
|
align-items: stretch;
|
|
1528
1831
|
}
|
|
1529
1832
|
.justify-between {
|
|
1530
1833
|
justify-content: space-between;
|
|
1531
1834
|
}
|
|
1835
|
+
.justify-center {
|
|
1836
|
+
justify-content: center;
|
|
1837
|
+
}
|
|
1532
1838
|
.justify-start {
|
|
1533
1839
|
justify-content: flex-start;
|
|
1534
1840
|
}
|
|
@@ -1567,6 +1873,10 @@
|
|
|
1567
1873
|
.rounded-sm {
|
|
1568
1874
|
border-radius: var(--radius-sm);
|
|
1569
1875
|
}
|
|
1876
|
+
.\!border-none {
|
|
1877
|
+
--tw-border-style: none !important;
|
|
1878
|
+
border-style: none !important;
|
|
1879
|
+
}
|
|
1570
1880
|
.border-green-300 {
|
|
1571
1881
|
border-color: var(--color-green-300);
|
|
1572
1882
|
}
|
|
@@ -1579,9 +1889,6 @@
|
|
|
1579
1889
|
.bg-base-200 {
|
|
1580
1890
|
background-color: var(--color-base-200);
|
|
1581
1891
|
}
|
|
1582
|
-
.bg-base-300 {
|
|
1583
|
-
background-color: var(--color-base-300);
|
|
1584
|
-
}
|
|
1585
1892
|
.bg-green-400 {
|
|
1586
1893
|
background-color: var(--color-green-400);
|
|
1587
1894
|
}
|
|
@@ -1598,6 +1905,9 @@
|
|
|
1598
1905
|
padding: 0.125rem;
|
|
1599
1906
|
--size: calc(var(--size-selector, 0.25rem) * 4);
|
|
1600
1907
|
}
|
|
1908
|
+
.p-0 {
|
|
1909
|
+
padding: calc(var(--spacing) * 0);
|
|
1910
|
+
}
|
|
1601
1911
|
.p-1 {
|
|
1602
1912
|
padding: calc(var(--spacing) * 1);
|
|
1603
1913
|
}
|
|
@@ -1610,22 +1920,49 @@
|
|
|
1610
1920
|
.px-2 {
|
|
1611
1921
|
padding-inline: calc(var(--spacing) * 2);
|
|
1612
1922
|
}
|
|
1923
|
+
.py-1 {
|
|
1924
|
+
padding-block: calc(var(--spacing) * 1);
|
|
1925
|
+
}
|
|
1926
|
+
.\!text-sm {
|
|
1927
|
+
font-size: var(--text-sm) !important;
|
|
1928
|
+
line-height: var(--tw-leading, var(--text-sm--line-height)) !important;
|
|
1929
|
+
}
|
|
1613
1930
|
.text-base\! {
|
|
1614
1931
|
font-size: var(--text-base) !important;
|
|
1615
1932
|
line-height: var(--tw-leading, var(--text-base--line-height)) !important;
|
|
1616
1933
|
}
|
|
1934
|
+
.text-lg {
|
|
1935
|
+
font-size: var(--text-lg);
|
|
1936
|
+
line-height: var(--tw-leading, var(--text-lg--line-height));
|
|
1937
|
+
}
|
|
1938
|
+
.text-sm {
|
|
1939
|
+
font-size: var(--text-sm);
|
|
1940
|
+
line-height: var(--tw-leading, var(--text-sm--line-height));
|
|
1941
|
+
}
|
|
1942
|
+
.text-xl {
|
|
1943
|
+
font-size: var(--text-xl);
|
|
1944
|
+
line-height: var(--tw-leading, var(--text-xl--line-height));
|
|
1945
|
+
}
|
|
1617
1946
|
.select-sm {
|
|
1618
1947
|
--size: calc(var(--size-field, 0.25rem) * 8);
|
|
1619
1948
|
font-size: 0.75rem;
|
|
1620
1949
|
}
|
|
1950
|
+
.font-bold {
|
|
1951
|
+
--tw-font-weight: var(--font-weight-bold);
|
|
1952
|
+
font-weight: var(--font-weight-bold);
|
|
1953
|
+
}
|
|
1954
|
+
.font-semibold {
|
|
1955
|
+
--tw-font-weight: var(--font-weight-semibold);
|
|
1956
|
+
font-weight: var(--font-weight-semibold);
|
|
1957
|
+
}
|
|
1621
1958
|
.text-nowrap {
|
|
1622
1959
|
text-wrap: nowrap;
|
|
1623
1960
|
}
|
|
1624
1961
|
.progress-info {
|
|
1625
1962
|
color: var(--color-info);
|
|
1626
1963
|
}
|
|
1627
|
-
.
|
|
1628
|
-
|
|
1964
|
+
.opacity-50 {
|
|
1965
|
+
opacity: 50%;
|
|
1629
1966
|
}
|
|
1630
1967
|
.shadow-sm\/30 {
|
|
1631
1968
|
--tw-shadow-alpha: 30%;
|
|
@@ -1690,19 +2027,57 @@
|
|
|
1690
2027
|
outline-color: currentColor;
|
|
1691
2028
|
--btn-fg: currentColor;
|
|
1692
2029
|
}
|
|
2030
|
+
.btn-soft:not(.btn-active, :hover, :active:focus, :focus-visible, :disabled, [disabled], .btn-disabled) {
|
|
2031
|
+
--btn-shadow: "";
|
|
2032
|
+
--btn-fg: var(--btn-color, var(--color-base-content));
|
|
2033
|
+
--btn-bg: var(--btn-color, var(--color-base-content));
|
|
2034
|
+
--btn-border: var(--btn-color, var(--color-base-content));
|
|
2035
|
+
--btn-noise: none;
|
|
2036
|
+
}
|
|
2037
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2038
|
+
.btn-soft:not(.btn-active, :hover, :active:focus, :focus-visible, :disabled, [disabled], .btn-disabled) {
|
|
2039
|
+
--btn-bg: color-mix( in oklab, var(--btn-color, var(--color-base-content)) 8%, var(--color-base-100) );
|
|
2040
|
+
}
|
|
2041
|
+
}
|
|
2042
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2043
|
+
.btn-soft:not(.btn-active, :hover, :active:focus, :focus-visible, :disabled, [disabled], .btn-disabled) {
|
|
2044
|
+
--btn-border: color-mix( in oklab, var(--btn-color, var(--color-base-content)) 10%, var(--color-base-100) );
|
|
2045
|
+
}
|
|
2046
|
+
}
|
|
2047
|
+
@media (hover: none) {
|
|
2048
|
+
.btn-soft:hover:not(.btn-active, :active, :focus-visible, :disabled, [disabled], .btn-disabled) {
|
|
2049
|
+
--btn-shadow: "";
|
|
2050
|
+
--btn-fg: var(--btn-color, var(--color-base-content));
|
|
2051
|
+
--btn-bg: var(--btn-color, var(--color-base-content));
|
|
2052
|
+
--btn-border: var(--btn-color, var(--color-base-content));
|
|
2053
|
+
--btn-noise: none;
|
|
2054
|
+
}
|
|
2055
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2056
|
+
.btn-soft:hover:not(.btn-active, :active, :focus-visible, :disabled, [disabled], .btn-disabled) {
|
|
2057
|
+
--btn-bg: color-mix( in oklab, var(--btn-color, var(--color-base-content)) 8%, var(--color-base-100) );
|
|
2058
|
+
}
|
|
2059
|
+
}
|
|
2060
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2061
|
+
.btn-soft:hover:not(.btn-active, :active, :focus-visible, :disabled, [disabled], .btn-disabled) {
|
|
2062
|
+
--btn-border: color-mix( in oklab, var(--btn-color, var(--color-base-content)) 10%, var(--color-base-100) );
|
|
2063
|
+
}
|
|
2064
|
+
}
|
|
2065
|
+
}
|
|
1693
2066
|
.btn-xs {
|
|
1694
2067
|
--fontsize: 0.6875rem;
|
|
1695
2068
|
--btn-p: 0.5rem;
|
|
1696
2069
|
--size: calc(var(--size-field, 0.25rem) * 6);
|
|
1697
2070
|
}
|
|
1698
|
-
|
|
1699
|
-
|
|
2071
|
+
.btn-primary {
|
|
2072
|
+
--btn-color: var(--color-primary);
|
|
2073
|
+
--btn-fg: var(--color-primary-content);
|
|
1700
2074
|
}
|
|
1701
|
-
|
|
1702
|
-
|
|
2075
|
+
.btn-secondary {
|
|
2076
|
+
--btn-color: var(--color-secondary);
|
|
2077
|
+
--btn-fg: var(--color-secondary-content);
|
|
1703
2078
|
}
|
|
1704
|
-
:is(.\*\:
|
|
1705
|
-
|
|
2079
|
+
:is(.\*\:max-w-xs > *) {
|
|
2080
|
+
max-width: var(--container-xs);
|
|
1706
2081
|
}
|
|
1707
2082
|
@media (hover: hover) {
|
|
1708
2083
|
.hover\:bg-base-content\/10:hover {
|
|
@@ -1863,6 +2238,7 @@
|
|
|
1863
2238
|
background-position: -50%;
|
|
1864
2239
|
}
|
|
1865
2240
|
}
|
|
2241
|
+
@property --tw-font-weight { syntax: "*"; inherits: false; }
|
|
1866
2242
|
@property --tw-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
|
|
1867
2243
|
@property --tw-shadow-color { syntax: "*"; inherits: false; }
|
|
1868
2244
|
@property --tw-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
|
|
@@ -1884,6 +2260,7 @@
|
|
|
1884
2260
|
::before,
|
|
1885
2261
|
::after,
|
|
1886
2262
|
::backdrop {
|
|
2263
|
+
--tw-font-weight: initial;
|
|
1887
2264
|
--tw-shadow: 0 0 #0000;
|
|
1888
2265
|
--tw-shadow-color: initial;
|
|
1889
2266
|
--tw-shadow-alpha: 100%;
|
|
@@ -1904,4 +2281,4 @@
|
|
|
1904
2281
|
}
|
|
1905
2282
|
|
|
1906
2283
|
/* angular:styles/global:styles */
|
|
1907
|
-
/*# sourceMappingURL=styles-
|
|
2284
|
+
/*# sourceMappingURL=styles-4V6RXJMC.css.map */
|