@quanta-intellect/vessel-browser 0.1.78 → 0.1.81
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.
|
@@ -1441,8 +1441,8 @@
|
|
|
1441
1441
|
top: calc(32px + var(--tab-height) + var(--address-bar-height) + 6px);
|
|
1442
1442
|
left: 50%;
|
|
1443
1443
|
transform: translateX(-50%);
|
|
1444
|
-
width: min(
|
|
1445
|
-
max-height: min(
|
|
1444
|
+
width: min(460px, calc(100vw - 28px));
|
|
1445
|
+
max-height: min(420px, calc(100vh - 120px));
|
|
1446
1446
|
display: flex;
|
|
1447
1447
|
flex-direction: column;
|
|
1448
1448
|
border: 1px solid color-mix(in srgb, var(--accent-warm) 20%, transparent);
|
|
@@ -1479,7 +1479,7 @@
|
|
|
1479
1479
|
padding: 10px 14px;
|
|
1480
1480
|
border-bottom: 1px solid color-mix(in srgb, var(--accent-warm) 10%, transparent);
|
|
1481
1481
|
color: var(--text-secondary);
|
|
1482
|
-
font-size:
|
|
1482
|
+
font-size: 12px;
|
|
1483
1483
|
font-weight: 600;
|
|
1484
1484
|
letter-spacing: 0.01em;
|
|
1485
1485
|
}
|
|
@@ -1521,7 +1521,7 @@
|
|
|
1521
1521
|
.page-diff-burst-history {
|
|
1522
1522
|
display: flex;
|
|
1523
1523
|
flex-direction: column;
|
|
1524
|
-
gap:
|
|
1524
|
+
gap: 8px;
|
|
1525
1525
|
padding: 10px 14px;
|
|
1526
1526
|
border-bottom: 1px solid var(--border-glass);
|
|
1527
1527
|
background: var(--surface-glass);
|
|
@@ -1537,29 +1537,54 @@
|
|
|
1537
1537
|
|
|
1538
1538
|
.page-diff-burst-row {
|
|
1539
1539
|
display: grid;
|
|
1540
|
-
grid-template-columns:
|
|
1541
|
-
gap:
|
|
1540
|
+
grid-template-columns: 72px 1fr;
|
|
1541
|
+
gap: 10px;
|
|
1542
1542
|
align-items: start;
|
|
1543
|
+
padding: 7px 8px;
|
|
1544
|
+
border-radius: var(--radius-md);
|
|
1545
|
+
}
|
|
1546
|
+
|
|
1547
|
+
.page-diff-burst-row.latest {
|
|
1548
|
+
background: color-mix(in srgb, var(--accent-warm) 10%, transparent);
|
|
1543
1549
|
}
|
|
1544
1550
|
|
|
1545
1551
|
.page-diff-burst-time {
|
|
1546
1552
|
color: var(--text-muted);
|
|
1547
1553
|
font-size: 11px;
|
|
1554
|
+
font-weight: 700;
|
|
1548
1555
|
}
|
|
1549
1556
|
|
|
1550
1557
|
.page-diff-burst-summary {
|
|
1558
|
+
display: flex;
|
|
1559
|
+
flex-direction: column;
|
|
1560
|
+
gap: 6px;
|
|
1551
1561
|
color: var(--text-secondary);
|
|
1552
1562
|
font-size: 11.5px;
|
|
1553
1563
|
line-height: 1.4;
|
|
1554
1564
|
word-break: break-word;
|
|
1555
1565
|
}
|
|
1556
1566
|
|
|
1567
|
+
.page-diff-burst-summary-part {
|
|
1568
|
+
display: flex;
|
|
1569
|
+
flex-direction: column;
|
|
1570
|
+
gap: 2px;
|
|
1571
|
+
}
|
|
1572
|
+
|
|
1573
|
+
.page-diff-burst-summary-section {
|
|
1574
|
+
align-self: flex-start;
|
|
1575
|
+
color: var(--text-muted);
|
|
1576
|
+
font-size: 10px;
|
|
1577
|
+
font-weight: 700;
|
|
1578
|
+
letter-spacing: 0.04em;
|
|
1579
|
+
text-transform: uppercase;
|
|
1580
|
+
}
|
|
1581
|
+
|
|
1557
1582
|
.page-diff-item {
|
|
1558
1583
|
display: flex;
|
|
1559
1584
|
flex-direction: column;
|
|
1560
1585
|
align-items: stretch;
|
|
1561
|
-
gap:
|
|
1562
|
-
padding:
|
|
1586
|
+
gap: 10px;
|
|
1587
|
+
padding: 14px;
|
|
1563
1588
|
border-bottom: 1px solid var(--border-glass);
|
|
1564
1589
|
}
|
|
1565
1590
|
|
|
@@ -1570,24 +1595,40 @@
|
|
|
1570
1595
|
.page-diff-item-header {
|
|
1571
1596
|
display: flex;
|
|
1572
1597
|
flex-direction: column;
|
|
1573
|
-
gap:
|
|
1598
|
+
gap: 6px;
|
|
1599
|
+
}
|
|
1600
|
+
|
|
1601
|
+
.page-diff-badges {
|
|
1602
|
+
display: flex;
|
|
1603
|
+
align-items: center;
|
|
1604
|
+
flex-wrap: wrap;
|
|
1605
|
+
gap: 6px;
|
|
1574
1606
|
}
|
|
1575
1607
|
|
|
1608
|
+
.page-diff-kind,
|
|
1576
1609
|
.page-diff-section {
|
|
1577
1610
|
align-self: flex-start;
|
|
1578
1611
|
padding: 2px 6px;
|
|
1579
1612
|
border-radius: var(--radius-sm);
|
|
1580
|
-
background: var(--surface-hover);
|
|
1581
|
-
color: var(--text-muted);
|
|
1582
1613
|
font-size: 10px;
|
|
1583
1614
|
font-weight: 600;
|
|
1584
1615
|
text-transform: uppercase;
|
|
1585
1616
|
letter-spacing: 0.04em;
|
|
1586
1617
|
}
|
|
1587
1618
|
|
|
1588
|
-
.page-diff-
|
|
1619
|
+
.page-diff-kind {
|
|
1620
|
+
background: var(--surface-elevated);
|
|
1589
1621
|
color: var(--text-secondary);
|
|
1590
|
-
|
|
1622
|
+
}
|
|
1623
|
+
|
|
1624
|
+
.page-diff-section {
|
|
1625
|
+
background: var(--surface-hover);
|
|
1626
|
+
color: var(--text-muted);
|
|
1627
|
+
}
|
|
1628
|
+
|
|
1629
|
+
.page-diff-summary {
|
|
1630
|
+
color: var(--text-primary);
|
|
1631
|
+
font-size: 12.5px;
|
|
1591
1632
|
line-height: 1.45;
|
|
1592
1633
|
word-break: break-word;
|
|
1593
1634
|
}
|
|
@@ -1601,9 +1642,10 @@
|
|
|
1601
1642
|
display: flex;
|
|
1602
1643
|
flex-direction: column;
|
|
1603
1644
|
gap: 3px;
|
|
1604
|
-
padding:
|
|
1645
|
+
padding: 9px 10px;
|
|
1605
1646
|
border-radius: var(--radius-md);
|
|
1606
1647
|
background: var(--surface-glass);
|
|
1648
|
+
border: 1px solid var(--border-glass);
|
|
1607
1649
|
}
|
|
1608
1650
|
|
|
1609
1651
|
.page-diff-snippet-label,
|
|
@@ -1618,7 +1660,8 @@
|
|
|
1618
1660
|
.page-diff-snippet-text {
|
|
1619
1661
|
color: var(--text-primary);
|
|
1620
1662
|
font-size: 12px;
|
|
1621
|
-
line-height: 1.
|
|
1663
|
+
line-height: 1.5;
|
|
1664
|
+
overflow-wrap: anywhere;
|
|
1622
1665
|
}
|
|
1623
1666
|
|
|
1624
1667
|
.page-diff-list-group {
|
|
@@ -4061,6 +4104,117 @@
|
|
|
4061
4104
|
}
|
|
4062
4105
|
|
|
4063
4106
|
|
|
4107
|
+
/* ═══════════════════════════════════════
|
|
4108
|
+
Page diff history
|
|
4109
|
+
═══════════════════════════════════════ */
|
|
4110
|
+
|
|
4111
|
+
.page-diff-timeline {
|
|
4112
|
+
display: flex;
|
|
4113
|
+
flex-direction: column;
|
|
4114
|
+
gap: 12px;
|
|
4115
|
+
}
|
|
4116
|
+
|
|
4117
|
+
.page-diff-timeline-header {
|
|
4118
|
+
display: flex;
|
|
4119
|
+
flex-direction: column;
|
|
4120
|
+
gap: 4px;
|
|
4121
|
+
}
|
|
4122
|
+
|
|
4123
|
+
.page-diff-history-list {
|
|
4124
|
+
display: flex;
|
|
4125
|
+
flex-direction: column;
|
|
4126
|
+
gap: 10px;
|
|
4127
|
+
}
|
|
4128
|
+
|
|
4129
|
+
.page-diff-history-item {
|
|
4130
|
+
display: grid;
|
|
4131
|
+
grid-template-columns: minmax(86px, 0.32fr) 1fr;
|
|
4132
|
+
gap: 10px;
|
|
4133
|
+
align-items: stretch;
|
|
4134
|
+
}
|
|
4135
|
+
|
|
4136
|
+
.page-diff-history-time {
|
|
4137
|
+
display: flex;
|
|
4138
|
+
flex-direction: column;
|
|
4139
|
+
gap: 3px;
|
|
4140
|
+
padding: 10px 0;
|
|
4141
|
+
color: var(--text-muted);
|
|
4142
|
+
font-size: 11px;
|
|
4143
|
+
line-height: 1.35;
|
|
4144
|
+
}
|
|
4145
|
+
|
|
4146
|
+
.page-diff-history-label {
|
|
4147
|
+
color: var(--text-primary);
|
|
4148
|
+
font-size: 11.5px;
|
|
4149
|
+
font-weight: 700;
|
|
4150
|
+
}
|
|
4151
|
+
|
|
4152
|
+
.page-diff-history-card {
|
|
4153
|
+
display: flex;
|
|
4154
|
+
flex-direction: column;
|
|
4155
|
+
gap: 8px;
|
|
4156
|
+
padding: 10px 12px;
|
|
4157
|
+
border: 1px solid var(--border-glass);
|
|
4158
|
+
border-radius: var(--radius-md);
|
|
4159
|
+
background: var(--surface-glass);
|
|
4160
|
+
}
|
|
4161
|
+
|
|
4162
|
+
.page-diff-history-item:first-child .page-diff-history-card {
|
|
4163
|
+
border-color: color-mix(in srgb, var(--accent-primary) 34%, var(--border-glass));
|
|
4164
|
+
background: color-mix(in srgb, var(--accent-primary) 8%, var(--surface-glass));
|
|
4165
|
+
}
|
|
4166
|
+
|
|
4167
|
+
.page-diff-history-summary-list {
|
|
4168
|
+
display: flex;
|
|
4169
|
+
flex-direction: column;
|
|
4170
|
+
gap: 7px;
|
|
4171
|
+
}
|
|
4172
|
+
|
|
4173
|
+
.page-diff-history-summary-row {
|
|
4174
|
+
display: flex;
|
|
4175
|
+
flex-direction: column;
|
|
4176
|
+
gap: 3px;
|
|
4177
|
+
}
|
|
4178
|
+
|
|
4179
|
+
.page-diff-history-summary-section {
|
|
4180
|
+
align-self: flex-start;
|
|
4181
|
+
padding: 2px 6px;
|
|
4182
|
+
border-radius: var(--radius-sm);
|
|
4183
|
+
background: var(--surface-elevated);
|
|
4184
|
+
color: var(--text-secondary);
|
|
4185
|
+
font-size: 10px;
|
|
4186
|
+
font-weight: 700;
|
|
4187
|
+
letter-spacing: 0.04em;
|
|
4188
|
+
text-transform: uppercase;
|
|
4189
|
+
}
|
|
4190
|
+
|
|
4191
|
+
.page-diff-history-summary {
|
|
4192
|
+
color: var(--text-primary);
|
|
4193
|
+
font-size: 12.5px;
|
|
4194
|
+
line-height: 1.45;
|
|
4195
|
+
overflow-wrap: anywhere;
|
|
4196
|
+
}
|
|
4197
|
+
|
|
4198
|
+
.page-diff-history-position {
|
|
4199
|
+
color: var(--text-muted);
|
|
4200
|
+
font-size: 10.5px;
|
|
4201
|
+
font-weight: 600;
|
|
4202
|
+
letter-spacing: 0.03em;
|
|
4203
|
+
text-transform: uppercase;
|
|
4204
|
+
}
|
|
4205
|
+
|
|
4206
|
+
@media (max-width: 430px) {
|
|
4207
|
+
.page-diff-history-item {
|
|
4208
|
+
grid-template-columns: 1fr;
|
|
4209
|
+
gap: 4px;
|
|
4210
|
+
}
|
|
4211
|
+
|
|
4212
|
+
.page-diff-history-time {
|
|
4213
|
+
padding: 0;
|
|
4214
|
+
}
|
|
4215
|
+
}
|
|
4216
|
+
|
|
4217
|
+
|
|
4064
4218
|
/* ═══════════════════════════════════════
|
|
4065
4219
|
Responsive — compact layout
|
|
4066
4220
|
═══════════════════════════════════════ */
|