Work on node history

This commit is contained in:
Magnus Åhall 2026-06-05 18:00:10 +02:00
parent 71af26ca1d
commit 5f068ac036
5 changed files with 246 additions and 20 deletions

View file

@ -513,3 +513,58 @@ dialog.op {
}
}
}
n2-pagehistory {
.layout {
display: grid;
grid-template-columns: min-content 1fr;
grid-gap: 8px;
align-items: center;
.el-back-image,
.el-back-text {
cursor: pointer;
}
.el-node-name {
margin-left: 8px;
}
.el-nodes {
grid-column: 1 / -1;
display: grid;
grid-template-columns: min-content 1fr;
grid-gap: 4px 8px;
.history-node {
display: contents;
}
}
.pagination {
grid-column: 1 / -1;
margin-top: 16px;
display: grid;
grid-template-columns: repeat(3, min-content);
grid-gap: 32px;
white-space: nowrap;
user-select: none;
.el-prev {
font-weight: bold;
cursor: pointer;
}
.el-next {
font-weight: bold;
cursor: pointer;
}
}
}
}