lightning-pose-app 1.8.1a1__py3-none-any.whl → 1.8.1a2__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.1a2.dist-info}/METADATA +1 -1
- lightning_pose_app-1.8.1a2.dist-info/RECORD +20 -0
- litpose_app/main.py +15 -5
- litpose_app/ngdist/ng_app/3rdpartylicenses.txt +11 -11
- litpose_app/ngdist/ng_app/app.component-IZ5OUDH2.css.map +7 -0
- litpose_app/ngdist/ng_app/index.html +11 -2
- litpose_app/ngdist/ng_app/{main-QMBNNDJG.js → main-WFYIUX2C.js} +849 -525
- litpose_app/ngdist/ng_app/main-WFYIUX2C.js.map +1 -0
- litpose_app/ngdist/ng_app/project-settings.component-BXKZMYM3.css.map +7 -0
- litpose_app/ngdist/ng_app/{styles-JT3DWFJR.css → styles-AJ6NQDUD.css} +376 -19
- litpose_app/ngdist/ng_app/styles-AJ6NQDUD.css.map +7 -0
- litpose_app/ngdist/ng_app/viewer-page.component-KIYG73MW.css.map +7 -0
- litpose_app/super_rglob.py +18 -6
- 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.1a2.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,6 +1683,38 @@
|
|
|
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
|
}
|
|
@@ -1448,12 +1733,12 @@
|
|
|
1448
1733
|
.h-full {
|
|
1449
1734
|
height: 100%;
|
|
1450
1735
|
}
|
|
1451
|
-
.h-screen {
|
|
1452
|
-
height: 100vh;
|
|
1453
|
-
}
|
|
1454
1736
|
.max-h-60 {
|
|
1455
1737
|
max-height: calc(var(--spacing) * 60);
|
|
1456
1738
|
}
|
|
1739
|
+
.min-h-0 {
|
|
1740
|
+
min-height: calc(var(--spacing) * 0);
|
|
1741
|
+
}
|
|
1457
1742
|
.w-2 {
|
|
1458
1743
|
width: calc(var(--spacing) * 2);
|
|
1459
1744
|
}
|
|
@@ -1475,8 +1760,11 @@
|
|
|
1475
1760
|
.w-full {
|
|
1476
1761
|
width: 100%;
|
|
1477
1762
|
}
|
|
1478
|
-
.w-
|
|
1479
|
-
width:
|
|
1763
|
+
.w-lg {
|
|
1764
|
+
width: var(--container-lg);
|
|
1765
|
+
}
|
|
1766
|
+
.shrink {
|
|
1767
|
+
flex-shrink: 1;
|
|
1480
1768
|
}
|
|
1481
1769
|
.shrink-0 {
|
|
1482
1770
|
flex-shrink: 0;
|
|
@@ -1529,6 +1817,9 @@
|
|
|
1529
1817
|
.justify-between {
|
|
1530
1818
|
justify-content: space-between;
|
|
1531
1819
|
}
|
|
1820
|
+
.justify-center {
|
|
1821
|
+
justify-content: center;
|
|
1822
|
+
}
|
|
1532
1823
|
.justify-start {
|
|
1533
1824
|
justify-content: flex-start;
|
|
1534
1825
|
}
|
|
@@ -1579,9 +1870,6 @@
|
|
|
1579
1870
|
.bg-base-200 {
|
|
1580
1871
|
background-color: var(--color-base-200);
|
|
1581
1872
|
}
|
|
1582
|
-
.bg-base-300 {
|
|
1583
|
-
background-color: var(--color-base-300);
|
|
1584
|
-
}
|
|
1585
1873
|
.bg-green-400 {
|
|
1586
1874
|
background-color: var(--color-green-400);
|
|
1587
1875
|
}
|
|
@@ -1598,6 +1886,9 @@
|
|
|
1598
1886
|
padding: 0.125rem;
|
|
1599
1887
|
--size: calc(var(--size-selector, 0.25rem) * 4);
|
|
1600
1888
|
}
|
|
1889
|
+
.p-0 {
|
|
1890
|
+
padding: calc(var(--spacing) * 0);
|
|
1891
|
+
}
|
|
1601
1892
|
.p-1 {
|
|
1602
1893
|
padding: calc(var(--spacing) * 1);
|
|
1603
1894
|
}
|
|
@@ -1610,22 +1901,42 @@
|
|
|
1610
1901
|
.px-2 {
|
|
1611
1902
|
padding-inline: calc(var(--spacing) * 2);
|
|
1612
1903
|
}
|
|
1904
|
+
.\!text-sm {
|
|
1905
|
+
font-size: var(--text-sm) !important;
|
|
1906
|
+
line-height: var(--tw-leading, var(--text-sm--line-height)) !important;
|
|
1907
|
+
}
|
|
1613
1908
|
.text-base\! {
|
|
1614
1909
|
font-size: var(--text-base) !important;
|
|
1615
1910
|
line-height: var(--tw-leading, var(--text-base--line-height)) !important;
|
|
1616
1911
|
}
|
|
1912
|
+
.text-lg {
|
|
1913
|
+
font-size: var(--text-lg);
|
|
1914
|
+
line-height: var(--tw-leading, var(--text-lg--line-height));
|
|
1915
|
+
}
|
|
1916
|
+
.text-xl {
|
|
1917
|
+
font-size: var(--text-xl);
|
|
1918
|
+
line-height: var(--tw-leading, var(--text-xl--line-height));
|
|
1919
|
+
}
|
|
1617
1920
|
.select-sm {
|
|
1618
1921
|
--size: calc(var(--size-field, 0.25rem) * 8);
|
|
1619
1922
|
font-size: 0.75rem;
|
|
1620
1923
|
}
|
|
1924
|
+
.font-bold {
|
|
1925
|
+
--tw-font-weight: var(--font-weight-bold);
|
|
1926
|
+
font-weight: var(--font-weight-bold);
|
|
1927
|
+
}
|
|
1928
|
+
.font-semibold {
|
|
1929
|
+
--tw-font-weight: var(--font-weight-semibold);
|
|
1930
|
+
font-weight: var(--font-weight-semibold);
|
|
1931
|
+
}
|
|
1621
1932
|
.text-nowrap {
|
|
1622
1933
|
text-wrap: nowrap;
|
|
1623
1934
|
}
|
|
1624
1935
|
.progress-info {
|
|
1625
1936
|
color: var(--color-info);
|
|
1626
1937
|
}
|
|
1627
|
-
.
|
|
1628
|
-
|
|
1938
|
+
.opacity-50 {
|
|
1939
|
+
opacity: 50%;
|
|
1629
1940
|
}
|
|
1630
1941
|
.shadow-sm\/30 {
|
|
1631
1942
|
--tw-shadow-alpha: 30%;
|
|
@@ -1690,11 +2001,55 @@
|
|
|
1690
2001
|
outline-color: currentColor;
|
|
1691
2002
|
--btn-fg: currentColor;
|
|
1692
2003
|
}
|
|
2004
|
+
.btn-soft:not(.btn-active, :hover, :active:focus, :focus-visible, :disabled, [disabled], .btn-disabled) {
|
|
2005
|
+
--btn-shadow: "";
|
|
2006
|
+
--btn-fg: var(--btn-color, var(--color-base-content));
|
|
2007
|
+
--btn-bg: var(--btn-color, var(--color-base-content));
|
|
2008
|
+
--btn-border: var(--btn-color, var(--color-base-content));
|
|
2009
|
+
--btn-noise: none;
|
|
2010
|
+
}
|
|
2011
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2012
|
+
.btn-soft:not(.btn-active, :hover, :active:focus, :focus-visible, :disabled, [disabled], .btn-disabled) {
|
|
2013
|
+
--btn-bg: color-mix( in oklab, var(--btn-color, var(--color-base-content)) 8%, var(--color-base-100) );
|
|
2014
|
+
}
|
|
2015
|
+
}
|
|
2016
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2017
|
+
.btn-soft:not(.btn-active, :hover, :active:focus, :focus-visible, :disabled, [disabled], .btn-disabled) {
|
|
2018
|
+
--btn-border: color-mix( in oklab, var(--btn-color, var(--color-base-content)) 10%, var(--color-base-100) );
|
|
2019
|
+
}
|
|
2020
|
+
}
|
|
2021
|
+
@media (hover: none) {
|
|
2022
|
+
.btn-soft:hover:not(.btn-active, :active, :focus-visible, :disabled, [disabled], .btn-disabled) {
|
|
2023
|
+
--btn-shadow: "";
|
|
2024
|
+
--btn-fg: var(--btn-color, var(--color-base-content));
|
|
2025
|
+
--btn-bg: var(--btn-color, var(--color-base-content));
|
|
2026
|
+
--btn-border: var(--btn-color, var(--color-base-content));
|
|
2027
|
+
--btn-noise: none;
|
|
2028
|
+
}
|
|
2029
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2030
|
+
.btn-soft:hover:not(.btn-active, :active, :focus-visible, :disabled, [disabled], .btn-disabled) {
|
|
2031
|
+
--btn-bg: color-mix( in oklab, var(--btn-color, var(--color-base-content)) 8%, var(--color-base-100) );
|
|
2032
|
+
}
|
|
2033
|
+
}
|
|
2034
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2035
|
+
.btn-soft:hover:not(.btn-active, :active, :focus-visible, :disabled, [disabled], .btn-disabled) {
|
|
2036
|
+
--btn-border: color-mix( in oklab, var(--btn-color, var(--color-base-content)) 10%, var(--color-base-100) );
|
|
2037
|
+
}
|
|
2038
|
+
}
|
|
2039
|
+
}
|
|
1693
2040
|
.btn-xs {
|
|
1694
2041
|
--fontsize: 0.6875rem;
|
|
1695
2042
|
--btn-p: 0.5rem;
|
|
1696
2043
|
--size: calc(var(--size-field, 0.25rem) * 6);
|
|
1697
2044
|
}
|
|
2045
|
+
.btn-primary {
|
|
2046
|
+
--btn-color: var(--color-primary);
|
|
2047
|
+
--btn-fg: var(--color-primary-content);
|
|
2048
|
+
}
|
|
2049
|
+
.btn-secondary {
|
|
2050
|
+
--btn-color: var(--color-secondary);
|
|
2051
|
+
--btn-fg: var(--color-secondary-content);
|
|
2052
|
+
}
|
|
1698
2053
|
:is(.\*\:max-w-xs > *) {
|
|
1699
2054
|
max-width: var(--container-xs);
|
|
1700
2055
|
}
|
|
@@ -1863,6 +2218,7 @@
|
|
|
1863
2218
|
background-position: -50%;
|
|
1864
2219
|
}
|
|
1865
2220
|
}
|
|
2221
|
+
@property --tw-font-weight { syntax: "*"; inherits: false; }
|
|
1866
2222
|
@property --tw-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
|
|
1867
2223
|
@property --tw-shadow-color { syntax: "*"; inherits: false; }
|
|
1868
2224
|
@property --tw-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
|
|
@@ -1884,6 +2240,7 @@
|
|
|
1884
2240
|
::before,
|
|
1885
2241
|
::after,
|
|
1886
2242
|
::backdrop {
|
|
2243
|
+
--tw-font-weight: initial;
|
|
1887
2244
|
--tw-shadow: 0 0 #0000;
|
|
1888
2245
|
--tw-shadow-color: initial;
|
|
1889
2246
|
--tw-shadow-alpha: 100%;
|
|
@@ -1904,4 +2261,4 @@
|
|
|
1904
2261
|
}
|
|
1905
2262
|
|
|
1906
2263
|
/* angular:styles/global:styles */
|
|
1907
|
-
/*# sourceMappingURL=styles-
|
|
2264
|
+
/*# sourceMappingURL=styles-AJ6NQDUD.css.map */
|