feat(extension): add item-history-index pane (lists items with field history)

This commit is contained in:
adlee-was-taken
2026-05-30 10:35:36 -04:00
parent 32e674eb40
commit 32e1632c42
3 changed files with 158 additions and 0 deletions

View File

@@ -1731,3 +1731,17 @@ textarea {
margin-left: auto;
font-size: 11px;
}
.history-index-row {
display: flex;
align-items: center;
gap: 10px;
padding: 8px 0;
border-bottom: 1px solid var(--border-subtle);
cursor: pointer;
}
.history-index-row:hover { background: var(--bg-input); }
.history-index-row__icon { font-size: 14px; }
.history-index-row__info { flex: 1; display: flex; flex-direction: column; }
.history-index-row__title { color: var(--text); }
.history-index-row__meta { font-size: 11px; }