pinokiod 7.3.9 → 7.3.11

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.
Files changed (52) hide show
  1. package/kernel/bin/brew.js +12 -2
  2. package/kernel/bin/caddy.js +24 -20
  3. package/kernel/bin/huggingface.js +2 -2
  4. package/kernel/bin/setup.js +2 -3
  5. package/kernel/bin/uv.js +13 -6
  6. package/kernel/connect/index.js +5 -1
  7. package/kernel/connect/providers/huggingface/index.js +213 -75
  8. package/kernel/environment.js +16 -1
  9. package/kernel/router/localhost_home_router.js +7 -0
  10. package/kernel/shell.js +1 -5
  11. package/kernel/util.js +1 -0
  12. package/package.json +1 -1
  13. package/server/index.js +75 -33
  14. package/server/public/common.js +52 -88
  15. package/server/public/install.js +20 -2
  16. package/server/public/layout.js +1 -1
  17. package/server/public/nav.js +3 -1
  18. package/server/public/style.css +1455 -521
  19. package/server/public/tab-link-popover.css +162 -18
  20. package/server/public/tab-link-popover.js +230 -21
  21. package/server/public/task-launcher.css +182 -91
  22. package/server/public/terminal-settings.js +227 -50
  23. package/server/public/universal-launcher.css +42 -33
  24. package/server/public/urldropdown.css +284 -0
  25. package/server/views/app.ejs +1718 -352
  26. package/server/views/autolaunch.ejs +4 -5
  27. package/server/views/checkpoints.ejs +223 -50
  28. package/server/views/connect/huggingface.ejs +406 -325
  29. package/server/views/connect.ejs +0 -1
  30. package/server/views/github.ejs +277 -324
  31. package/server/views/index.ejs +65 -8
  32. package/server/views/install.ejs +134 -65
  33. package/server/views/logs.ejs +9 -8
  34. package/server/views/net.ejs +341 -64
  35. package/server/views/network.ejs +85 -63
  36. package/server/views/partials/main_sidebar.ejs +249 -24
  37. package/server/views/plugins.ejs +141 -3
  38. package/server/views/settings.ejs +103 -7
  39. package/server/views/setup.ejs +0 -5
  40. package/server/views/skills.ejs +0 -1
  41. package/server/views/task_list.ejs +0 -1
  42. package/server/views/terminal.ejs +285 -60
  43. package/server/views/terminals.ejs +346 -6
  44. package/server/views/tools.ejs +828 -1691
  45. package/test/caddy-install.test.js +53 -0
  46. package/test/connect-setup.test.js +16 -0
  47. package/test/github-connection.test.js +1 -1
  48. package/test/huggingface-bin.test.js +4 -4
  49. package/test/huggingface-connect.test.js +73 -0
  50. package/test/main-sidebar.test.js +31 -0
  51. package/test/shell-run-template.test.js +5 -1
  52. package/test/uv-bin.test.js +29 -0
