@jay-framework/aiditor 0.20.0 → 0.22.0

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.
@@ -290,7 +290,7 @@ body {
290
290
  padding: 5px 8px;
291
291
  background: var(--harmony-bg-surface);
292
292
  border: 1px solid var(--harmony-border);
293
- border-radius: var(--harmony-radius-pill);
293
+ border-radius: 8px;
294
294
  box-shadow:
295
295
  0 6px 28px rgba(22, 45, 61, 0.14),
296
296
  0 2px 6px rgba(22, 45, 61, 0.06);
@@ -865,14 +865,56 @@ body {
865
865
  min-width: 200px;
866
866
  }
867
867
  .url-bar {
868
+ display: flex;
869
+ align-items: center;
870
+ gap: 4px;
868
871
  font-size: 12px;
869
872
  font-family: var(--harmony-mono);
870
873
  color: var(--harmony-text-secondary);
871
874
  background: var(--harmony-bg-surface);
872
875
  border: 1px solid var(--harmony-border);
873
876
  border-radius: var(--harmony-radius-sm);
874
- padding: 7px 12px;
875
- word-break: break-all;
877
+ padding: 4px 4px 4px 12px;
878
+ }
879
+ .url-bar-text {
880
+ flex: 1;
881
+ min-width: 0;
882
+ overflow: hidden;
883
+ text-overflow: ellipsis;
884
+ white-space: nowrap;
885
+ }
886
+ .url-bar-open-tab {
887
+ flex-shrink: 0;
888
+ display: inline-flex;
889
+ align-items: center;
890
+ justify-content: center;
891
+ width: 28px;
892
+ height: 28px;
893
+ padding: 0;
894
+ border: none;
895
+ border-radius: var(--harmony-radius-sm);
896
+ background: transparent;
897
+ color: var(--harmony-text-muted);
898
+ cursor: pointer;
899
+ transition:
900
+ color 0.12s ease,
901
+ background 0.12s ease;
902
+ }
903
+ .url-bar-open-tab:hover:not(:disabled) {
904
+ color: var(--harmony-text);
905
+ background: var(--harmony-bg-hover);
906
+ }
907
+ .url-bar-open-tab:disabled {
908
+ opacity: 0.4;
909
+ cursor: default;
910
+ }
911
+ .url-bar-open-tab:focus-visible {
912
+ outline: 2px solid var(--harmony-primary);
913
+ outline-offset: 1px;
914
+ }
915
+ .url-bar-open-tab .harmony-routes-panel-open-tab-icon {
916
+ width: 24px;
917
+ height: 24px;
876
918
  }
877
919
 
878
920
  .preview-loading {
@@ -1179,6 +1221,19 @@ body {
1179
1221
  .visual-attachment-remove-file:hover {
1180
1222
  color: var(--harmony-danger);
1181
1223
  }
1224
+ .visual-attachment-chip-actions {
1225
+ display: flex;
1226
+ flex-direction: column;
1227
+ align-items: center;
1228
+ gap: 2px;
1229
+ flex-shrink: 0;
1230
+ }
1231
+ .visual-attachment-number {
1232
+ font-size: 10px;
1233
+ font-weight: 600;
1234
+ color: var(--harmony-primary);
1235
+ line-height: 1;
1236
+ }
1182
1237
  .file-input-hidden {
1183
1238
  display: none;
1184
1239
  }
@@ -1549,11 +1604,24 @@ body {
1549
1604
  max-height: 94vh;
1550
1605
  display: flex;
1551
1606
  flex-direction: column;
1552
- gap: 10px;
1553
- padding: 14px 16px;
1607
+ gap: 24px;
1608
+ padding: 32px 32px;
1554
1609
  overflow: hidden;
1555
1610
  box-shadow: var(--harmony-shadow-lg);
1556
1611
  }
1612
+ .video-review-panel {
1613
+ position: relative;
1614
+ }
1615
+ .video-review-header {
1616
+ align-items: flex-start;
1617
+ padding-right: 28px;
1618
+ }
1619
+ .video-review-panel .harmony-modal-close {
1620
+ position: absolute;
1621
+ top: 12px;
1622
+ right: 12px;
1623
+ z-index: 1;
1624
+ }
1557
1625
  .video-review-body {
1558
1626
  display: flex;
1559
1627
  flex-direction: column;
@@ -1561,23 +1629,27 @@ body {
1561
1629
  min-height: 0;
1562
1630
  flex: 1 1 auto;
1563
1631
  }
1564
- .video-review-tools {
1565
- display: inline-flex;
1566
- flex-wrap: nowrap;
1567
- gap: 2px;
1568
- align-items: center;
1569
- width: fit-content;
1570
- }
1571
- .video-review-tools .visual-tool-btn {
1572
- padding: 7px 8px;
1573
- min-width: 28px;
1574
- }
1575
1632
  .video-review-capture-root {
1633
+ position: relative;
1576
1634
  flex: 0 1 auto;
1577
1635
  min-height: 0;
1578
1636
  max-height: min(56vh, 480px);
1579
1637
  overflow: hidden;
1580
1638
  }
1639
+ .video-review-toolbar-wrap {
1640
+ position: absolute;
1641
+ bottom: 12px;
1642
+ left: 50%;
1643
+ transform: translateX(-50%);
1644
+ z-index: 12;
1645
+ pointer-events: none;
1646
+ }
1647
+ .video-review-toolbar-wrap > * {
1648
+ pointer-events: auto;
1649
+ }
1650
+ .video-review-toolbar-wrap .annotate-dock {
1651
+ border-radius: 8px;
1652
+ }
1581
1653
  .video-review-capture-root .preview-frame {
1582
1654
  width: 100%;
1583
1655
  height: auto;
@@ -1585,6 +1657,9 @@ body {
1585
1657
  max-height: min(56vh, 480px);
1586
1658
  object-fit: contain;
1587
1659
  display: block;
1660
+ border: 1px solid rgba(0, 0, 0, 0.2);
1661
+ border-radius: 8px;
1662
+ box-sizing: border-box;
1588
1663
  }
1589
1664
  .snapshot-panel {
1590
1665
  width: min(1200px, 96vw);
@@ -1594,10 +1669,12 @@ body {
1594
1669
  .snapshot-header {
1595
1670
  display: flex;
1596
1671
  justify-content: space-between;
1597
- align-items: center;
1598
1672
  gap: 12px;
1599
1673
  flex-wrap: wrap;
1600
1674
  }
1675
+ .snapshot-header {
1676
+ align-items: center;
1677
+ }
1601
1678
  .video-review-title,
1602
1679
  .snapshot-title {
1603
1680
  font-size: 15px;
@@ -1605,9 +1682,21 @@ body {
1605
1682
  color: var(--harmony-text);
1606
1683
  margin: 0;
1607
1684
  }
1608
- .video-review-meta {
1685
+ .video-review-title {
1686
+ font-size: 20px;
1687
+ }
1688
+ .video-review-subtitle {
1689
+ font-size: 16px;
1690
+ color: var(--harmony-text-secondary);
1691
+ margin: 4px 0 0;
1692
+ line-height: 1.35;
1693
+ }
1694
+ .video-review-time {
1695
+ flex-shrink: 0;
1609
1696
  font-size: 12px;
1610
1697
  color: var(--harmony-text-muted);
1698
+ font-variant-numeric: tabular-nums;
1699
+ white-space: nowrap;
1611
1700
  }
1612
1701
  .snapshot-tools {
1613
1702
  display: flex;
@@ -2251,7 +2340,7 @@ body {
2251
2340
  .add-menu-picker-search-icon {
2252
2341
  color: var(--harmony-text-muted);
2253
2342
  font-size: 30px;
2254
- line-height: 1;
2343
+ line-height: 0;
2255
2344
  flex-shrink: 0;
2256
2345
  }
2257
2346
  .add-menu-picker-search-input {
@@ -2544,12 +2633,28 @@ body {
2544
2633
  padding: 24px;
2545
2634
  box-sizing: border-box;
2546
2635
  }
2636
+ .add-page-brief-fill-popover-stack {
2637
+ display: flex;
2638
+ flex-direction: column;
2639
+ align-items: center;
2640
+ gap: 10px;
2641
+ width: min(420px, 100%);
2642
+ max-height: 90%;
2643
+ }
2644
+ .add-page-brief-fill-stop-confirm {
2645
+ align-self: center;
2646
+ max-width: 100%;
2647
+ white-space: normal;
2648
+ text-align: center;
2649
+ flex-wrap: wrap;
2650
+ justify-content: center;
2651
+ }
2547
2652
  .add-page-brief-fill-panel {
2548
2653
  background: var(--harmony-bg-surface);
2549
2654
  border: 1px solid var(--harmony-border);
2550
2655
  border-radius: var(--harmony-radius-md);
2551
- width: min(420px, 100%);
2552
- max-height: 90%;
2656
+ width: 100%;
2657
+ max-height: 100%;
2553
2658
  overflow: auto;
2554
2659
  padding: 14px 16px;
2555
2660
  display: flex;
@@ -3805,7 +3910,7 @@ body {
3805
3910
  }
3806
3911
  .add-menu-dock-subhint {
3807
3912
  margin: 0;
3808
- padding: 8px 18px 0;
3913
+ padding: 2px 18px 6px;
3809
3914
  font-size: 12px;
3810
3915
  line-height: 1.35;
3811
3916
  color: var(--harmony-text-secondary);