@@ -1348,16 +1348,16 @@ body.main-sidebar-page main > :not(.main-sidebar) {
1348
1348
  body.main-sidebar-page main > .container,
1349
1349
  body.main-sidebar-page main > .task-container {
1350
1350
  box-sizing: border-box;
1351
- padding-left: 16px;
1351
+ padding-left: 12px;
1352
1352
  }
1353
1353
  .main-sidebar {
1354
1354
  order: -1;
1355
- width: 196px;
1355
+ width: 180px;
1356
1356
  display: flex;
1357
1357
  flex-direction: column;
1358
1358
  flex-shrink: 0;
1359
1359
  min-height: 0;
1360
- padding: 8px 6px;
1360
+ padding: 8px 5px;
1361
1361
  box-sizing: border-box;
1362
1362
  background: transparent;
1363
1363
  color: var(--pinokio-sidebar-tab-muted);
@@ -1399,7 +1399,7 @@ body.main-sidebar-page main > .task-container {
1399
1399
  display: flex;
1400
1400
  align-items: flex-end;
1401
1401
  box-sizing: border-box;
1402
- padding: 5px 6px 4px;
1402
+ padding: 5px 5px 4px;
1403
1403
  color: var(--pinokio-sidebar-action-muted);
1404
1404
  font-size: 11px;
1405
1405
  font-weight: 500;
@@ -1415,9 +1415,9 @@ body.main-sidebar-page main > .task-container {
1415
1415
  display: grid !important;
1416
1416
  grid-template-columns: 16px minmax(0, 1fr) auto;
1417
1417
  align-items: center !important;
1418
- column-gap: 7px !important;
1418
+ column-gap: 6px !important;
1419
1419
  margin: 0;
1420
- padding: 3px 6px !important;
1420
+ padding: 3px 5px !important;
1421
1421
  box-sizing: border-box;
1422
1422
  border: 0 !important;
1423
1423
  border-left: 0 !important;
@@ -1445,6 +1445,11 @@ body.main-sidebar-page main > .task-container {
1445
1445
  color: var(--pinokio-sidebar-tab-active-color) !important;
1446
1446
  font-weight: 600 !important;
1447
1447
  }
1448
+ body.main-sidebar-page aside.main-sidebar .tab:hover,
1449
+ body.main-sidebar-page aside.main-sidebar .tab:focus-visible,
1450
+ body.main-sidebar-page aside.main-sidebar .tab.selected {
1451
+ color: var(--pinokio-sidebar-tab-active-color) !important;
1452
+ }
1448
1453
  .main-sidebar .tab i,
1449
1454
  .main-sidebar .tab .main-sidebar-action-icon {
1450
1455
  grid-column: 1;
@@ -1467,7 +1472,15 @@ body.main-sidebar-page main > .task-container {
1467
1472
  .main-sidebar .tab.selected .main-sidebar-action-icon {
1468
1473
  color: var(--pinokio-sidebar-icon-active) !important;
1469
1474
  }
1470
- .main-sidebar .caption {
1475
+ body.main-sidebar-page aside.main-sidebar .tab:hover i,
1476
+ body.main-sidebar-page aside.main-sidebar .tab:focus-visible i,
1477
+ body.main-sidebar-page aside.main-sidebar .tab.selected i,
1478
+ body.main-sidebar-page aside.main-sidebar .tab:hover .main-sidebar-action-icon,
1479
+ body.main-sidebar-page aside.main-sidebar .tab:focus-visible .main-sidebar-action-icon,
1480
+ body.main-sidebar-page aside.main-sidebar .tab.selected .main-sidebar-action-icon {
1481
+ color: var(--pinokio-sidebar-icon-active) !important;
1482
+ }
1483
+ .main-sidebar .tab .caption {
1471
1484
  grid-column: 2;
1472
1485
  min-width: 0;
1473
1486
  width: auto !important;
@@ -1479,7 +1492,7 @@ body.main-sidebar-page main > .task-container {
1479
1492
  word-wrap: normal !important;
1480
1493
  }
1481
1494
  .main-sidebar .tab.submenu {
1482
- padding-left: 16px !important;
1495
+ padding-left: 14px !important;
1483
1496
  }
1484
1497
  .main-sidebar .universal-create-menu {
1485
1498
  width: 100%;
@@ -1501,21 +1514,333 @@ body.main-sidebar-page main > .task-container {
1501
1514
  -webkit-mask: url('/pinokio-mark.svg') center / 14px 14px no-repeat;
1502
1515
  mask: url('/pinokio-mark.svg') center / 14px 14px no-repeat;
1503
1516
  }
1504
- .main-sidebar-peer {
1505
- margin-top: 8px;
1506
- padding-top: 8px;
1507
- border-top: 0;
1517
+ .main-sidebar-peer-dialog[hidden],
1518
+ .main-sidebar-peer-dialog-panel[hidden] {
1519
+ display: none !important;
1508
1520
  }
1509
- .main-sidebar .qr {
1510
- padding: 10px 0 0;
1521
+ .main-sidebar-peer-dialog {
1522
+ position: fixed;
1523
+ inset: 0;
1524
+ z-index: 10000;
1525
+ display: grid;
1526
+ place-items: center;
1527
+ box-sizing: border-box;
1528
+ padding: 16px;
1529
+ }
1530
+ .main-sidebar-peer-dialog-backdrop {
1531
+ position: absolute;
1532
+ inset: 0;
1533
+ width: 100%;
1534
+ height: 100%;
1535
+ appearance: none;
1536
+ border: 0;
1537
+ border-radius: 0;
1538
+ background: rgba(15, 23, 42, 0.28);
1539
+ cursor: default;
1540
+ }
1541
+ body.dark .main-sidebar-peer-dialog-backdrop {
1542
+ background: rgba(0, 0, 0, 0.44);
1543
+ }
1544
+ .main-sidebar-peer-dialog-surface {
1545
+ position: relative;
1546
+ width: min(300px, calc(100vw - 32px));
1547
+ max-height: calc(100vh - 32px);
1548
+ box-sizing: border-box;
1549
+ overflow: auto;
1550
+ padding: 10px;
1551
+ border: 1px solid var(--pinokio-sidebar-tabbar-border);
1552
+ border-radius: 8px;
1553
+ background: var(--pinokio-sidebar-tabbar-bg);
1554
+ color: var(--pinokio-sidebar-tab-active-color);
1555
+ box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
1556
+ }
1557
+ body.dark .main-sidebar-peer-dialog-surface {
1558
+ box-shadow: 0 18px 45px rgba(0, 0, 0, 0.42);
1559
+ }
1560
+ .main-sidebar-peer-dialog-header {
1561
+ display: grid;
1562
+ grid-template-columns: 30px minmax(0, 1fr) 28px;
1563
+ align-items: center;
1564
+ gap: 8px;
1565
+ }
1566
+ .main-sidebar-peer-dialog-icon,
1567
+ .main-sidebar-peer-dialog-close,
1568
+ .main-sidebar-peer-copy {
1569
+ width: 28px;
1570
+ height: 28px;
1571
+ min-width: 28px;
1572
+ display: inline-flex;
1573
+ align-items: center;
1574
+ justify-content: center;
1575
+ box-sizing: border-box;
1576
+ border-radius: 6px;
1577
+ }
1578
+ .main-sidebar-peer-dialog-icon {
1579
+ background: var(--pinokio-sidebar-tab-active-bg);
1580
+ color: var(--pinokio-sidebar-icon-active);
1581
+ }
1582
+ .main-sidebar-peer-dialog-heading {
1583
+ min-width: 0;
1584
+ }
1585
+ .main-sidebar-peer-dialog-title {
1586
+ color: var(--pinokio-sidebar-tab-active-color);
1587
+ font-size: 13px;
1588
+ font-weight: 650;
1589
+ line-height: 1.2;
1590
+ letter-spacing: 0;
1591
+ }
1592
+ .main-sidebar-peer-dialog-subtitle {
1593
+ margin-top: 2px;
1594
+ color: var(--pinokio-sidebar-action-muted);
1595
+ font-size: 11px;
1596
+ font-weight: 500;
1597
+ line-height: 1.2;
1598
+ letter-spacing: 0;
1599
+ overflow: hidden;
1600
+ text-overflow: ellipsis;
1601
+ white-space: nowrap;
1602
+ }
1603
+ .main-sidebar-peer-dialog-close,
1604
+ .main-sidebar-peer-copy {
1605
+ appearance: none;
1606
+ border: 0;
1607
+ background: transparent;
1608
+ color: var(--pinokio-sidebar-icon-muted);
1609
+ cursor: pointer;
1610
+ transition: background-color 120ms ease, color 120ms ease;
1611
+ }
1612
+ .main-sidebar-peer-dialog-close:hover,
1613
+ .main-sidebar-peer-dialog-close:focus-visible,
1614
+ .main-sidebar-peer-copy:hover,
1615
+ .main-sidebar-peer-copy:focus-visible {
1616
+ background: var(--pinokio-sidebar-tab-hover);
1617
+ color: var(--pinokio-sidebar-icon-active);
1618
+ outline: none;
1619
+ }
1620
+ .main-sidebar-peer-dialog-tabs {
1621
+ display: flex;
1622
+ gap: 2px;
1623
+ margin-top: 10px;
1624
+ padding: 2px;
1625
+ border-radius: 7px;
1626
+ background: var(--pinokio-sidebar-control-bg);
1627
+ }
1628
+ .main-sidebar-peer-dialog-tab {
1629
+ flex: 1 1 0;
1630
+ min-width: 0;
1631
+ appearance: none;
1632
+ border: 0;
1633
+ border-radius: 5px;
1634
+ padding: 5px 7px;
1635
+ background: transparent;
1636
+ color: var(--pinokio-sidebar-tab-muted);
1637
+ font: inherit;
1638
+ font-size: 11px;
1639
+ font-weight: 600;
1640
+ line-height: 1.2;
1641
+ letter-spacing: 0;
1642
+ overflow: hidden;
1643
+ text-overflow: ellipsis;
1644
+ white-space: nowrap;
1645
+ cursor: pointer;
1646
+ }
1647
+ .main-sidebar-peer-dialog-tab:hover,
1648
+ .main-sidebar-peer-dialog-tab:focus-visible,
1649
+ .main-sidebar-peer-dialog-tab.is-active {
1650
+ background: var(--pinokio-sidebar-control-active-bg);
1651
+ color: var(--pinokio-sidebar-tab-active-color);
1652
+ outline: none;
1653
+ }
1654
+ .main-sidebar-peer-dialog-body {
1655
+ margin-top: 10px;
1656
+ }
1657
+ .main-sidebar-peer-dialog-panel {
1658
+ display: grid;
1659
+ justify-items: center;
1660
+ gap: 8px;
1661
+ }
1662
+ .main-sidebar-peer-qr-link {
1663
+ display: block;
1664
+ box-sizing: border-box;
1665
+ padding: 10px;
1666
+ border-radius: 6px;
1667
+ background: #ffffff;
1668
+ line-height: 0;
1669
+ }
1670
+ .main-sidebar-peer-qr-image {
1671
+ width: 174px;
1672
+ height: 174px;
1673
+ display: block;
1674
+ image-rendering: pixelated;
1675
+ }
1676
+ .main-sidebar-peer-caption {
1677
+ width: 100%;
1678
+ color: var(--pinokio-sidebar-tab-active-color);
1679
+ font-size: 12px;
1680
+ font-weight: 650;
1681
+ line-height: 1.25;
1682
+ text-align: center;
1683
+ letter-spacing: 0;
1684
+ overflow-wrap: anywhere;
1685
+ }
1686
+ .main-sidebar-peer-local-note {
1687
+ width: 100%;
1688
+ color: var(--pinokio-sidebar-action-muted);
1689
+ font-size: 10px;
1690
+ font-weight: 500;
1691
+ line-height: 1.35;
1692
+ text-align: center;
1693
+ letter-spacing: 0;
1694
+ }
1695
+ .main-sidebar-peer-url-row {
1696
+ width: 100%;
1697
+ display: grid;
1698
+ grid-template-columns: minmax(0, 1fr) 28px;
1699
+ align-items: center;
1700
+ gap: 6px;
1701
+ }
1702
+ .main-sidebar-peer-url {
1703
+ min-width: 0;
1704
+ display: block;
1705
+ padding: 6px 7px;
1706
+ border-radius: 6px;
1707
+ background: var(--pinokio-sidebar-control-bg);
1511
1708
  color: var(--pinokio-sidebar-tab-muted);
1709
+ font-size: 10px;
1710
+ font-weight: 600;
1711
+ line-height: 1.2;
1712
+ letter-spacing: 0;
1713
+ text-decoration: none;
1714
+ overflow: hidden;
1715
+ text-overflow: ellipsis;
1716
+ white-space: nowrap;
1717
+ }
1718
+ .main-sidebar-peer-url:hover,
1719
+ .main-sidebar-peer-url:focus-visible {
1720
+ color: var(--pinokio-sidebar-tab-active-color);
1721
+ outline: none;
1722
+ }
1723
+ .main-sidebar-peer-setup {
1724
+ display: grid;
1725
+ gap: 12px;
1726
+ }
1727
+ .main-sidebar-peer-setup-copy {
1728
+ margin: 0;
1729
+ color: var(--pinokio-sidebar-tab-active-color);
1730
+ font-size: 12px;
1731
+ font-weight: 500;
1732
+ line-height: 1.45;
1733
+ letter-spacing: 0;
1734
+ }
1735
+ .main-sidebar-peer-setup-actions {
1736
+ display: flex;
1737
+ flex-wrap: wrap;
1738
+ gap: 8px;
1739
+ }
1740
+ .main-sidebar-peer-setup-primary,
1741
+ .main-sidebar-peer-setup-secondary {
1742
+ min-height: 32px;
1743
+ display: inline-flex;
1744
+ align-items: center;
1745
+ justify-content: center;
1746
+ box-sizing: border-box;
1747
+ border-radius: 6px;
1748
+ padding: 7px 10px;
1749
+ font-size: 12px;
1750
+ font-weight: 650;
1751
+ line-height: 1.2;
1752
+ letter-spacing: 0;
1753
+ text-decoration: none;
1754
+ cursor: pointer;
1755
+ transition: background-color 120ms ease, border-color 120ms ease, color 120ms ease;
1756
+ }
1757
+ .main-sidebar-peer-setup-primary {
1758
+ border: 1px solid var(--pinokio-sidebar-tab-active-color);
1759
+ background: var(--pinokio-sidebar-tab-active-color);
1760
+ color: var(--pinokio-sidebar-tabbar-bg);
1761
+ }
1762
+ .main-sidebar-peer-setup-primary:hover,
1763
+ .main-sidebar-peer-setup-primary:focus-visible {
1764
+ border-color: var(--pinokio-sidebar-icon-active);
1765
+ background: var(--pinokio-sidebar-icon-active);
1766
+ color: var(--pinokio-sidebar-tabbar-bg);
1767
+ outline: none;
1512
1768
  }
1513
- .main-sidebar .qr img {
1514
- width: 128px;
1515
- height: 128px;
1516
- max-width: calc(100% - 24px);
1769
+ .main-sidebar-peer-setup-secondary {
1770
+ appearance: none;
1771
+ border: 1px solid var(--pinokio-sidebar-tabbar-border);
1772
+ background: var(--pinokio-sidebar-control-bg);
1773
+ color: var(--pinokio-sidebar-tab-active-color);
1774
+ }
1775
+ .main-sidebar-peer-setup-secondary:hover,
1776
+ .main-sidebar-peer-setup-secondary:focus-visible {
1777
+ background: var(--pinokio-sidebar-tab-hover);
1778
+ color: var(--pinokio-sidebar-icon-active);
1779
+ outline: none;
1517
1780
  }
1518
1781
  @media only screen and (min-width: 601px) {
1782
+ body.main-sidebar-page {
1783
+ display: flex;
1784
+ flex-direction: column;
1785
+ height: 100vh;
1786
+ min-height: 0;
1787
+ overflow: hidden;
1788
+ }
1789
+
1790
+ body.main-sidebar-page > header.navheader {
1791
+ flex: 0 0 auto;
1792
+ }
1793
+
1794
+ body.main-sidebar-page main {
1795
+ flex: 1 1 auto;
1796
+ min-height: 0;
1797
+ overflow: hidden;
1798
+ }
1799
+
1800
+ body.main-sidebar-page main > :not(.main-sidebar) {
1801
+ min-height: 0;
1802
+ max-height: 100%;
1803
+ overflow-y: auto;
1804
+ overscroll-behavior: contain;
1805
+ }
1806
+
1807
+ body.main-sidebar-page main > iframe {
1808
+ overflow: hidden;
1809
+ }
1810
+
1811
+ body.main-sidebar-page .main-sidebar {
1812
+ align-self: stretch;
1813
+ height: auto;
1814
+ max-height: none;
1815
+ overflow-x: hidden;
1816
+ overflow-y: auto;
1817
+ overscroll-behavior: contain;
1818
+ scrollbar-width: thin;
1819
+ scrollbar-color: rgba(148, 163, 184, 0.45) transparent;
1820
+ }
1821
+
1822
+ body.dark.main-sidebar-page .main-sidebar {
1823
+ scrollbar-color: rgba(148, 163, 184, 0.35) transparent;
1824
+ }
1825
+
1826
+ body.main-sidebar-page .main-sidebar::-webkit-scrollbar {
1827
+ width: 6px;
1828
+ }
1829
+
1830
+ body.main-sidebar-page .main-sidebar::-webkit-scrollbar-track {
1831
+ background: transparent;
1832
+ }
1833
+
1834
+ body.main-sidebar-page .main-sidebar::-webkit-scrollbar-thumb {
1835
+ background-color: rgba(148, 163, 184, 0.42);
1836
+ border: 0;
1837
+ border-radius: 999px;
1838
+ }
1839
+
1840
+ body.dark.main-sidebar-page .main-sidebar::-webkit-scrollbar-thumb {
1841
+ background-color: rgba(148, 163, 184, 0.32);
1842
+ }
1843
+
1519
1844
  body.main-sidebar-page.main-sidebar-collapsed .main-sidebar {
1520
1845
  width: 0;
1521
1846
  min-width: 0;
@@ -1947,7 +2272,7 @@ header .runner.terminal-runner-minimal .btn span {
1947
2272
  margin-left: auto;
1948
2273
  display: flex;
1949
2274
  align-items: center;
1950
- gap: 10px;
2275
+ gap: 6px;
1951
2276
  flex-wrap: wrap;
1952
2277
  justify-content: flex-end;
1953
2278
  min-width: 0;
@@ -2846,59 +3171,86 @@ body.dark .swal2-title {
2846
3171
  background: rgba(0,0,0,0.8) !important;
2847
3172
  */
2848
3173
  }
3174
+ .swal2-container.pinokio-download-container.swal2-backdrop-show {
3175
+ background: rgba(9, 11, 15, 0.34) !important;
3176
+ }
3177
+ body.dark .swal2-container.pinokio-download-container.swal2-backdrop-show {
3178
+ background: rgba(0, 0, 0, 0.58) !important;
3179
+ }
2849
3180
  .swal2-popup.pinokio-download-modal {
2850
- border-radius: 14px !important;
2851
- padding: 18px !important;
2852
- background: #ffffff !important;
2853
- color: #0f172a !important;
2854
- border: 1px solid rgba(148, 163, 184, 0.2) !important;
2855
- box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18) !important;
3181
+ --pinokio-download-bg: #ffffff;
3182
+ --pinokio-download-control-bg: #ffffff;
3183
+ --pinokio-download-text: #18181b;
3184
+ --pinokio-download-muted: #71717a;
3185
+ --pinokio-download-border: rgba(24, 24, 27, 0.12);
3186
+ --pinokio-download-border-strong: rgba(24, 24, 27, 0.2);
3187
+ --pinokio-download-chip-bg: rgba(24, 24, 27, 0.04);
3188
+ --pinokio-download-primary-bg: #18181b;
3189
+ --pinokio-download-primary-hover: #27272a;
3190
+ --pinokio-download-primary-text: #ffffff;
3191
+ --pinokio-download-focus: rgba(24, 24, 27, 0.14);
3192
+ width: min(420px, calc(100vw - 32px)) !important;
3193
+ border-radius: 8px !important;
3194
+ padding: 20px !important;
3195
+ background: var(--pinokio-download-bg) !important;
3196
+ color: var(--pinokio-download-text) !important;
3197
+ border: 1px solid var(--pinokio-download-border) !important;
3198
+ box-shadow: 0 18px 48px rgba(15, 23, 42, 0.18) !important;
2856
3199
  }
2857
3200
  body.dark .swal2-popup.pinokio-download-modal {
2858
- background: #0f172a !important;
2859
- color: #e2e8f0 !important;
2860
- border: 1px solid rgba(148, 163, 184, 0.24) !important;
2861
- box-shadow: 0 32px 90px rgba(2, 8, 23, 0.72) !important;
3201
+ --pinokio-download-bg: #1b1c1d;
3202
+ --pinokio-download-control-bg: rgba(255, 255, 255, 0.04);
3203
+ --pinokio-download-text: rgba(250, 250, 250, 0.94);
3204
+ --pinokio-download-muted: rgba(229, 231, 235, 0.62);
3205
+ --pinokio-download-border: rgba(255, 255, 255, 0.1);
3206
+ --pinokio-download-border-strong: rgba(255, 255, 255, 0.18);
3207
+ --pinokio-download-chip-bg: rgba(255, 255, 255, 0.055);
3208
+ --pinokio-download-primary-bg: rgba(250, 250, 250, 0.94);
3209
+ --pinokio-download-primary-hover: #ffffff;
3210
+ --pinokio-download-primary-text: #1b1c1d;
3211
+ --pinokio-download-focus: rgba(255, 255, 255, 0.18);
3212
+ box-shadow: 0 24px 72px rgba(0, 0, 0, 0.42) !important;
2862
3213
  }
2863
3214
  .swal2-popup.pinokio-download-modal .swal2-title {
2864
- margin: 0 40px 6px 0 !important;
3215
+ margin: 0 32px 8px 0 !important;
2865
3216
  padding: 0 !important;
2866
3217
  text-align: left !important;
2867
- font-size: 20px !important;
2868
- font-weight: 700 !important;
2869
- line-height: 1.2 !important;
2870
- letter-spacing: -0.02em !important;
2871
- color: #0f172a !important;
2872
- }
2873
- body.dark .swal2-popup.pinokio-download-modal .swal2-title {
2874
- color: #f8fafc !important;
3218
+ font-size: 18px !important;
3219
+ font-weight: 600 !important;
3220
+ line-height: 1.25 !important;
3221
+ letter-spacing: 0 !important;
3222
+ color: var(--pinokio-download-text) !important;
2875
3223
  }
2876
- .pinokio-download-html.swal2-html-container {
2877
- margin: 0 0 12px 0 !important;
3224
+ .swal2-popup.pinokio-download-modal .pinokio-download-html.swal2-html-container {
3225
+ margin: 0 0 16px 0 !important;
2878
3226
  padding: 0 !important;
2879
3227
  text-align: left !important;
2880
3228
  font-size: 13px !important;
2881
3229
  line-height: 1.45 !important;
2882
- color: rgba(71, 85, 105, 0.84) !important;
3230
+ color: var(--pinokio-download-muted) !important;
2883
3231
  }
2884
- body.dark .pinokio-download-html.swal2-html-container {
2885
- color: rgba(148, 163, 184, 0.88) !important;
2886
- }
2887
- .pinokio-download-note {
3232
+ .swal2-popup.pinokio-download-modal .pinokio-download-note {
3233
+ display: flex;
3234
+ align-items: center;
3235
+ gap: 6px;
2888
3236
  margin: 0;
2889
3237
  }
2890
- .pinokio-download-note code {
3238
+ .swal2-popup.pinokio-download-modal .pinokio-download-note code {
3239
+ max-width: 100%;
3240
+ min-width: 0;
3241
+ padding: 1px 6px;
3242
+ border-radius: 6px;
3243
+ border: 1px solid var(--pinokio-download-border);
3244
+ background: var(--pinokio-download-chip-bg);
3245
+ color: var(--pinokio-download-text);
2891
3246
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
2892
3247
  font-size: 12px;
2893
- padding: 2px 6px;
2894
- border-radius: 999px;
2895
- background: rgba(15, 23, 42, 0.06);
2896
- color: inherit;
2897
- }
2898
- body.dark .pinokio-download-note code {
2899
- background: rgba(148, 163, 184, 0.16);
3248
+ line-height: 1.45;
3249
+ overflow: hidden;
3250
+ text-overflow: ellipsis;
3251
+ white-space: nowrap;
2900
3252
  }
2901
- .pinokio-download-label.swal2-input-label {
3253
+ .swal2-popup.pinokio-download-modal .pinokio-download-label.swal2-input-label {
2902
3254
  display: block !important;
2903
3255
  width: 100% !important;
2904
3256
  margin: 0 0 6px 0 !important;
@@ -2906,108 +3258,117 @@ body.dark .pinokio-download-note code {
2906
3258
  font-size: 12px !important;
2907
3259
  font-weight: 600 !important;
2908
3260
  line-height: 1.3 !important;
2909
- color: rgba(15, 23, 42, 0.78) !important;
2910
- }
2911
- body.dark .pinokio-download-label.swal2-input-label {
2912
- color: rgba(241, 245, 249, 0.84) !important;
3261
+ color: var(--pinokio-download-text) !important;
2913
3262
  }
2914
- .pinokio-download-input.swal2-input {
3263
+ .swal2-popup.pinokio-download-modal .pinokio-download-input.swal2-input {
3264
+ box-sizing: border-box !important;
2915
3265
  width: 100% !important;
3266
+ height: 36px !important;
2916
3267
  margin: 0 !important;
2917
- height: 40px !important;
2918
- padding: 0 12px !important;
2919
- border-radius: 10px !important;
2920
- border: 1px solid rgba(148, 163, 184, 0.58) !important;
2921
- background: #ffffff !important;
2922
- color: #0f172a !important;
3268
+ padding: 0 10px !important;
3269
+ border-radius: 7px !important;
3270
+ border: 1px solid var(--pinokio-download-border-strong) !important;
3271
+ background: var(--pinokio-download-control-bg) !important;
3272
+ color: var(--pinokio-download-text) !important;
2923
3273
  box-shadow: none !important;
2924
- font-size: 14px !important;
3274
+ font-size: 13px !important;
2925
3275
  line-height: 1.2 !important;
2926
3276
  }
2927
- .pinokio-download-input.swal2-input:focus {
2928
- border-color: rgba(59, 130, 246, 0.78) !important;
2929
- box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.16) !important;
3277
+ .swal2-popup.pinokio-download-modal .pinokio-download-input.swal2-input:focus {
3278
+ border-color: var(--pinokio-download-text) !important;
3279
+ box-shadow: 0 0 0 3px var(--pinokio-download-focus) !important;
3280
+ outline: none !important;
2930
3281
  }
2931
- body.dark .pinokio-download-input.swal2-input {
2932
- border-color: rgba(148, 163, 184, 0.45) !important;
2933
- background: rgba(15, 23, 42, 0.65) !important;
2934
- color: rgba(248, 250, 252, 0.96) !important;
3282
+ .swal2-popup.pinokio-download-modal .pinokio-download-input.swal2-input::placeholder {
3283
+ color: var(--pinokio-download-muted) !important;
2935
3284
  }
2936
- .pinokio-download-actions.swal2-actions {
3285
+ .swal2-popup.pinokio-download-modal .pinokio-download-actions.swal2-actions {
2937
3286
  width: 100% !important;
2938
3287
  justify-content: flex-end !important;
2939
3288
  gap: 8px !important;
2940
- margin-top: 14px !important;
3289
+ margin-top: 16px !important;
2941
3290
  padding: 0 !important;
2942
3291
  }
2943
- .pinokio-download-actions.swal2-actions.swal2-loading {
3292
+ .swal2-popup.pinokio-download-modal .pinokio-download-actions.swal2-actions.swal2-loading {
2944
3293
  justify-content: flex-end !important;
2945
3294
  gap: 8px !important;
2946
3295
  }
2947
- .pinokio-download-confirm.swal2-confirm,
2948
- .pinokio-download-cancel.swal2-cancel {
2949
- min-width: 92px !important;
2950
- height: 36px !important;
3296
+ .swal2-popup.pinokio-download-modal .pinokio-download-confirm.swal2-confirm,
3297
+ .swal2-popup.pinokio-download-modal .pinokio-download-cancel.swal2-cancel {
3298
+ min-width: 78px !important;
3299
+ height: 32px !important;
2951
3300
  margin: 0 !important;
2952
- padding: 0 14px !important;
2953
- border-radius: 10px !important;
3301
+ padding: 0 12px !important;
3302
+ border-radius: 6px !important;
3303
+ border: 1px solid var(--pinokio-download-border) !important;
3304
+ box-shadow: none !important;
2954
3305
  font-size: 13px !important;
2955
- font-weight: 650 !important;
3306
+ line-height: 1 !important;
3307
+ font-weight: 600 !important;
2956
3308
  }
2957
3309
  .swal2-popup.pinokio-download-modal .pinokio-download-confirm.swal2-confirm {
2958
- border: none !important;
2959
- background: royalblue !important;
2960
- color: #ffffff !important;
2961
- }
2962
- .swal2-popup.pinokio-download-modal .pinokio-download-confirm.swal2-confirm:hover {
2963
- background: #315cd8 !important;
3310
+ border-color: var(--pinokio-download-primary-bg) !important;
3311
+ background: var(--pinokio-download-primary-bg) !important;
3312
+ color: var(--pinokio-download-primary-text) !important;
3313
+ }
3314
+ .swal2-popup.pinokio-download-modal .pinokio-download-confirm.swal2-confirm:hover,
3315
+ .swal2-popup.pinokio-download-modal .pinokio-download-confirm.swal2-confirm:focus-visible {
3316
+ border-color: var(--pinokio-download-primary-hover) !important;
3317
+ background: var(--pinokio-download-primary-hover) !important;
3318
+ color: var(--pinokio-download-primary-text) !important;
3319
+ outline: none !important;
2964
3320
  }
2965
3321
  .swal2-popup.pinokio-download-modal .pinokio-download-cancel.swal2-cancel {
2966
- border: 1px solid rgba(148, 163, 184, 0.6) !important;
2967
- background: #ffffff !important;
2968
- color: #0f172a !important;
2969
- }
2970
- body.dark .swal2-popup.pinokio-download-modal .pinokio-download-cancel.swal2-cancel {
2971
- border-color: rgba(148, 163, 184, 0.52) !important;
2972
- background: rgba(15, 23, 42, 0.64) !important;
2973
- color: rgba(248, 250, 252, 0.96) !important;
2974
- }
2975
- .swal2-popup.pinokio-download-modal .pinokio-download-cancel.swal2-cancel:hover {
2976
- background: rgba(148, 163, 184, 0.12) !important;
3322
+ background: transparent !important;
3323
+ color: var(--pinokio-download-muted) !important;
2977
3324
  }
2978
- body.dark .swal2-popup.pinokio-download-modal .pinokio-download-cancel.swal2-cancel:hover {
2979
- background: rgba(148, 163, 184, 0.18) !important;
3325
+ .swal2-popup.pinokio-download-modal .pinokio-download-cancel.swal2-cancel:hover,
3326
+ .swal2-popup.pinokio-download-modal .pinokio-download-cancel.swal2-cancel:focus-visible {
3327
+ border-color: var(--pinokio-download-border-strong) !important;
3328
+ background: var(--pinokio-download-chip-bg) !important;
3329
+ color: var(--pinokio-download-text) !important;
3330
+ outline: none !important;
2980
3331
  }
2981
3332
  .pinokio-install-inline-status {
2982
- padding: 14px 18px;
3333
+ --pinokio-inline-status-bg: #ffffff;
3334
+ --pinokio-inline-status-border: rgba(24, 24, 27, 0.12);
3335
+ --pinokio-inline-status-title: #18181b;
3336
+ --pinokio-inline-status-detail: #71717a;
3337
+ --pinokio-inline-status-progress: #18181b;
3338
+ flex: 0 0 auto;
3339
+ padding: 12px 14px;
2983
3340
  box-sizing: border-box;
2984
3341
  width: 100%;
2985
3342
  margin: 0;
2986
3343
  overflow: hidden;
2987
- border-top: 1px solid rgba(15, 23, 42, 0.12);
2988
- background: var(--pinokio-chrome-accent-bg-light);
2989
- color: var(--pinokio-chrome-accent-fg-light);
3344
+ border-top: 1px solid var(--pinokio-inline-status-border);
3345
+ background: var(--pinokio-inline-status-bg);
3346
+ color: var(--pinokio-inline-status-title);
2990
3347
  }
2991
3348
  body.dark .pinokio-install-inline-status {
2992
- border-top-color: rgba(255, 255, 255, 0.08);
2993
- background: var(--pinokio-chrome-accent-bg-dark);
2994
- color: var(--pinokio-chrome-accent-fg-dark);
3349
+ --pinokio-inline-status-bg: #1b1c1d;
3350
+ --pinokio-inline-status-border: rgba(255, 255, 255, 0.1);
3351
+ --pinokio-inline-status-title: rgba(250, 250, 250, 0.94);
3352
+ --pinokio-inline-status-detail: rgba(229, 231, 235, 0.62);
3353
+ --pinokio-inline-status-progress: rgba(250, 250, 250, 0.94);
2995
3354
  }
2996
3355
  body.pinokio-install-status-visible {
2997
3356
  min-height: 100vh;
2998
3357
  display: flex;
2999
- flex-direction: column;
3358
+ flex-direction: column !important;
3359
+ align-items: stretch;
3000
3360
  }
3001
- body.pinokio-install-status-visible main,
3002
- body.pinokio-install-status-visible .terminal-container {
3361
+ body.pinokio-install-status-visible > main,
3362
+ body.pinokio-install-status-visible > .terminal-container,
3363
+ body.pinokio-install-status-visible > .containers {
3003
3364
  flex: 1 1 auto;
3004
3365
  min-height: 0;
3005
3366
  }
3006
3367
  .pinokio-install-inline-status-shell {
3007
3368
  display: flex;
3008
3369
  align-items: flex-start;
3009
- gap: 12px;
3010
- min-height: 44px;
3370
+ gap: 10px;
3371
+ min-height: 36px;
3011
3372
  }
3012
3373
  .pinokio-install-inline-status-icon {
3013
3374
  width: 18px;
@@ -3017,28 +3378,64 @@ body.pinokio-install-status-visible .terminal-container {
3017
3378
  display: inline-flex;
3018
3379
  align-items: center;
3019
3380
  justify-content: center;
3020
- font-size: 15px;
3381
+ color: var(--pinokio-inline-status-progress);
3382
+ font-size: 14px;
3383
+ }
3384
+ .pinokio-install-inline-status-spinner {
3385
+ position: relative;
3386
+ width: 18px;
3387
+ height: 18px;
3388
+ flex: 0 0 18px;
3389
+ margin-top: 1px;
3390
+ display: inline-flex;
3391
+ }
3392
+ .pinokio-install-inline-status-spinner-dot {
3393
+ position: absolute;
3394
+ width: 7px;
3395
+ height: 7px;
3396
+ border-radius: 2px;
3397
+ background: var(--pinokio-inline-status-progress);
3398
+ opacity: 0.34;
3399
+ transform: scale(0.82);
3400
+ animation: pinokio-inline-status-spinner 1.1s ease-in-out infinite;
3401
+ }
3402
+ .pinokio-install-inline-status-spinner-dot-1 {
3403
+ top: 1px;
3404
+ left: 1px;
3405
+ animation-delay: 0s;
3406
+ }
3407
+ .pinokio-install-inline-status-spinner-dot-2 {
3408
+ top: 1px;
3409
+ left: 10px;
3410
+ animation-delay: 0.12s;
3411
+ }
3412
+ .pinokio-install-inline-status-spinner-dot-3 {
3413
+ top: 10px;
3414
+ left: 10px;
3415
+ animation-delay: 0.24s;
3416
+ }
3417
+ .pinokio-install-inline-status-spinner-dot-4 {
3418
+ top: 10px;
3419
+ left: 1px;
3420
+ animation-delay: 0.36s;
3021
3421
  }
3022
3422
  .pinokio-install-inline-status-copy {
3023
3423
  min-width: 0;
3024
3424
  flex: 1;
3025
3425
  }
3026
3426
  .pinokio-install-inline-status-title {
3027
- font-size: 15px;
3028
- line-height: 1.2;
3029
- font-weight: 700;
3427
+ font-size: 13px;
3428
+ line-height: 1.25;
3429
+ font-weight: 600;
3030
3430
  color: inherit;
3031
3431
  }
3032
3432
  .pinokio-install-inline-status-detail {
3033
3433
  margin-top: 4px;
3034
- color: rgba(235, 222, 197, 0.82);
3434
+ color: var(--pinokio-inline-status-detail);
3035
3435
  font-size: 12px;
3036
3436
  line-height: 1.35;
3037
3437
  word-break: break-word;
3038
3438
  }
3039
- body.dark .pinokio-install-inline-status-detail {
3040
- color: rgba(239, 233, 214, 0.76);
3041
- }
3042
3439
  .pinokio-install-inline-status-detail > *:first-child {
3043
3440
  margin-top: 0;
3044
3441
  }
@@ -3049,98 +3446,126 @@ body.dark .pinokio-install-inline-status-detail {
3049
3446
  font-family: "RobotoMono", monospace;
3050
3447
  }
3051
3448
  .pinokio-install-inline-status.is-error {
3052
- background: color-mix(in srgb, var(--pinokio-chrome-accent-bg-light) 78%, #7f1d1d);
3053
- color: #ffe2df;
3449
+ --pinokio-inline-status-bg: #fff7f7;
3450
+ --pinokio-inline-status-border: rgba(220, 38, 38, 0.18);
3451
+ --pinokio-inline-status-title: #b91c1c;
3452
+ --pinokio-inline-status-detail: rgba(127, 29, 29, 0.78);
3453
+ --pinokio-inline-status-progress: #b91c1c;
3054
3454
  }
3055
3455
  body.dark .pinokio-install-inline-status.is-error {
3056
- background: color-mix(in srgb, var(--pinokio-chrome-accent-bg-dark) 72%, #7f1d1d);
3057
- color: #ffd5d1;
3058
- }
3059
- .pinokio-install-inline-status.is-error .pinokio-install-inline-status-detail {
3060
- color: rgba(255, 226, 223, 0.88);
3456
+ --pinokio-inline-status-bg: color-mix(in srgb, #1b1c1d 88%, #7f1d1d);
3457
+ --pinokio-inline-status-border: rgba(248, 113, 113, 0.28);
3458
+ --pinokio-inline-status-title: #fecaca;
3459
+ --pinokio-inline-status-detail: rgba(255, 223, 219, 0.76);
3460
+ --pinokio-inline-status-progress: #fecaca;
3461
+ }
3462
+ @keyframes pinokio-inline-status-spinner {
3463
+ 0%,
3464
+ 100% {
3465
+ opacity: 0.34;
3466
+ transform: scale(0.82);
3467
+ }
3468
+ 45% {
3469
+ opacity: 1;
3470
+ transform: scale(1);
3471
+ }
3061
3472
  }
3062
- body.dark .pinokio-install-inline-status.is-error .pinokio-install-inline-status-detail {
3063
- color: rgba(255, 223, 219, 0.84);
3473
+ @media (prefers-reduced-motion: reduce) {
3474
+ .pinokio-install-inline-status-spinner-dot {
3475
+ animation: none;
3476
+ opacity: 0.84;
3477
+ transform: none;
3478
+ }
3064
3479
  }
3065
- .pinokio-download-close.swal2-close {
3480
+ .swal2-popup.pinokio-download-modal .pinokio-download-close.swal2-close {
3066
3481
  position: absolute !important;
3067
- top: 14px !important;
3068
- right: 14px !important;
3482
+ top: 12px !important;
3483
+ right: 12px !important;
3069
3484
  width: 28px !important;
3070
3485
  height: 28px !important;
3071
- line-height: 28px !important;
3486
+ line-height: 1 !important;
3072
3487
  margin: 0 !important;
3488
+ border-radius: 6px !important;
3489
+ color: var(--pinokio-download-muted) !important;
3073
3490
  font-size: 20px !important;
3074
- color: rgba(71, 85, 105, 0.7) !important;
3075
- border-radius: 999px !important;
3076
3491
  display: flex !important;
3077
3492
  align-items: center !important;
3078
3493
  justify-content: center !important;
3079
- transition: background 0.2s ease, color 0.2s ease !important;
3080
- }
3081
- .pinokio-download-close.swal2-close:hover {
3082
- background: rgba(148, 163, 184, 0.14) !important;
3083
- color: #0f172a !important;
3084
- }
3085
- body.dark .pinokio-download-close.swal2-close {
3086
- color: rgba(226, 232, 240, 0.72) !important;
3494
+ transition: background-color 0.14s ease, color 0.14s ease !important;
3087
3495
  }
3088
- body.dark .pinokio-download-close.swal2-close:hover {
3089
- background: rgba(148, 163, 184, 0.16) !important;
3090
- color: #f8fafc !important;
3496
+ .swal2-popup.pinokio-download-modal .pinokio-download-close.swal2-close:hover,
3497
+ .swal2-popup.pinokio-download-modal .pinokio-download-close.swal2-close:focus-visible {
3498
+ background: var(--pinokio-download-chip-bg) !important;
3499
+ color: var(--pinokio-download-text) !important;
3500
+ outline: none !important;
3091
3501
  }
3092
- .pinokio-download-validation.swal2-validation-message {
3502
+ .swal2-popup.pinokio-download-modal .pinokio-download-validation.swal2-validation-message {
3093
3503
  margin: 10px 0 0 0 !important;
3094
- padding: 10px 12px !important;
3095
- border-radius: 10px !important;
3096
- background: rgba(255, 66, 66, 0.1) !important;
3097
- border: 1px solid rgba(255, 66, 66, 0.18) !important;
3098
- border-left: 4px solid rgba(255, 66, 66, 0.5) !important;
3099
- color: rgba(15, 23, 42, 0.92) !important;
3100
- font-size: 13px !important;
3504
+ padding: 9px 10px !important;
3505
+ border-radius: 7px !important;
3506
+ background: rgba(220, 38, 38, 0.08) !important;
3507
+ border: 1px solid rgba(220, 38, 38, 0.18) !important;
3508
+ color: #b91c1c !important;
3509
+ font-size: 12px !important;
3101
3510
  line-height: 1.4 !important;
3102
3511
  justify-content: flex-start !important;
3103
- align-items: flex-start !important;
3512
+ align-items: center !important;
3513
+ text-align: left !important;
3104
3514
  }
3105
- .pinokio-download-validation.swal2-validation-message::before {
3515
+ .swal2-popup.pinokio-download-modal .pinokio-download-validation.swal2-validation-message::before {
3106
3516
  display: none !important;
3107
3517
  }
3108
- body.dark .pinokio-download-validation.swal2-validation-message {
3109
- background: rgba(255, 66, 66, 0.16) !important;
3110
- border-color: rgba(255, 66, 66, 0.24) !important;
3111
- border-left-color: rgba(255, 66, 66, 0.68) !important;
3112
- color: rgba(248, 250, 252, 0.94) !important;
3518
+ body.dark .swal2-popup.pinokio-download-modal .pinokio-download-validation.swal2-validation-message {
3519
+ background: rgba(239, 68, 68, 0.13) !important;
3520
+ border-color: rgba(248, 113, 113, 0.28) !important;
3521
+ color: #fecaca !important;
3113
3522
  }
3114
- .pinokio-download-loader.swal2-loader {
3523
+ .swal2-popup.pinokio-download-modal .pinokio-download-loader.swal2-loader {
3115
3524
  align-items: center !important;
3116
3525
  justify-content: center !important;
3117
- gap: 8px !important;
3526
+ gap: 7px !important;
3118
3527
  width: auto !important;
3119
- height: 36px !important;
3528
+ height: 32px !important;
3120
3529
  margin: 0 !important;
3121
- padding: 0 14px !important;
3530
+ padding: 0 12px !important;
3122
3531
  animation: none !important;
3123
- border: none !important;
3124
- border-radius: 10px !important;
3125
- background: royalblue !important;
3126
- color: #ffffff !important;
3532
+ border: 1px solid var(--pinokio-download-primary-bg) !important;
3533
+ border-radius: 6px !important;
3534
+ background: var(--pinokio-download-primary-bg) !important;
3535
+ color: var(--pinokio-download-primary-text) !important;
3127
3536
  }
3128
- .pinokio-download-actions.swal2-actions.swal2-loading .pinokio-download-loader.swal2-loader {
3537
+ .swal2-popup.pinokio-download-modal .pinokio-download-actions.swal2-actions.swal2-loading .pinokio-download-loader.swal2-loader {
3129
3538
  display: inline-flex !important;
3130
3539
  }
3131
- .pinokio-download-loader-spinner {
3132
- width: 14px;
3133
- height: 14px;
3134
- border: 2px solid rgba(255, 255, 255, 0.34);
3135
- border-top-color: #ffffff;
3540
+ .swal2-popup.pinokio-download-modal .pinokio-download-loader-spinner {
3541
+ width: 13px;
3542
+ height: 13px;
3543
+ border: 2px solid color-mix(in srgb, var(--pinokio-download-primary-text) 30%, transparent);
3544
+ border-top-color: var(--pinokio-download-primary-text);
3136
3545
  border-radius: 50%;
3137
3546
  animation: pinokio-download-spin 0.8s linear infinite;
3138
3547
  }
3139
- .pinokio-download-loader-text {
3548
+ .swal2-popup.pinokio-download-modal .pinokio-download-loader-text {
3140
3549
  font-size: 13px;
3141
- font-weight: 700;
3550
+ font-weight: 600;
3142
3551
  line-height: 1;
3143
3552
  }
3553
+ @media (max-width: 520px) {
3554
+ .swal2-popup.pinokio-download-modal {
3555
+ width: calc(100vw - 24px) !important;
3556
+ padding: 16px !important;
3557
+ }
3558
+ .swal2-popup.pinokio-download-modal .swal2-title {
3559
+ margin-right: 30px !important;
3560
+ }
3561
+ .swal2-popup.pinokio-download-modal .pinokio-download-actions.swal2-actions {
3562
+ flex-wrap: wrap !important;
3563
+ }
3564
+ .swal2-popup.pinokio-download-modal .pinokio-download-confirm.swal2-confirm,
3565
+ .swal2-popup.pinokio-download-modal .pinokio-download-cancel.swal2-cancel {
3566
+ flex: 1 1 118px !important;
3567
+ }
3568
+ }
3144
3569
  @keyframes pinokio-download-spin {
3145
3570
  to {
3146
3571
  transform: rotate(360deg);
@@ -3845,7 +4270,7 @@ aside .qr {
3845
4270
  display: none;
3846
4271
  }
3847
4272
 
3848
- @media only screen and (max-width: 600px) {
4273
+ @media only screen and (max-width: 768px) {
3849
4274
  html.main-sidebar-mobile-open,
3850
4275
  body.main-sidebar-mobile-open {
3851
4276
  overflow: hidden;
@@ -3910,12 +4335,12 @@ aside .qr {
3910
4335
  position: fixed;
3911
4336
  top: 0;
3912
4337
  left: 0;
3913
- bottom: 0;
4338
+ bottom: var(--main-mobile-navbar-total-height, 46px);
3914
4339
  z-index: 10000020;
3915
4340
  width: min(280px, calc(100vw - 40px));
3916
4341
  max-width: 100%;
3917
4342
  margin: 0 !important;
3918
- padding: calc(52px + env(safe-area-inset-top)) 12px calc(18px + env(safe-area-inset-bottom));
4343
+ padding: calc(12px + env(safe-area-inset-top)) 12px 18px;
3919
4344
  box-sizing: border-box;
3920
4345
  overflow-y: auto;
3921
4346
  background: var(--pinokio-sidebar-tabbar-bg);
@@ -3935,12 +4360,38 @@ aside .qr {
3935
4360
  transform: translateX(0);
3936
4361
  }
3937
4362
 
4363
+ body.main-sidebar-page .main-sidebar-nav,
4364
+ body.main-sidebar-page .main-sidebar-section {
4365
+ gap: 4px;
4366
+ }
4367
+
4368
+ body.main-sidebar-page .main-sidebar-section + .main-sidebar-section {
4369
+ margin-top: 10px;
4370
+ }
4371
+
3938
4372
  body.main-sidebar-page .main-sidebar .tab,
3939
4373
  body.main-sidebar-page .main-sidebar .tab.submenu {
4374
+ min-height: 36px;
4375
+ column-gap: 10px !important;
4376
+ padding: 6px 9px !important;
3940
4377
  font-size: 12px;
3941
4378
  }
3942
4379
 
3943
- body.main-sidebar-page .main-sidebar .caption {
4380
+ body.main-sidebar-page .main-sidebar .tab.submenu {
4381
+ padding-left: 18px !important;
4382
+ }
4383
+
4384
+ body.main-sidebar-page .main-sidebar .tab i,
4385
+ body.main-sidebar-page .main-sidebar .tab .main-sidebar-action-icon {
4386
+ font-size: 14px;
4387
+ }
4388
+
4389
+ body.main-sidebar-page .main-sidebar-section-title {
4390
+ min-height: 22px;
4391
+ padding: 6px 9px 4px;
4392
+ }
4393
+
4394
+ body.main-sidebar-page .main-sidebar .tab .caption {
3944
4395
  width: auto !important;
3945
4396
  text-align: left !important;
3946
4397
  word-wrap: normal !important;
@@ -4111,6 +4562,156 @@ aside .qr {
4111
4562
  }
4112
4563
  */
4113
4564
  }
4565
+ @media only screen and (max-width: 768px) {
4566
+ body.main-sidebar-page {
4567
+ --main-mobile-navbar-height: 46px;
4568
+ --main-mobile-navbar-total-height: calc(var(--main-mobile-navbar-height) + env(safe-area-inset-bottom));
4569
+ display: flex;
4570
+ flex-direction: column !important;
4571
+ align-items: stretch;
4572
+ min-height: 100vh;
4573
+ padding-bottom: var(--main-mobile-navbar-total-height);
4574
+ box-sizing: border-box;
4575
+ }
4576
+
4577
+ body.main-sidebar-page > header.navheader,
4578
+ body.main-sidebar-page > header.navheader:not(.minimized) {
4579
+ position: fixed !important;
4580
+ top: auto !important;
4581
+ right: 0 !important;
4582
+ bottom: 0 !important;
4583
+ left: 0 !important;
4584
+ width: 100% !important;
4585
+ min-width: 0 !important;
4586
+ max-width: none !important;
4587
+ height: var(--main-mobile-navbar-total-height);
4588
+ min-height: var(--main-mobile-navbar-total-height);
4589
+ max-height: var(--main-mobile-navbar-total-height);
4590
+ display: flex;
4591
+ flex-direction: row;
4592
+ align-items: center;
4593
+ align-self: auto;
4594
+ overflow: hidden;
4595
+ padding: 0 8px env(safe-area-inset-bottom);
4596
+ border-top: 1px solid var(--pinokio-sidebar-separator);
4597
+ border-bottom: 0;
4598
+ background: var(--pinokio-sidebar-tabbar-bg) !important;
4599
+ box-sizing: border-box;
4600
+ z-index: 10000040;
4601
+ }
4602
+
4603
+ body.main-sidebar-page > header.navheader h1,
4604
+ body.main-sidebar-page > header.navheader:not(.minimized) h1 {
4605
+ width: 100%;
4606
+ min-width: 0;
4607
+ height: var(--main-mobile-navbar-height);
4608
+ flex: 1 1 auto;
4609
+ display: flex;
4610
+ flex-direction: row;
4611
+ align-items: center;
4612
+ gap: 3px;
4613
+ overflow: hidden;
4614
+ flex-wrap: nowrap;
4615
+ }
4616
+
4617
+ body.main-sidebar-page > header.navheader .main-sidebar-header-toggle,
4618
+ body.main-sidebar-page > header.navheader #screenshot,
4619
+ body.main-sidebar-page > header.navheader #inspector,
4620
+ body.main-sidebar-page > header.navheader #mobile-link-button,
4621
+ body.main-sidebar-page > header.navheader .urlbar,
4622
+ body.main-sidebar-page > header.navheader #close-window,
4623
+ body.main-sidebar-page > header.navheader .runner,
4624
+ body.main-sidebar-page > header.navheader h1 > .path,
4625
+ body.main-sidebar-page > header.navheader h1 > .nav-button,
4626
+ body.main-sidebar-page .main-sidebar-mobile-toggle {
4627
+ display: none !important;
4628
+ }
4629
+
4630
+ body.main-sidebar-page > header.navheader .home,
4631
+ body.main-sidebar-page > header.navheader:not(.minimized) .home {
4632
+ order: 0;
4633
+ position: static;
4634
+ align-self: auto;
4635
+ flex: 0 0 38px;
4636
+ width: 38px;
4637
+ height: 38px;
4638
+ display: inline-flex;
4639
+ align-items: center;
4640
+ justify-content: center;
4641
+ padding: 0;
4642
+ border-radius: 8px;
4643
+ z-index: auto;
4644
+ }
4645
+
4646
+ body.main-sidebar-page > header.navheader .home .icon,
4647
+ body.main-sidebar-page > header.navheader:not(.minimized) .home .icon {
4648
+ width: 24px;
4649
+ height: 24px;
4650
+ display: block;
4651
+ }
4652
+
4653
+ body.main-sidebar-page > header.navheader h1 .btn2,
4654
+ body.main-sidebar-page > header.navheader:not(.minimized) h1 .btn2 {
4655
+ flex: 0 0 38px;
4656
+ width: 38px;
4657
+ height: 38px;
4658
+ min-width: 38px;
4659
+ min-height: 38px;
4660
+ display: inline-flex;
4661
+ align-items: center;
4662
+ justify-content: center;
4663
+ padding: 0;
4664
+ border-radius: 8px;
4665
+ box-sizing: border-box;
4666
+ }
4667
+
4668
+ body.main-sidebar-page > header.navheader h1 .btn2 > div {
4669
+ display: inline-flex;
4670
+ align-items: center;
4671
+ justify-content: center;
4672
+ }
4673
+
4674
+ body.main-sidebar-page > header.navheader #back {
4675
+ order: 1;
4676
+ }
4677
+
4678
+ body.main-sidebar-page > header.navheader #forward {
4679
+ order: 2;
4680
+ }
4681
+
4682
+ body.main-sidebar-page > header.navheader #refresh-page {
4683
+ order: 3;
4684
+ }
4685
+
4686
+ body.main-sidebar-page > header.navheader h1 > .flexible,
4687
+ body.main-sidebar-page > header.navheader h1 > .mobile-flexible {
4688
+ order: 10;
4689
+ display: block;
4690
+ flex: 1 1 auto;
4691
+ min-width: 8px;
4692
+ }
4693
+
4694
+ body.main-sidebar-page > header.navheader a[href="/columns"] {
4695
+ order: 20;
4696
+ }
4697
+
4698
+ body.main-sidebar-page > header.navheader a[href="/rows"] {
4699
+ order: 21;
4700
+ }
4701
+
4702
+ body.main-sidebar-page > header.navheader #new-window {
4703
+ order: 22;
4704
+ }
4705
+
4706
+ body.main-sidebar-page.main-sidebar-mobile-open .main-sidebar-mobile-backdrop {
4707
+ bottom: var(--main-mobile-navbar-total-height);
4708
+ }
4709
+ }
4710
+ header.navheader #screenshot,
4711
+ header.navheader #inspector,
4712
+ header.navheader #mobile-link-button {
4713
+ display: none !important;
4714
+ }
4114
4715
  /*
4115
4716
  body[data-agent='electron'] {
4116
4717
  padding-top: 26px;
@@ -4246,8 +4847,32 @@ header.navheader.transitioning {
4246
4847
  --logs-sidebar-width: 320px;
4247
4848
  --logs-sidebar-min-width: 220px;
4248
4849
  --logs-sidebar-max-width: 560px;
4850
+ --logs-bg: #ffffff;
4851
+ --logs-panel: #ffffff;
4852
+ --logs-soft: rgba(15, 23, 42, 0.035);
4853
+ --logs-soft-hover: rgba(15, 23, 42, 0.055);
4854
+ --logs-border: rgba(15, 23, 42, 0.1);
4855
+ --logs-border-strong: rgba(15, 23, 42, 0.16);
4856
+ --logs-text: #101828;
4857
+ --logs-muted: #667085;
4858
+ --logs-faint: rgba(102, 112, 133, 0.72);
4859
+ --logs-accent-bg: var(--pinokio-chrome-accent-bg-light, rgba(15, 23, 42, 0.84));
4860
+ --logs-accent-fg: var(--pinokio-chrome-accent-fg-light, #e1b261);
4249
4861
  position: relative;
4250
4862
  }
4863
+ body.dark #logs-root {
4864
+ --logs-bg: #1b1c1d;
4865
+ --logs-panel: #1b1c1d;
4866
+ --logs-soft: rgba(255, 255, 255, 0.04);
4867
+ --logs-soft-hover: rgba(255, 255, 255, 0.065);
4868
+ --logs-border: rgba(255, 255, 255, 0.08);
4869
+ --logs-border-strong: rgba(255, 255, 255, 0.14);
4870
+ --logs-text: #f5f7fb;
4871
+ --logs-muted: #9aa4b2;
4872
+ --logs-faint: rgba(154, 164, 178, 0.76);
4873
+ --logs-accent-bg: var(--pinokio-chrome-accent-bg-dark, rgba(255, 255, 255, 0.08));
4874
+ --logs-accent-fg: var(--pinokio-chrome-accent-fg-dark, #c2b28a);
4875
+ }
4251
4876
  .logs-page {
4252
4877
  display: flex;
4253
4878
  flex-direction: column;
@@ -4255,89 +4880,90 @@ header.navheader.transitioning {
4255
4880
  min-height: 0;
4256
4881
  height: var(--logs-pane-height, auto);
4257
4882
  overflow: hidden;
4883
+ background: var(--logs-bg);
4884
+ color: var(--logs-text);
4258
4885
  }
4259
4886
  .logs-page-header {
4260
4887
  flex: 0 0 auto;
4261
- display: flex;
4888
+ display: grid;
4889
+ grid-template-columns: minmax(0, 1fr) auto;
4262
4890
  align-items: center;
4263
4891
  justify-content: space-between;
4264
- gap: 10px;
4265
- min-height: 45px;
4266
- padding: 8px 10px;
4267
- border-bottom: 1px solid rgba(0,0,0,0.08);
4268
- background: rgba(255,255,255,0.65);
4269
- backdrop-filter: blur(6px);
4892
+ gap: 16px 24px;
4893
+ min-height: 0;
4894
+ padding: 12px 18px 14px;
4895
+ border-bottom: 1px solid var(--logs-border);
4896
+ background: transparent;
4897
+ backdrop-filter: none;
4270
4898
  }
4271
- body.dark .logs-page-header {
4272
- border-color: rgba(255,255,255,0.08);
4273
- background: rgba(15, 17, 21, 0.7);
4899
+ .logs-page-header-main {
4900
+ min-width: 0;
4901
+ max-width: 760px;
4902
+ }
4903
+ .logs-page-title {
4904
+ margin: 0;
4905
+ color: var(--logs-text);
4906
+ font-size: 22px;
4907
+ line-height: 1.12;
4908
+ letter-spacing: 0;
4909
+ font-weight: 760;
4910
+ }
4911
+ .logs-page-description {
4912
+ margin: 4px 0 0;
4913
+ max-width: 64ch;
4914
+ color: var(--logs-muted);
4915
+ font-size: 12px;
4916
+ line-height: 1.4;
4274
4917
  }
4275
4918
  .logs-page-switch {
4276
4919
  display: flex;
4277
4920
  align-items: center;
4278
4921
  min-width: 0;
4279
- }
4280
- .logs-raw-only-title {
4281
- display: inline-flex;
4282
- align-items: center;
4283
- gap: 8px;
4284
- color: rgba(15, 23, 42, 0.74);
4285
- font-size: 12px;
4286
- font-weight: 700;
4287
- }
4288
- body.dark .logs-raw-only-title {
4289
- color: rgba(248, 250, 252, 0.82);
4922
+ margin-top: 14px;
4290
4923
  }
4291
4924
  .logs-page-controls {
4292
4925
  display: flex;
4293
4926
  align-items: center;
4294
4927
  justify-content: flex-end;
4295
4928
  gap: 8px;
4296
- flex: 1 1 auto;
4297
4929
  min-width: 0;
4298
4930
  max-width: 100%;
4299
- margin-left: auto;
4931
+ margin-left: 0;
4932
+ padding-top: 0;
4300
4933
  }
4301
4934
  .logs-view-switch {
4302
4935
  display: inline-flex;
4303
4936
  align-items: center;
4304
- gap: 2px;
4305
- padding: 3px;
4306
- border: 1px solid rgba(15, 23, 42, 0.055);
4307
- border-radius: 7px;
4308
- background: rgba(15, 23, 42, 0.035);
4937
+ gap: 12px;
4938
+ padding: 0;
4939
+ border: 0;
4940
+ border-radius: 0;
4941
+ background: transparent;
4309
4942
  box-sizing: border-box;
4310
4943
  }
4311
- body.dark .logs-view-switch {
4312
- border-color: rgba(255, 255, 255, 0.075);
4313
- background: rgba(255, 255, 255, 0.045);
4314
- }
4315
4944
  .logs-view-tab {
4316
4945
  border: 0;
4317
- border-radius: 5px;
4318
- min-width: 78px;
4946
+ border-bottom: 1px solid transparent;
4947
+ border-radius: 0;
4948
+ min-width: 0;
4319
4949
  min-height: 26px;
4320
- padding: 0 10px;
4950
+ padding: 0 0 2px;
4321
4951
  background: transparent;
4322
- color: rgba(71, 85, 105, 0.85);
4952
+ color: var(--logs-muted);
4323
4953
  font-size: 12px;
4324
4954
  line-height: 1;
4325
- font-weight: 700;
4955
+ font-weight: 600;
4326
4956
  cursor: pointer;
4327
4957
  white-space: nowrap;
4328
4958
  }
4329
- .logs-view-tab.is-active {
4330
- background: rgba(255, 255, 255, 0.76);
4331
- color: #111827;
4332
- box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.055);
4333
- }
4334
- body.dark .logs-view-tab {
4335
- color: rgba(148, 163, 184, 0.8);
4959
+ .logs-view-tab:hover,
4960
+ .logs-view-tab:focus-visible {
4961
+ color: var(--logs-text);
4962
+ outline: none;
4336
4963
  }
4337
- body.dark .logs-view-tab.is-active {
4338
- background: rgba(255, 255, 255, 0.09);
4339
- color: rgba(248, 250, 252, 0.94);
4340
- box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.075);
4964
+ .logs-view-tab.is-active {
4965
+ color: var(--logs-text);
4966
+ border-color: currentColor;
4341
4967
  }
4342
4968
  .logs-action-group {
4343
4969
  display: inline-flex;
@@ -4405,19 +5031,13 @@ body.dark .logs-icon-button:focus-visible {
4405
5031
  gap: 12px;
4406
5032
  padding: 14px 16px 16px;
4407
5033
  overflow: hidden;
4408
- background: rgba(248, 250, 252, 0.56);
4409
- }
4410
- body.dark .logs-latest-view {
4411
- background: rgba(0,0,0,0.18);
5034
+ background: transparent;
4412
5035
  }
4413
5036
  .logs-report-status {
4414
5037
  min-height: 18px;
4415
5038
  font-size: 12px;
4416
5039
  line-height: 1.4;
4417
- color: rgba(15, 23, 42, 0.64);
4418
- }
4419
- body.dark .logs-report-status {
4420
- color: rgba(248, 250, 252, 0.66);
5040
+ color: var(--logs-muted);
4421
5041
  }
4422
5042
  .logs-report-status.is-error {
4423
5043
  color: #c0392b;
@@ -4436,20 +5056,14 @@ body.dark .logs-report-status {
4436
5056
  display: grid;
4437
5057
  grid-template-columns: minmax(210px, 0.36fr) minmax(260px, 1fr) auto;
4438
5058
  align-items: center;
4439
- gap: 14px;
4440
- min-height: 70px;
4441
- padding: 12px 14px;
4442
- border: 1px solid rgba(186, 133, 28, 0.34);
4443
- border-top-color: rgba(186, 133, 28, 0.48);
4444
- border-radius: 8px;
4445
- background: #fff1c2;
4446
- box-shadow: 0 -1px 0 rgba(186, 133, 28, 0.16), 0 8px 24px rgba(89, 64, 16, 0.12);
4447
- }
4448
- body.dark .logs-community-footer {
4449
- border-color: rgba(245, 189, 75, 0.28);
4450
- border-top-color: rgba(245, 189, 75, 0.42);
4451
- background: rgba(54, 40, 18, 0.96);
4452
- box-shadow: 0 -1px 0 rgba(245, 189, 75, 0.12), 0 8px 24px rgba(0,0,0,0.28);
5059
+ gap: 12px;
5060
+ min-height: 56px;
5061
+ padding: 10px 0 0;
5062
+ border: 0;
5063
+ border-top: 1px solid var(--logs-border);
5064
+ border-radius: 0;
5065
+ background: transparent;
5066
+ box-shadow: none;
4453
5067
  }
4454
5068
  .logs-community-copy {
4455
5069
  min-width: 0;
@@ -4458,27 +5072,21 @@ body.dark .logs-community-footer {
4458
5072
  display: inline-flex;
4459
5073
  align-items: center;
4460
5074
  gap: 8px;
4461
- color: rgba(54, 39, 12, 0.96);
4462
- font-size: 14px;
5075
+ color: var(--logs-text);
5076
+ font-size: 13px;
4463
5077
  line-height: 1.2;
4464
- font-weight: 850;
5078
+ font-weight: 760;
4465
5079
  }
4466
5080
  .logs-community-heading i {
4467
5081
  color: inherit;
4468
5082
  font-size: 13px;
4469
5083
  }
4470
- body.dark .logs-community-heading {
4471
- color: rgba(248, 250, 252, 0.94);
4472
- }
4473
5084
  .logs-community-subtitle {
4474
5085
  margin-top: 4px;
4475
- color: rgba(75, 56, 19, 0.72);
5086
+ color: var(--logs-muted);
4476
5087
  font-size: 11px;
4477
5088
  line-height: 1.35;
4478
- font-weight: 650;
4479
- }
4480
- body.dark .logs-community-subtitle {
4481
- color: rgba(248, 250, 252, 0.58);
5089
+ font-weight: 560;
4482
5090
  }
4483
5091
  .logs-community-title-field {
4484
5092
  min-width: 0;
@@ -4489,53 +5097,41 @@ body.dark .logs-community-subtitle {
4489
5097
  }
4490
5098
  .logs-community-title-label {
4491
5099
  min-width: 0;
4492
- color: rgba(75, 56, 19, 0.68);
5100
+ color: var(--logs-muted);
4493
5101
  font-size: 10px;
4494
5102
  line-height: 1.2;
4495
5103
  font-weight: 800;
4496
5104
  text-transform: uppercase;
4497
5105
  white-space: nowrap;
4498
5106
  }
4499
- body.dark .logs-community-title-label {
4500
- color: rgba(248, 250, 252, 0.6);
4501
- }
4502
5107
  .logs-community-title-input {
4503
5108
  min-width: 0;
4504
5109
  width: 100%;
4505
5110
  height: 34px;
4506
- border: 1px solid rgba(121, 84, 19, 0.22);
5111
+ border: 1px solid var(--logs-border-strong);
4507
5112
  border-radius: 7px;
4508
5113
  padding: 0 11px;
4509
- background: rgba(255,255,255,0.78);
4510
- color: rgba(15, 23, 42, 0.92);
5114
+ background: transparent;
5115
+ color: var(--logs-text);
4511
5116
  font-size: 12px;
4512
5117
  font-weight: 700;
4513
5118
  line-height: 34px;
4514
5119
  outline: none;
4515
5120
  }
4516
5121
  .logs-community-title-input:focus {
4517
- border-color: rgba(154, 101, 8, 0.64);
4518
- box-shadow: 0 0 0 2px rgba(186, 133, 28, 0.2);
5122
+ border-color: var(--logs-border-strong);
5123
+ box-shadow: 0 0 0 2px var(--logs-soft-hover);
4519
5124
  }
4520
5125
  .logs-community-title-input:disabled {
4521
5126
  opacity: 0.62;
4522
5127
  cursor: not-allowed;
4523
5128
  }
4524
- body.dark .logs-community-title-input {
4525
- border-color: rgba(255,255,255,0.12);
4526
- background: rgba(255,255,255,0.08);
4527
- color: rgba(248, 250, 252, 0.92);
4528
- }
4529
- body.dark .logs-community-title-input:focus {
4530
- border-color: var(--pinokio-chrome-accent-bg-dark, rgba(255,255,255,0.36));
4531
- box-shadow: 0 0 0 2px rgba(255,255,255,0.09);
4532
- }
4533
5129
  .logs-community-title-note {
4534
5130
  display: none;
4535
5131
  max-width: 130px;
4536
5132
  overflow: hidden;
4537
5133
  text-overflow: ellipsis;
4538
- color: rgba(15, 23, 42, 0.52);
5134
+ color: var(--logs-muted);
4539
5135
  font-size: 11px;
4540
5136
  line-height: 1.2;
4541
5137
  font-weight: 700;
@@ -4544,9 +5140,6 @@ body.dark .logs-community-title-input:focus {
4544
5140
  .logs-community-title-note:not(:empty) {
4545
5141
  display: inline;
4546
5142
  }
4547
- body.dark .logs-community-title-note {
4548
- color: rgba(248, 250, 252, 0.54);
4549
- }
4550
5143
  .logs-community-submit {
4551
5144
  min-width: 154px;
4552
5145
  min-height: 38px;
@@ -4559,18 +5152,13 @@ body.dark .logs-community-title-note {
4559
5152
  .logs-redaction-pane {
4560
5153
  min-width: 0;
4561
5154
  min-height: 0;
4562
- border: 1px solid rgba(15, 23, 42, 0.1);
5155
+ border: 1px solid var(--logs-border);
4563
5156
  border-radius: 8px;
4564
- background: rgba(255,255,255,0.9);
5157
+ background: transparent;
4565
5158
  display: flex;
4566
5159
  flex-direction: column;
4567
5160
  overflow: hidden;
4568
5161
  }
4569
- body.dark .logs-report-pane,
4570
- body.dark .logs-redaction-pane {
4571
- border-color: rgba(255,255,255,0.1);
4572
- background: rgba(9, 11, 16, 0.94);
4573
- }
4574
5162
  .logs-latest-pane-header {
4575
5163
  flex: 0 0 auto;
4576
5164
  display: flex;
@@ -4579,35 +5167,25 @@ body.dark .logs-redaction-pane {
4579
5167
  gap: 10px;
4580
5168
  min-height: 42px;
4581
5169
  padding: 10px 12px;
4582
- border-bottom: 1px solid rgba(15, 23, 42, 0.08);
4583
- background: rgba(248, 250, 252, 0.74);
4584
- }
4585
- body.dark .logs-latest-pane-header {
4586
- border-bottom-color: rgba(255,255,255,0.08);
4587
- background: rgba(255,255,255,0.035);
5170
+ border-bottom: 1px solid var(--logs-border);
5171
+ background: transparent;
4588
5172
  }
4589
5173
  .logs-latest-pane-eyebrow {
4590
5174
  margin: 0;
4591
- color: rgba(15, 23, 42, 0.52);
5175
+ color: var(--logs-muted);
4592
5176
  font-size: 10px;
4593
5177
  line-height: 1.2;
4594
5178
  font-weight: 700;
4595
5179
  text-transform: uppercase;
4596
5180
  letter-spacing: 0;
4597
5181
  }
4598
- body.dark .logs-latest-pane-eyebrow {
4599
- color: rgba(248, 250, 252, 0.54);
4600
- }
4601
5182
  .logs-latest-pane-title {
4602
5183
  margin-top: 3px;
4603
- color: rgba(15, 23, 42, 0.92);
5184
+ color: var(--logs-text);
4604
5185
  font-size: 13px;
4605
5186
  line-height: 1.25;
4606
5187
  font-weight: 800;
4607
5188
  }
4608
- body.dark .logs-latest-pane-title {
4609
- color: rgba(248, 250, 252, 0.92);
4610
- }
4611
5189
  .logs-review-content {
4612
5190
  flex: 1 1 auto;
4613
5191
  min-height: 0;
@@ -4618,10 +5196,7 @@ body.dark .logs-latest-pane-title {
4618
5196
  .logs-review-section {
4619
5197
  flex: 0 0 auto;
4620
5198
  padding: 12px;
4621
- border-bottom: 1px solid rgba(15, 23, 42, 0.08);
4622
- }
4623
- body.dark .logs-review-section {
4624
- border-bottom-color: rgba(255,255,255,0.08);
5199
+ border-bottom: 1px solid var(--logs-border);
4625
5200
  }
4626
5201
  .logs-review-section--redactions {
4627
5202
  flex: 1 1 auto;
@@ -4639,33 +5214,25 @@ body.dark .logs-review-section {
4639
5214
  margin-bottom: 8px;
4640
5215
  }
4641
5216
  .logs-review-section-title {
4642
- color: rgba(15, 23, 42, 0.56);
5217
+ color: var(--logs-muted);
4643
5218
  font-size: 10px;
4644
5219
  line-height: 1.2;
4645
5220
  font-weight: 800;
4646
5221
  text-transform: uppercase;
4647
5222
  letter-spacing: 0;
4648
5223
  }
4649
- body.dark .logs-review-section-title {
4650
- color: rgba(248, 250, 252, 0.56);
4651
- }
4652
5224
  .logs-review-badge {
4653
5225
  flex: 0 0 auto;
4654
- border: 1px solid rgba(15, 23, 42, 0.1);
5226
+ border: 1px solid var(--logs-border);
4655
5227
  border-radius: 999px;
4656
5228
  padding: 3px 7px;
4657
- background: rgba(15, 23, 42, 0.04);
4658
- color: rgba(15, 23, 42, 0.72);
5229
+ background: var(--logs-soft);
5230
+ color: var(--logs-text);
4659
5231
  font-size: 11px;
4660
5232
  line-height: 1;
4661
5233
  font-weight: 800;
4662
5234
  white-space: nowrap;
4663
5235
  }
4664
- body.dark .logs-review-badge {
4665
- border-color: rgba(255,255,255,0.1);
4666
- background: rgba(255,255,255,0.06);
4667
- color: rgba(248, 250, 252, 0.76);
4668
- }
4669
5236
  .logs-review-filter-button {
4670
5237
  width: 100%;
4671
5238
  margin-top: 10px;
@@ -4887,10 +5454,10 @@ body.dark .logs-report-output {
4887
5454
  font-weight: 800;
4888
5455
  }
4889
5456
  .logs-mask-token.is-selected {
4890
- border-color: rgba(37, 99, 235, 0.72);
4891
- background: rgba(219, 234, 254, 0.9);
4892
- color: rgba(30, 64, 175, 0.98);
4893
- box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.14);
5457
+ border-color: var(--logs-border-strong);
5458
+ background: var(--logs-soft-hover);
5459
+ color: var(--logs-text);
5460
+ box-shadow: 0 0 0 2px var(--logs-soft);
4894
5461
  }
4895
5462
  body.dark .logs-mask-token {
4896
5463
  border-color: rgba(251, 113, 133, 0.42);
@@ -4898,10 +5465,10 @@ body.dark .logs-mask-token {
4898
5465
  color: rgba(254, 205, 211, 0.96);
4899
5466
  }
4900
5467
  body.dark .logs-mask-token.is-selected {
4901
- border-color: rgba(147, 197, 253, 0.66);
4902
- background: rgba(30, 64, 175, 0.36);
4903
- color: rgba(219, 234, 254, 0.98);
4904
- box-shadow: 0 0 0 2px rgba(147, 197, 253, 0.14);
5468
+ border-color: var(--logs-border-strong);
5469
+ background: var(--logs-soft-hover);
5470
+ color: var(--logs-text);
5471
+ box-shadow: 0 0 0 2px var(--logs-soft);
4905
5472
  }
4906
5473
  .logs-unmasked-token {
4907
5474
  border: 1px solid rgba(15, 23, 42, 0.14);
@@ -4911,18 +5478,18 @@ body.dark .logs-mask-token.is-selected {
4911
5478
  color: inherit;
4912
5479
  }
4913
5480
  .logs-unmasked-token.is-selected {
4914
- border-color: rgba(37, 99, 235, 0.62);
4915
- background: rgba(219, 234, 254, 0.68);
4916
- box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.12);
5481
+ border-color: var(--logs-border-strong);
5482
+ background: var(--logs-soft-hover);
5483
+ box-shadow: 0 0 0 2px var(--logs-soft);
4917
5484
  }
4918
5485
  body.dark .logs-unmasked-token {
4919
5486
  border-color: rgba(255,255,255,0.14);
4920
5487
  background: rgba(255,255,255,0.06);
4921
5488
  }
4922
5489
  body.dark .logs-unmasked-token.is-selected {
4923
- border-color: rgba(147, 197, 253, 0.58);
4924
- background: rgba(30, 64, 175, 0.28);
4925
- box-shadow: 0 0 0 2px rgba(147, 197, 253, 0.12);
5490
+ border-color: var(--logs-border-strong);
5491
+ background: var(--logs-soft-hover);
5492
+ box-shadow: 0 0 0 2px var(--logs-soft);
4926
5493
  }
4927
5494
  .logs-redaction-filters {
4928
5495
  flex: 0 0 auto;
@@ -4945,18 +5512,18 @@ body.dark .logs-unmasked-token.is-selected {
4945
5512
  white-space: nowrap;
4946
5513
  }
4947
5514
  .logs-redaction-filter.is-active {
4948
- border-color: rgba(37, 99, 235, 0.32);
4949
- background: rgba(37, 99, 235, 0.08);
4950
- color: rgba(30, 64, 175, 0.96);
5515
+ border-color: var(--logs-border-strong);
5516
+ background: var(--logs-soft);
5517
+ color: var(--logs-text);
4951
5518
  }
4952
5519
  body.dark .logs-redaction-filter {
4953
5520
  border-color: rgba(255,255,255,0.1);
4954
5521
  color: rgba(248, 250, 252, 0.68);
4955
5522
  }
4956
5523
  body.dark .logs-redaction-filter.is-active {
4957
- border-color: rgba(147, 197, 253, 0.28);
4958
- background: rgba(96, 165, 250, 0.14);
4959
- color: rgba(219, 234, 254, 0.96);
5524
+ border-color: var(--logs-border-strong);
5525
+ background: var(--logs-soft);
5526
+ color: var(--logs-text);
4960
5527
  }
4961
5528
  .logs-redaction-list {
4962
5529
  flex: 1 1 auto;
@@ -5000,8 +5567,8 @@ body.dark .logs-redaction-empty {
5000
5567
  outline: none;
5001
5568
  }
5002
5569
  .logs-redaction-row.is-selected {
5003
- border-color: rgba(37, 99, 235, 0.2);
5004
- background: rgba(37, 99, 235, 0.07);
5570
+ border-color: var(--logs-border-strong);
5571
+ background: var(--logs-soft-hover);
5005
5572
  }
5006
5573
  body.dark .logs-redaction-row:hover,
5007
5574
  body.dark .logs-redaction-row:focus-visible {
@@ -5009,8 +5576,8 @@ body.dark .logs-redaction-row:focus-visible {
5009
5576
  background: rgba(255,255,255,0.05);
5010
5577
  }
5011
5578
  body.dark .logs-redaction-row.is-selected {
5012
- border-color: rgba(147, 197, 253, 0.22);
5013
- background: rgba(96, 165, 250, 0.12);
5579
+ border-color: var(--logs-border-strong);
5580
+ background: var(--logs-soft-hover);
5014
5581
  }
5015
5582
  .logs-redaction-row-top {
5016
5583
  display: flex;
@@ -5089,22 +5656,22 @@ body.dark .logs-redaction-label {
5089
5656
  transition: transform 0.16s ease;
5090
5657
  }
5091
5658
  .logs-redaction-toggle input:checked + .logs-redaction-toggle-track {
5092
- border-color: rgba(37, 99, 235, 0.36);
5093
- background: rgba(37, 99, 235, 0.88);
5659
+ border-color: var(--logs-accent-bg);
5660
+ background: var(--logs-accent-bg);
5094
5661
  }
5095
5662
  .logs-redaction-toggle input:checked + .logs-redaction-toggle-track::after {
5096
5663
  transform: translateX(12px);
5097
5664
  }
5098
5665
  .logs-redaction-toggle input:focus-visible + .logs-redaction-toggle-track {
5099
- box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.18);
5666
+ box-shadow: 0 0 0 2px var(--logs-soft-hover);
5100
5667
  }
5101
5668
  body.dark .logs-redaction-toggle-track {
5102
5669
  border-color: rgba(255,255,255,0.16);
5103
5670
  background: rgba(255,255,255,0.12);
5104
5671
  }
5105
5672
  body.dark .logs-redaction-toggle input:checked + .logs-redaction-toggle-track {
5106
- border-color: rgba(147, 197, 253, 0.34);
5107
- background: rgba(96, 165, 250, 0.72);
5673
+ border-color: var(--logs-accent-bg);
5674
+ background: var(--logs-accent-bg);
5108
5675
  }
5109
5676
  .logs-redaction-context {
5110
5677
  margin-top: 6px;
@@ -5144,15 +5711,16 @@ body.dark .logs-redaction-context {
5144
5711
  width: var(--logs-sidebar-width, 320px);
5145
5712
  min-width: var(--logs-sidebar-min-width, 220px);
5146
5713
  max-width: var(--logs-sidebar-max-width, 560px);
5147
- padding: 20px;
5714
+ padding: 16px 14px 14px;
5148
5715
  box-sizing: border-box;
5149
5716
  display: flex;
5150
5717
  flex-direction: column;
5151
- gap: 16px;
5152
- background: rgba(0,0,0,0.02);
5153
- max-height: var(--logs-pane-height, none);
5718
+ gap: 12px;
5719
+ border-right: 1px solid var(--logs-border);
5720
+ background: transparent;
5721
+ max-height: var(--logs-pane-height, none);
5154
5722
  min-height: 0;
5155
- overflow: auto;
5723
+ overflow: hidden;
5156
5724
  }
5157
5725
  #logs-root.logs-sidebar-collapsed .logs-sidebar {
5158
5726
  flex: 0 0 0;
@@ -5168,23 +5736,21 @@ body.dark .logs-redaction-context {
5168
5736
  #logs-root.logs-sidebar-collapsed .logs-tree-wrapper {
5169
5737
  border-width: 0;
5170
5738
  }
5171
- body.dark .logs-sidebar {
5172
- border-color: var(--dark-thin);
5173
- background: rgba(255,255,255,0.04);
5739
+ .logs-sidebar-header {
5740
+ flex: 0 0 auto;
5741
+ display: flex;
5742
+ align-items: flex-start;
5743
+ justify-content: space-between;
5744
+ gap: 12px;
5745
+ min-width: 0;
5174
5746
  }
5175
5747
  .logs-sidebar-header h2 {
5176
- margin: 4px 0 0;
5177
- font-size: 22px;
5178
- }
5179
- .logs-sidebar-eyebrow {
5180
5748
  margin: 0;
5181
- text-transform: uppercase;
5182
- font-size: 12px;
5183
- letter-spacing: 0.08em;
5184
- color: rgba(0,0,0,0.5);
5185
- }
5186
- body.dark .logs-sidebar-eyebrow {
5187
- color: rgba(255,255,255,0.6);
5749
+ color: var(--logs-text);
5750
+ font-size: 15px;
5751
+ line-height: 1.2;
5752
+ letter-spacing: -0.01em;
5753
+ font-weight: 760;
5188
5754
  }
5189
5755
  .logs-zip-actions {
5190
5756
  display: flex;
@@ -5192,46 +5758,41 @@ body.dark .logs-sidebar-eyebrow {
5192
5758
  gap: 10px;
5193
5759
  }
5194
5760
  .logs-zip-status {
5195
- font-size: 13px;
5196
- color: rgba(0,0,0,0.6);
5761
+ flex: 0 1 auto;
5762
+ min-width: 0;
5763
+ color: var(--logs-muted);
5764
+ font-size: 11px;
5765
+ line-height: 1.3;
5766
+ text-align: right;
5197
5767
  }
5198
5768
  .logs-zip-status.is-error {
5199
5769
  color: #c0392b;
5200
5770
  }
5201
- body.dark .logs-zip-status {
5202
- color: rgba(255,255,255,0.6);
5203
- }
5204
5771
  body.dark .logs-zip-status.is-error {
5205
5772
  color: #ff8373;
5206
5773
  }
5207
- body.dark .logs-flat-button {
5208
- color: white;
5209
- }
5210
5774
  .logs-primary-button,
5211
5775
  .logs-secondary-button,
5212
5776
  .logs-flat-button {
5213
- border: none;
5777
+ border: 1px solid var(--logs-border-strong);
5214
5778
  border-radius: 7px;
5215
- padding: 4px 10px;
5216
- font-size: 12px;
5217
- font-weight: 700;
5779
+ padding: 0 9px;
5780
+ font-size: 10px;
5781
+ font-weight: 600;
5218
5782
  line-height: 1;
5219
- min-height: 28px;
5783
+ min-height: 26px;
5220
5784
  display: inline-flex;
5221
5785
  align-items: center;
5222
- gap: 6px;
5786
+ gap: 5px;
5223
5787
  cursor: pointer;
5224
5788
  justify-content: center;
5225
5789
  white-space: nowrap;
5226
- transition: background 0.2s ease, color 0.2s ease;
5790
+ transition: background 140ms ease, border-color 140ms ease, color 140ms ease;
5227
5791
  }
5228
5792
  .logs-primary-button {
5229
- background: var(--pinokio-chrome-accent-bg-light, var(--light-link-color));
5230
- color: var(--pinokio-chrome-accent-fg-light, white);
5231
- }
5232
- body.dark .logs-primary-button {
5233
- background: var(--pinokio-chrome-accent-bg-dark, rgba(255,255,255,0.15));
5234
- color: var(--pinokio-chrome-accent-fg-dark, white);
5793
+ border-color: var(--logs-accent-bg);
5794
+ background: var(--logs-accent-bg);
5795
+ color: var(--logs-accent-fg);
5235
5796
  }
5236
5797
  .logs-primary-button:disabled,
5237
5798
  .logs-secondary-button:disabled,
@@ -5240,19 +5801,20 @@ body.dark .logs-primary-button {
5240
5801
  cursor: not-allowed;
5241
5802
  }
5242
5803
  .logs-secondary-button {
5243
- border: 1px solid var(--light-thin);
5244
5804
  background: transparent;
5245
- color: inherit;
5805
+ color: var(--logs-text);
5246
5806
  text-decoration: none;
5247
5807
  }
5248
- body.dark .logs-secondary-button {
5249
- border-color: var(--dark-thin);
5250
- }
5251
5808
  .logs-flat-button {
5252
- background: rgba(0,0,0,0.04);
5809
+ background: transparent;
5810
+ color: var(--logs-text);
5253
5811
  }
5254
- body.dark .logs-flat-button {
5255
- background: rgba(255,255,255,0.08);
5812
+ .logs-secondary-button:hover,
5813
+ .logs-secondary-button:focus-visible,
5814
+ .logs-flat-button:hover,
5815
+ .logs-flat-button:focus-visible {
5816
+ background: var(--logs-soft);
5817
+ outline: none;
5256
5818
  }
5257
5819
  .logs-primary-button.logs-community-submit {
5258
5820
  min-width: 154px;
@@ -5278,29 +5840,26 @@ body.dark .logs-flat-button {
5278
5840
  gap: 6px;
5279
5841
  }
5280
5842
  .logs-tree-hint {
5281
- margin: 0;
5843
+ margin-top: 3px;
5844
+ color: var(--logs-muted);
5282
5845
  font-size: 12px;
5283
- color: rgba(0,0,0,0.5);
5284
- }
5285
- body.dark .logs-tree-hint {
5286
- color: rgba(255,255,255,0.6);
5846
+ line-height: 1.35;
5287
5847
  }
5288
5848
  .logs-tree-wrapper {
5289
5849
  flex: 1;
5290
- border: 1px solid var(--light-thin);
5291
- border-radius: 14px;
5292
- padding: 10px;
5850
+ min-height: 0;
5851
+ border: 0;
5852
+ border-top: 1px solid var(--logs-border);
5853
+ border-radius: 0;
5854
+ padding: 10px 0 0;
5293
5855
  overflow: hidden;
5294
- background: white;
5295
- }
5296
- body.dark .logs-tree-wrapper {
5297
- border-color: var(--dark-thin);
5298
- background: rgba(255,255,255,0.02);
5856
+ background: transparent;
5299
5857
  }
5300
5858
  .logs-tree {
5301
5859
  max-height: 100%;
5302
5860
  overflow-y: auto;
5303
- font-size: 14px;
5861
+ padding-right: 2px;
5862
+ font-size: 13px;
5304
5863
  }
5305
5864
  .logs-branch {
5306
5865
  margin: 0;
@@ -5308,11 +5867,14 @@ body.dark .logs-tree-wrapper {
5308
5867
  .logs-branch-summary {
5309
5868
  display: flex;
5310
5869
  align-items: center;
5311
- gap: 8px;
5312
- padding: 4px 6px;
5870
+ gap: 7px;
5871
+ min-height: 28px;
5872
+ padding: 0 7px;
5313
5873
  cursor: pointer;
5314
- border-radius: 8px;
5874
+ border-radius: 6px;
5315
5875
  list-style: none;
5876
+ color: var(--logs-text);
5877
+ font-weight: 650;
5316
5878
  }
5317
5879
  .logs-branch-summary::-webkit-details-marker {
5318
5880
  display: none;
@@ -5323,86 +5885,80 @@ body.dark .logs-tree-wrapper {
5323
5885
  .logs-branch-chevron {
5324
5886
  width: 14px;
5325
5887
  text-align: center;
5326
- color: rgba(0,0,0,0.4);
5888
+ color: var(--logs-faint);
5327
5889
  transition: transform 0.2s ease;
5328
5890
  }
5329
- body.dark .logs-branch-chevron {
5330
- color: rgba(255,255,255,0.4);
5891
+ .logs-branch-summary:hover,
5892
+ .logs-branch-summary:focus-visible {
5893
+ background: var(--logs-soft);
5894
+ outline: none;
5331
5895
  }
5332
5896
  .logs-branch-icon {
5333
- color: royalblue;
5334
- }
5335
- body.dark .logs-branch-icon {
5336
- color: rgba(255,255,255,0.7);
5897
+ color: var(--logs-muted);
5337
5898
  }
5338
5899
  .logs-children {
5339
- margin-left: 18px;
5340
- padding-left: 12px;
5341
- border-left: 1px solid rgba(0,0,0,0.08);
5342
- }
5343
- body.dark .logs-children {
5344
- border-color: rgba(255,255,255,0.08);
5900
+ margin-left: 15px;
5901
+ padding-left: 10px;
5902
+ border-left: 1px solid var(--logs-border);
5345
5903
  }
5346
5904
  .logs-tree-message {
5905
+ color: var(--logs-muted);
5347
5906
  font-size: 12px;
5348
5907
  padding: 4px 0;
5349
- color: rgba(0,0,0,0.6);
5350
5908
  }
5351
5909
  .logs-tree-message.is-error {
5352
5910
  color: #c0392b;
5353
5911
  }
5354
- body.dark .logs-tree-message {
5355
- color: rgba(255,255,255,0.6);
5356
- }
5357
5912
  body.dark .logs-tree-message.is-error {
5358
5913
  color: #ff8373;
5359
5914
  }
5360
- body.dark .logs-file {
5361
- color: white;
5362
- }
5363
5915
  .logs-file {
5364
5916
  width: 100%;
5365
- border: none;
5366
- background: none;
5917
+ border: 1px solid transparent;
5918
+ background: transparent;
5919
+ color: var(--logs-text);
5367
5920
  text-align: left;
5368
- padding: 4px 6px;
5369
- border-radius: 8px;
5921
+ min-height: 28px;
5922
+ padding: 0 7px;
5923
+ border-radius: 6px;
5370
5924
  display: flex;
5371
5925
  align-items: center;
5372
- gap: 8px;
5926
+ gap: 7px;
5373
5927
  cursor: pointer;
5374
- font-size: 14px;
5928
+ font-size: 13px;
5929
+ font-weight: 560;
5930
+ }
5931
+ .logs-file:hover {
5932
+ background: var(--logs-soft);
5375
5933
  }
5376
- .logs-file:hover,
5377
5934
  .logs-file.is-active {
5378
- background: royalblue;
5935
+ border-color: var(--logs-border-strong);
5936
+ background: var(--logs-soft-hover);
5937
+ color: var(--logs-text);
5938
+ font-weight: 720;
5379
5939
  }
5380
- body.dark .logs-file:hover,
5381
- body.dark .logs-file.is-active {
5382
- background: royalblue;
5940
+ .logs-file:focus-visible {
5941
+ border-color: var(--logs-border-strong);
5942
+ outline: none;
5383
5943
  }
5384
5944
  .logs-file-icon {
5385
- color: rgba(0,0,0,0.5);
5386
- }
5387
- body.dark .logs-file-icon {
5388
- color: rgba(255,255,255,0.5);
5945
+ color: var(--logs-muted);
5389
5946
  }
5390
5947
  .logs-file-meta {
5391
5948
  margin-left: auto;
5392
- font-size: 12px;
5393
- color: rgba(0,0,0,0.5);
5394
- }
5395
- body.dark .logs-file-meta {
5396
- color: rgba(255,255,255,0.5);
5949
+ color: var(--logs-muted);
5950
+ font-size: 11px;
5951
+ font-weight: 520;
5397
5952
  }
5398
5953
  .logs-main {
5399
5954
  flex: 1;
5400
5955
  min-width: 0;
5401
5956
  min-height: 0;
5402
5957
  max-height: var(--logs-pane-height, none);
5403
- overflow: auto;
5958
+ overflow: hidden;
5404
5959
  display: flex;
5405
5960
  flex-direction: column;
5961
+ background: transparent;
5406
5962
  }
5407
5963
  #logs-root.logs-sidebar-collapsed .logs-main {
5408
5964
  max-height: var(--logs-pane-height, none);
@@ -5413,9 +5969,7 @@ body.dark .logs-file-meta {
5413
5969
  flex-direction: column;
5414
5970
  flex: 1;
5415
5971
  min-height: 0;
5416
- }
5417
- body.dark .logs-viewer-panel {
5418
- background: rgba(255,255,255,0.03);
5972
+ background: transparent;
5419
5973
  }
5420
5974
  .logs-page--error {
5421
5975
  align-items: center;
@@ -5450,128 +6004,129 @@ body.dark .logs-empty-icon {
5450
6004
  margin-top: 20px;
5451
6005
  }
5452
6006
  .logs-resizer {
5453
- flex: 0 0 12px;
5454
- margin: 0 6px;
6007
+ flex: 0 0 10px;
6008
+ margin: 0;
5455
6009
  cursor: col-resize;
5456
6010
  display: flex;
5457
6011
  align-items: center;
5458
6012
  justify-content: center;
5459
6013
  position: relative;
5460
6014
  touch-action: none;
6015
+ background: transparent;
5461
6016
  }
5462
6017
  .logs-resizer::before {
5463
6018
  content: '';
5464
- width: 4px;
5465
- border-radius: 999px;
5466
- background: rgba(0,0,0,0.15);
5467
- height: 60%;
5468
- }
5469
- body.dark .logs-resizer::before {
5470
- background: rgba(255,255,255,0.25);
6019
+ width: 1px;
6020
+ border-radius: 0;
6021
+ background: var(--logs-border);
6022
+ height: 100%;
5471
6023
  }
5472
6024
  #logs-root.logs-sidebar-collapsed .logs-resizer::before {
5473
6025
  display: none;
5474
6026
  }
5475
6027
  .logs-resizer-toggle {
5476
6028
  position: absolute;
5477
- top: 8px;
6029
+ top: 10px;
5478
6030
  left: 50%;
5479
6031
  transform: translate(-50%, 0);
5480
- width: 28px;
5481
- height: 28px;
5482
- border: none;
5483
- background: rgba(0,0,0,0.05);
5484
- color: rgba(0,0,0,0.6);
6032
+ width: 24px;
6033
+ height: 24px;
6034
+ border: 1px solid var(--logs-border);
6035
+ border-radius: 6px;
6036
+ background: var(--logs-bg);
6037
+ color: var(--logs-muted);
5485
6038
  display: inline-flex;
5486
6039
  align-items: center;
5487
6040
  justify-content: center;
5488
6041
  pointer-events: auto;
5489
6042
  cursor: pointer;
5490
- transition: background 0.2s ease, color 0.2s ease;
5491
- }
5492
- .logs-resizer:hover .logs-resizer-toggle {
5493
- background: royalblue;
5494
- color: #fff;
5495
- }
5496
- body.dark .logs-resizer-toggle {
5497
- background: rgba(255,255,255,0.08);
5498
- color: rgba(255,255,255,0.75);
6043
+ font-size: 11px;
6044
+ transition: background 140ms ease, border-color 140ms ease, color 140ms ease;
5499
6045
  }
6046
+ .logs-resizer:hover .logs-resizer-toggle,
6047
+ .logs-resizer-toggle:focus-visible,
5500
6048
  body.dark .logs-resizer:hover .logs-resizer-toggle {
5501
- background: rgba(255,255,255,0.18);
5502
- color: rgba(255,255,255,0.95);
6049
+ border-color: var(--logs-border-strong);
6050
+ background: var(--logs-soft);
6051
+ color: var(--logs-text);
6052
+ outline: none;
5503
6053
  }
5504
6054
  #logs-root.logs-sidebar-collapsed .logs-resizer {
5505
- margin-left: 12px;
6055
+ margin-left: 0;
5506
6056
  }
5507
6057
  #logs-root.logs-sidebar-collapsed .logs-resizer-toggle i {
5508
6058
  transform: rotate(180deg);
5509
6059
  }
5510
6060
  .logs-viewer-header {
5511
- padding: 16px;
5512
- border-bottom: 1px solid var(--light-thin);
6061
+ flex: 0 0 auto;
6062
+ min-height: 52px;
6063
+ padding: 10px 16px;
6064
+ border-bottom: 1px solid var(--logs-border);
5513
6065
  display: flex;
6066
+ align-items: center;
5514
6067
  justify-content: space-between;
5515
- gap: 16px;
5516
- flex-wrap: wrap;
5517
- }
5518
- body.dark .logs-viewer-header {
5519
- border-color: var(--dark-thin);
6068
+ gap: 14px;
6069
+ flex-wrap: nowrap;
5520
6070
  }
5521
6071
  .logs-viewer-eyebrow {
5522
6072
  margin: 0;
5523
6073
  text-transform: uppercase;
5524
- font-size: 12px;
6074
+ color: var(--logs-muted);
6075
+ font-size: 10px;
6076
+ font-weight: 760;
5525
6077
  letter-spacing: 0.08em;
5526
- color: rgba(0,0,0,0.5);
5527
- }
5528
- body.dark .logs-viewer-eyebrow {
5529
- color: rgba(255,255,255,0.6);
6078
+ line-height: 1.2;
5530
6079
  }
5531
6080
  .logs-viewer-path {
6081
+ margin-top: 2px;
6082
+ color: var(--logs-text);
5532
6083
  font-family: 'JetBrains Mono', 'SFMono-Regular', Consolas, monospace;
5533
- font-size: 13px;
6084
+ font-size: 12px;
6085
+ line-height: 1.35;
5534
6086
  word-break: break-all;
5535
6087
  }
5536
6088
  .logs-viewer-controls {
6089
+ flex: 0 0 auto;
5537
6090
  display: flex;
5538
6091
  align-items: center;
5539
- gap: 10px;
6092
+ gap: 8px;
5540
6093
  }
5541
6094
  .logs-autoscroll-toggle {
5542
6095
  display: inline-flex;
5543
6096
  align-items: center;
5544
- gap: 6px;
5545
- font-size: 13px;
6097
+ gap: 7px;
6098
+ color: var(--logs-text);
6099
+ font-size: 12px;
6100
+ font-weight: 560;
5546
6101
  cursor: pointer;
6102
+ white-space: nowrap;
5547
6103
  }
5548
6104
  .logs-autoscroll-toggle input {
5549
- accent-color: royalblue;
6105
+ accent-color: var(--logs-accent-bg);
5550
6106
  }
5551
6107
  .logs-viewer-status {
6108
+ flex: 0 0 auto;
6109
+ min-height: 33px;
5552
6110
  padding: 8px 16px;
5553
- font-size: 13px;
5554
- color: rgba(0,0,0,0.6);
5555
- border-bottom: 1px solid var(--light-thin);
5556
- }
5557
- body.dark .logs-viewer-status {
5558
- color: rgba(255,255,255,0.7);
5559
- border-color: var(--dark-thin);
6111
+ color: var(--logs-muted);
6112
+ font-size: 12px;
6113
+ line-height: 1.35;
6114
+ border-bottom: 1px solid var(--logs-border);
5560
6115
  }
5561
6116
  .logs-viewer-output {
5562
6117
  flex: 1;
6118
+ min-height: 0;
5563
6119
  margin: 0;
5564
6120
  padding: 16px;
5565
6121
  font-family: 'JetBrains Mono', 'SFMono-Regular', Consolas, monospace;
5566
6122
  font-size: 13px;
6123
+ line-height: 1.45;
5567
6124
  white-space: pre-wrap;
5568
6125
  word-break: break-word;
5569
- overflow-y: auto;
5570
- background: rgba(0,0,0,0.02);
5571
- }
5572
- body.dark .logs-viewer-output {
5573
- background: rgba(0,0,0,0.3);
5574
- color: rgba(255,255,255,0.85);
6126
+ overflow: auto;
6127
+ border: 0;
6128
+ background: transparent;
6129
+ color: var(--logs-text);
5575
6130
  }
5576
6131
  #status-window {
5577
6132
  display: none !important;
@@ -5626,16 +6181,18 @@ body.dark .logs-viewer-output {
5626
6181
  }
5627
6182
  @media (max-width: 720px) {
5628
6183
  .logs-page-header {
5629
- align-items: flex-start;
5630
- flex-direction: column;
6184
+ grid-template-columns: 1fr;
6185
+ gap: 14px;
6186
+ padding: 4px 14px 16px;
5631
6187
  }
5632
6188
  .logs-page-switch {
5633
6189
  width: 100%;
5634
6190
  }
5635
6191
  .logs-page-controls {
5636
- justify-content: flex-end;
6192
+ justify-content: flex-start;
5637
6193
  flex-wrap: wrap;
5638
6194
  width: 100%;
6195
+ padding-top: 0;
5639
6196
  }
5640
6197
  .logs-view-switch {
5641
6198
  width: 100%;
@@ -5669,3 +6226,380 @@ body.dark .logs-viewer-output {
5669
6226
  justify-content: space-between;
5670
6227
  }
5671
6228
  }
6229
+
6230
+ /* Minimal SweetAlert normalization for generic QR/form modals. */
6231
+ .swal2-popup.min-popup,
6232
+ .swal2-popup.min-popup2 {
6233
+ width: min(360px, calc(100vw - 32px)) !important;
6234
+ padding: 20px !important;
6235
+ border: 1px solid rgba(24, 24, 27, 0.12) !important;
6236
+ border-radius: 8px !important;
6237
+ background: #ffffff !important;
6238
+ color: #18181b !important;
6239
+ box-shadow: 0 18px 50px rgba(15, 23, 42, 0.16) !important;
6240
+ }
6241
+
6242
+ body.dark .swal2-popup.min-popup,
6243
+ body.dark .swal2-popup.min-popup2 {
6244
+ border-color: rgba(255, 255, 255, 0.1) !important;
6245
+ background: #1b1c1d !important;
6246
+ color: rgba(250, 250, 250, 0.94) !important;
6247
+ box-shadow: 0 24px 72px rgba(0, 0, 0, 0.42) !important;
6248
+ }
6249
+
6250
+ .swal2-title.min-title {
6251
+ color: inherit !important;
6252
+ font-size: 16px !important;
6253
+ line-height: 1.25 !important;
6254
+ font-weight: 600 !important;
6255
+ margin: 0 0 12px !important;
6256
+ padding: 0 !important;
6257
+ }
6258
+
6259
+ .min-modal {
6260
+ color: #71717a !important;
6261
+ font-size: 13px !important;
6262
+ line-height: 1.45 !important;
6263
+ }
6264
+
6265
+ body.dark .min-modal {
6266
+ color: rgba(229, 231, 235, 0.62) !important;
6267
+ }
6268
+
6269
+ .swal2-popup.min-popup a,
6270
+ .swal2-popup.min-popup2 a {
6271
+ color: inherit !important;
6272
+ text-decoration-color: rgba(82, 82, 91, 0.35);
6273
+ }
6274
+
6275
+ .swal2-popup.min-popup img,
6276
+ .swal2-popup.min-popup2 img {
6277
+ max-width: 180px;
6278
+ border-radius: 6px;
6279
+ }
6280
+
6281
+ .swal2-popup.pinokio-input-modal {
6282
+ --pinokio-input-modal-surface: #ffffff;
6283
+ --pinokio-input-modal-surface-muted: rgba(24, 24, 27, 0.03);
6284
+ --pinokio-input-modal-border: rgba(24, 24, 27, 0.12);
6285
+ --pinokio-input-modal-border-strong: rgba(24, 24, 27, 0.16);
6286
+ --pinokio-input-modal-text: #18181b;
6287
+ --pinokio-input-modal-title: #18181b;
6288
+ --pinokio-input-modal-muted: #71717a;
6289
+ --pinokio-input-modal-shadow: 0 18px 50px rgba(15, 23, 42, 0.16);
6290
+ --pinokio-input-modal-focus-border: rgba(24, 24, 27, 0.42);
6291
+ --pinokio-input-modal-focus-ring: rgba(24, 24, 27, 0.12);
6292
+ border-radius: 8px !important;
6293
+ }
6294
+
6295
+ body.dark .swal2-popup.pinokio-input-modal {
6296
+ --pinokio-input-modal-surface: #1b1c1d;
6297
+ --pinokio-input-modal-surface-muted: rgba(255, 255, 255, 0.04);
6298
+ --pinokio-input-modal-border: rgba(255, 255, 255, 0.1);
6299
+ --pinokio-input-modal-border-strong: rgba(255, 255, 255, 0.14);
6300
+ --pinokio-input-modal-text: rgba(250, 250, 250, 0.94);
6301
+ --pinokio-input-modal-title: rgba(250, 250, 250, 0.94);
6302
+ --pinokio-input-modal-muted: rgba(229, 231, 235, 0.62);
6303
+ --pinokio-input-modal-shadow: 0 24px 72px rgba(0, 0, 0, 0.42);
6304
+ --pinokio-input-modal-focus-border: rgba(255, 255, 255, 0.38);
6305
+ --pinokio-input-modal-focus-ring: rgba(255, 255, 255, 0.14);
6306
+ }
6307
+
6308
+ .pinokio-input-modal-checkbox-input {
6309
+ accent-color: var(--pinokio-input-modal-title) !important;
6310
+ }
6311
+
6312
+ .swal2-popup.pinokio-input-modal .pinokio-input-modal-control {
6313
+ border-color: var(--pinokio-input-modal-border-strong) !important;
6314
+ background: var(--pinokio-input-modal-surface-muted) !important;
6315
+ color: var(--pinokio-input-modal-text) !important;
6316
+ }
6317
+
6318
+ .swal2-popup.pinokio-input-modal .pinokio-input-modal-control:focus {
6319
+ border-color: var(--pinokio-input-modal-focus-border) !important;
6320
+ background: var(--pinokio-input-modal-surface) !important;
6321
+ box-shadow: 0 0 0 3px var(--pinokio-input-modal-focus-ring) !important;
6322
+ }
6323
+
6324
+ .pinokio-input-modal-actions.swal2-actions .swal2-loader {
6325
+ border-color: var(--pinokio-input-modal-title) transparent var(--pinokio-input-modal-title) transparent !important;
6326
+ }
6327
+
6328
+ .pinokio-input-modal-confirm.swal2-confirm {
6329
+ border-color: var(--pinokio-input-modal-title) !important;
6330
+ background: var(--pinokio-input-modal-title) !important;
6331
+ color: var(--pinokio-input-modal-surface) !important;
6332
+ }
6333
+
6334
+ .pinokio-input-modal-confirm.swal2-confirm:hover,
6335
+ .pinokio-input-modal-confirm.swal2-confirm:focus-visible {
6336
+ border-color: var(--pinokio-input-modal-text) !important;
6337
+ background: var(--pinokio-input-modal-text) !important;
6338
+ color: var(--pinokio-input-modal-surface) !important;
6339
+ outline: none !important;
6340
+ }
6341
+
6342
+ .pinokio-modern-close.swal2-close {
6343
+ width: 28px !important;
6344
+ height: 28px !important;
6345
+ margin: 0 !important;
6346
+ border-radius: 6px !important;
6347
+ border: 1px solid transparent !important;
6348
+ background: transparent !important;
6349
+ color: #71717a !important;
6350
+ font-family: inherit !important;
6351
+ font-size: 18px !important;
6352
+ line-height: 1 !important;
6353
+ box-shadow: none !important;
6354
+ }
6355
+
6356
+ body.dark .pinokio-modern-close.swal2-close {
6357
+ color: rgba(229, 231, 235, 0.58) !important;
6358
+ }
6359
+
6360
+ .pinokio-modern-close.swal2-close:hover,
6361
+ .pinokio-modern-close.swal2-close:focus-visible {
6362
+ background: rgba(24, 24, 27, 0.06) !important;
6363
+ color: #18181b !important;
6364
+ outline: none !important;
6365
+ }
6366
+
6367
+ body.dark .pinokio-modern-close.swal2-close:hover,
6368
+ body.dark .pinokio-modern-close.swal2-close:focus-visible {
6369
+ background: rgba(255, 255, 255, 0.07) !important;
6370
+ color: rgba(250, 250, 250, 0.94) !important;
6371
+ }
6372
+
6373
+ /* Baseline for older SweetAlert dialogs that do not yet opt into a named modal class. */
6374
+ .swal2-popup.swal2-modal:not(.loader-popup):not(.pinokio-download-modal):not(.pinokio-modern-modal):not(.pinokio-input-modal):not(.min-popup):not(.min-popup2):not(.backup-modal-shell) {
6375
+ width: min(520px, calc(100vw - 32px)) !important;
6376
+ padding: 20px !important;
6377
+ border: 1px solid rgba(24, 24, 27, 0.12) !important;
6378
+ border-radius: 8px !important;
6379
+ background: #ffffff !important;
6380
+ color: #18181b !important;
6381
+ box-shadow: 0 18px 50px rgba(15, 23, 42, 0.16) !important;
6382
+ }
6383
+
6384
+ body.dark .swal2-popup.swal2-modal:not(.loader-popup):not(.pinokio-download-modal):not(.pinokio-modern-modal):not(.pinokio-input-modal):not(.min-popup):not(.min-popup2):not(.backup-modal-shell) {
6385
+ border-color: rgba(255, 255, 255, 0.1) !important;
6386
+ background: #1b1c1d !important;
6387
+ color: rgba(250, 250, 250, 0.94) !important;
6388
+ box-shadow: 0 24px 72px rgba(0, 0, 0, 0.42) !important;
6389
+ }
6390
+
6391
+ .swal2-popup.swal2-modal:not(.loader-popup):not(.pinokio-download-modal):not(.pinokio-modern-modal):not(.pinokio-input-modal):not(.min-popup):not(.min-popup2):not(.backup-modal-shell) .swal2-title {
6392
+ margin: 0 32px 12px 0 !important;
6393
+ padding: 0 !important;
6394
+ text-align: left !important;
6395
+ color: inherit !important;
6396
+ font-size: 16px !important;
6397
+ line-height: 1.25 !important;
6398
+ font-weight: 600 !important;
6399
+ letter-spacing: 0 !important;
6400
+ }
6401
+
6402
+ .swal2-popup.swal2-modal:not(.loader-popup):not(.pinokio-download-modal):not(.pinokio-modern-modal):not(.pinokio-input-modal):not(.min-popup):not(.min-popup2):not(.backup-modal-shell) .swal2-title > div {
6403
+ justify-content: flex-start !important;
6404
+ padding: 0 !important;
6405
+ }
6406
+
6407
+ .swal2-popup.swal2-modal:not(.loader-popup):not(.pinokio-download-modal):not(.pinokio-modern-modal):not(.pinokio-input-modal):not(.min-popup):not(.min-popup2):not(.backup-modal-shell) .swal2-html-container {
6408
+ margin: 0 !important;
6409
+ padding: 0 !important;
6410
+ text-align: left !important;
6411
+ color: #71717a !important;
6412
+ font-size: 13px !important;
6413
+ line-height: 1.45 !important;
6414
+ }
6415
+
6416
+ body.dark .swal2-popup.swal2-modal:not(.loader-popup):not(.pinokio-download-modal):not(.pinokio-modern-modal):not(.pinokio-input-modal):not(.min-popup):not(.min-popup2):not(.backup-modal-shell) .swal2-html-container {
6417
+ color: rgba(229, 231, 235, 0.62) !important;
6418
+ }
6419
+
6420
+ .swal2-popup.swal2-modal:not(.loader-popup):not(.pinokio-download-modal):not(.pinokio-modern-modal):not(.pinokio-input-modal):not(.min-popup):not(.min-popup2):not(.backup-modal-shell) .swal2-close {
6421
+ width: 28px !important;
6422
+ height: 28px !important;
6423
+ margin: 0 !important;
6424
+ border-radius: 6px !important;
6425
+ border: 1px solid transparent !important;
6426
+ color: #71717a !important;
6427
+ font-family: inherit !important;
6428
+ font-size: 18px !important;
6429
+ line-height: 1 !important;
6430
+ }
6431
+
6432
+ .swal2-popup.swal2-modal:not(.loader-popup):not(.pinokio-download-modal):not(.pinokio-modern-modal):not(.pinokio-input-modal):not(.min-popup):not(.min-popup2):not(.backup-modal-shell) .swal2-close:hover,
6433
+ .swal2-popup.swal2-modal:not(.loader-popup):not(.pinokio-download-modal):not(.pinokio-modern-modal):not(.pinokio-input-modal):not(.min-popup):not(.min-popup2):not(.backup-modal-shell) .swal2-close:focus-visible {
6434
+ background: rgba(24, 24, 27, 0.06) !important;
6435
+ color: #18181b !important;
6436
+ box-shadow: none !important;
6437
+ }
6438
+
6439
+ body.dark .swal2-popup.swal2-modal:not(.loader-popup):not(.pinokio-download-modal):not(.pinokio-modern-modal):not(.pinokio-input-modal):not(.min-popup):not(.min-popup2):not(.backup-modal-shell) .swal2-close {
6440
+ color: rgba(229, 231, 235, 0.58) !important;
6441
+ }
6442
+
6443
+ body.dark .swal2-popup.swal2-modal:not(.loader-popup):not(.pinokio-download-modal):not(.pinokio-modern-modal):not(.pinokio-input-modal):not(.min-popup):not(.min-popup2):not(.backup-modal-shell) .swal2-close:hover,
6444
+ body.dark .swal2-popup.swal2-modal:not(.loader-popup):not(.pinokio-download-modal):not(.pinokio-modern-modal):not(.pinokio-input-modal):not(.min-popup):not(.min-popup2):not(.backup-modal-shell) .swal2-close:focus-visible {
6445
+ background: rgba(255, 255, 255, 0.07) !important;
6446
+ color: rgba(250, 250, 250, 0.94) !important;
6447
+ }
6448
+
6449
+ .swal2-popup.swal2-modal:not(.loader-popup):not(.pinokio-download-modal):not(.pinokio-modern-modal):not(.pinokio-input-modal):not(.min-popup):not(.min-popup2):not(.backup-modal-shell) .swal2-actions {
6450
+ justify-content: flex-end !important;
6451
+ gap: 8px !important;
6452
+ margin: 16px 0 0 !important;
6453
+ padding: 0 !important;
6454
+ }
6455
+
6456
+ .swal2-popup.swal2-modal:not(.loader-popup):not(.pinokio-download-modal):not(.pinokio-modern-modal):not(.pinokio-input-modal):not(.min-popup):not(.min-popup2):not(.backup-modal-shell) .swal2-styled {
6457
+ min-height: 32px !important;
6458
+ margin: 0 !important;
6459
+ padding: 0 12px !important;
6460
+ border-radius: 6px !important;
6461
+ border: 1px solid rgba(24, 24, 27, 0.12) !important;
6462
+ box-shadow: none !important;
6463
+ font-size: 13px !important;
6464
+ font-weight: 600 !important;
6465
+ }
6466
+
6467
+ .swal2-popup.swal2-modal:not(.loader-popup):not(.pinokio-download-modal):not(.pinokio-modern-modal):not(.pinokio-input-modal):not(.min-popup):not(.min-popup2):not(.backup-modal-shell) .swal2-confirm.swal2-styled {
6468
+ border-color: #18181b !important;
6469
+ background: #18181b !important;
6470
+ color: #ffffff !important;
6471
+ }
6472
+
6473
+ body.dark .swal2-popup.swal2-modal:not(.loader-popup):not(.pinokio-download-modal):not(.pinokio-modern-modal):not(.pinokio-input-modal):not(.min-popup):not(.min-popup2):not(.backup-modal-shell) .swal2-confirm.swal2-styled {
6474
+ border-color: rgba(250, 250, 250, 0.94) !important;
6475
+ background: rgba(250, 250, 250, 0.94) !important;
6476
+ color: #1b1c1d !important;
6477
+ }
6478
+
6479
+ .swal2-popup.swal2-modal:not(.loader-popup):not(.pinokio-download-modal):not(.pinokio-modern-modal):not(.pinokio-input-modal):not(.min-popup):not(.min-popup2):not(.backup-modal-shell) .swal2-cancel.swal2-styled {
6480
+ border-color: rgba(24, 24, 27, 0.12) !important;
6481
+ background: transparent !important;
6482
+ color: #52525b !important;
6483
+ }
6484
+
6485
+ body.dark .swal2-popup.swal2-modal:not(.loader-popup):not(.pinokio-download-modal):not(.pinokio-modern-modal):not(.pinokio-input-modal):not(.min-popup):not(.min-popup2):not(.backup-modal-shell) .swal2-cancel.swal2-styled {
6486
+ border-color: rgba(255, 255, 255, 0.1) !important;
6487
+ color: rgba(229, 231, 235, 0.7) !important;
6488
+ }
6489
+
6490
+ .swal2-popup.swal2-modal:not(.loader-popup):not(.pinokio-download-modal):not(.pinokio-modern-modal):not(.pinokio-input-modal):not(.min-popup):not(.min-popup2):not(.backup-modal-shell) .folder-rows {
6491
+ display: grid;
6492
+ gap: 10px;
6493
+ min-width: 0;
6494
+ }
6495
+
6496
+ .swal2-popup.swal2-modal:not(.loader-popup):not(.pinokio-download-modal):not(.pinokio-modern-modal):not(.pinokio-input-modal):not(.min-popup):not(.min-popup2):not(.backup-modal-shell) .folder-row {
6497
+ display: grid;
6498
+ gap: 6px;
6499
+ }
6500
+
6501
+ .swal2-popup.swal2-modal:not(.loader-popup):not(.pinokio-download-modal):not(.pinokio-modern-modal):not(.pinokio-input-modal):not(.min-popup):not(.min-popup2):not(.backup-modal-shell) .folder-row label {
6502
+ padding: 0 !important;
6503
+ color: inherit !important;
6504
+ font-size: 12px !important;
6505
+ line-height: 1.35 !important;
6506
+ font-weight: 600 !important;
6507
+ }
6508
+
6509
+ .swal2-popup.swal2-modal:not(.loader-popup):not(.pinokio-download-modal):not(.pinokio-modern-modal):not(.pinokio-input-modal):not(.min-popup):not(.min-popup2):not(.backup-modal-shell) .field-row {
6510
+ display: flex;
6511
+ align-items: center;
6512
+ gap: 8px;
6513
+ }
6514
+
6515
+ .swal2-popup.swal2-modal:not(.loader-popup):not(.pinokio-download-modal):not(.pinokio-modern-modal):not(.pinokio-input-modal):not(.min-popup):not(.min-popup2):not(.backup-modal-shell) .field-row label {
6516
+ flex: 0 0 auto;
6517
+ color: #71717a !important;
6518
+ font-weight: 500 !important;
6519
+ }
6520
+
6521
+ body.dark .swal2-popup.swal2-modal:not(.loader-popup):not(.pinokio-download-modal):not(.pinokio-modern-modal):not(.pinokio-input-modal):not(.min-popup):not(.min-popup2):not(.backup-modal-shell) .field-row label {
6522
+ color: rgba(229, 231, 235, 0.62) !important;
6523
+ }
6524
+
6525
+ .swal2-popup.swal2-modal:not(.loader-popup):not(.pinokio-download-modal):not(.pinokio-modern-modal):not(.pinokio-input-modal):not(.min-popup):not(.min-popup2):not(.backup-modal-shell) input.swal2-input,
6526
+ .swal2-popup.swal2-modal:not(.loader-popup):not(.pinokio-download-modal):not(.pinokio-modern-modal):not(.pinokio-input-modal):not(.min-popup):not(.min-popup2):not(.backup-modal-shell) textarea.swal2-input,
6527
+ .swal2-popup.swal2-modal:not(.loader-popup):not(.pinokio-download-modal):not(.pinokio-modern-modal):not(.pinokio-input-modal):not(.min-popup):not(.min-popup2):not(.backup-modal-shell) .swal2-textarea {
6528
+ width: 100% !important;
6529
+ margin: 0 !important;
6530
+ padding: 8px 10px !important;
6531
+ border: 1px solid rgba(24, 24, 27, 0.16) !important;
6532
+ border-radius: 6px !important;
6533
+ background: rgba(24, 24, 27, 0.03) !important;
6534
+ color: #18181b !important;
6535
+ box-shadow: none !important;
6536
+ font-size: 13px !important;
6537
+ line-height: 1.45 !important;
6538
+ }
6539
+
6540
+ .swal2-popup.swal2-modal:not(.loader-popup):not(.pinokio-download-modal):not(.pinokio-modern-modal):not(.pinokio-input-modal):not(.min-popup):not(.min-popup2):not(.backup-modal-shell) input.swal2-input {
6541
+ height: 36px !important;
6542
+ }
6543
+
6544
+ body.dark .swal2-popup.swal2-modal:not(.loader-popup):not(.pinokio-download-modal):not(.pinokio-modern-modal):not(.pinokio-input-modal):not(.min-popup):not(.min-popup2):not(.backup-modal-shell) input.swal2-input,
6545
+ body.dark .swal2-popup.swal2-modal:not(.loader-popup):not(.pinokio-download-modal):not(.pinokio-modern-modal):not(.pinokio-input-modal):not(.min-popup):not(.min-popup2):not(.backup-modal-shell) textarea.swal2-input,
6546
+ body.dark .swal2-popup.swal2-modal:not(.loader-popup):not(.pinokio-download-modal):not(.pinokio-modern-modal):not(.pinokio-input-modal):not(.min-popup):not(.min-popup2):not(.backup-modal-shell) .swal2-textarea {
6547
+ border-color: rgba(255, 255, 255, 0.14) !important;
6548
+ background: rgba(255, 255, 255, 0.04) !important;
6549
+ color: rgba(250, 250, 250, 0.94) !important;
6550
+ }
6551
+
6552
+ .swal2-popup.swal2-modal:not(.loader-popup):not(.pinokio-download-modal):not(.pinokio-modern-modal):not(.pinokio-input-modal):not(.min-popup):not(.min-popup2):not(.backup-modal-shell) input.swal2-input:focus,
6553
+ .swal2-popup.swal2-modal:not(.loader-popup):not(.pinokio-download-modal):not(.pinokio-modern-modal):not(.pinokio-input-modal):not(.min-popup):not(.min-popup2):not(.backup-modal-shell) textarea.swal2-input:focus,
6554
+ .swal2-popup.swal2-modal:not(.loader-popup):not(.pinokio-download-modal):not(.pinokio-modern-modal):not(.pinokio-input-modal):not(.min-popup):not(.min-popup2):not(.backup-modal-shell) .swal2-textarea:focus {
6555
+ border-color: rgba(24, 24, 27, 0.42) !important;
6556
+ background: #ffffff !important;
6557
+ box-shadow: 0 0 0 3px rgba(24, 24, 27, 0.12) !important;
6558
+ outline: none !important;
6559
+ }
6560
+
6561
+ body.dark .swal2-popup.swal2-modal:not(.loader-popup):not(.pinokio-download-modal):not(.pinokio-modern-modal):not(.pinokio-input-modal):not(.min-popup):not(.min-popup2):not(.backup-modal-shell) input.swal2-input:focus,
6562
+ body.dark .swal2-popup.swal2-modal:not(.loader-popup):not(.pinokio-download-modal):not(.pinokio-modern-modal):not(.pinokio-input-modal):not(.min-popup):not(.min-popup2):not(.backup-modal-shell) textarea.swal2-input:focus,
6563
+ body.dark .swal2-popup.swal2-modal:not(.loader-popup):not(.pinokio-download-modal):not(.pinokio-modern-modal):not(.pinokio-input-modal):not(.min-popup):not(.min-popup2):not(.backup-modal-shell) .swal2-textarea:focus {
6564
+ border-color: rgba(255, 255, 255, 0.38) !important;
6565
+ background: rgba(255, 255, 255, 0.05) !important;
6566
+ box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.14) !important;
6567
+ }
6568
+
6569
+ .swal2-popup.swal2-modal:not(.loader-popup):not(.pinokio-download-modal):not(.pinokio-modern-modal):not(.pinokio-input-modal):not(.min-popup):not(.min-popup2):not(.backup-modal-shell) .filepond-wrapper {
6570
+ display: grid;
6571
+ grid-template-columns: 112px minmax(0, 1fr);
6572
+ gap: 16px;
6573
+ align-items: start;
6574
+ }
6575
+
6576
+ .swal2-popup.swal2-modal:not(.loader-popup):not(.pinokio-download-modal):not(.pinokio-modern-modal):not(.pinokio-input-modal):not(.min-popup):not(.min-popup2):not(.backup-modal-shell) .avatar-field {
6577
+ width: 100% !important;
6578
+ height: auto !important;
6579
+ margin: 0 !important;
6580
+ min-width: 0;
6581
+ }
6582
+
6583
+ .swal2-popup.swal2-modal:not(.loader-popup):not(.pinokio-download-modal):not(.pinokio-modern-modal):not(.pinokio-input-modal):not(.min-popup):not(.min-popup2):not(.backup-modal-shell) .filepond--root {
6584
+ width: 100% !important;
6585
+ max-width: 100% !important;
6586
+ }
6587
+
6588
+ @media (max-width: 560px) {
6589
+ .swal2-popup.swal2-modal:not(.loader-popup):not(.pinokio-download-modal):not(.pinokio-modern-modal):not(.pinokio-input-modal):not(.min-popup):not(.min-popup2):not(.backup-modal-shell) {
6590
+ padding: 16px !important;
6591
+ }
6592
+
6593
+ .swal2-popup.swal2-modal:not(.loader-popup):not(.pinokio-download-modal):not(.pinokio-modern-modal):not(.pinokio-input-modal):not(.min-popup):not(.min-popup2):not(.backup-modal-shell) .filepond-wrapper {
6594
+ grid-template-columns: minmax(0, 1fr);
6595
+ }
6596
+
6597
+ .swal2-popup.swal2-modal:not(.loader-popup):not(.pinokio-download-modal):not(.pinokio-modern-modal):not(.pinokio-input-modal):not(.min-popup):not(.min-popup2):not(.backup-modal-shell) .swal2-actions {
6598
+ flex-direction: column-reverse;
6599
+ align-items: stretch;
6600
+ }
6601
+
6602
+ .swal2-popup.swal2-modal:not(.loader-popup):not(.pinokio-download-modal):not(.pinokio-modern-modal):not(.pinokio-input-modal):not(.min-popup):not(.min-popup2):not(.backup-modal-shell) .swal2-styled {
6603
+ width: 100%;
6604
+ }
6605
+ }