added sessions support

This commit is contained in:
David Meincke
2023-05-12 09:44:36 +02:00
parent d3a0bd984e
commit e0c998cfac
13 changed files with 533 additions and 11 deletions
@@ -0,0 +1,33 @@
session-list-item {
color: white;
padding: 10px;
display: block;
position: relative;
border-bottom: 1px solid grey;
cursor: pointer;
}
session-list-item.selected {
background-color: #1e1e1e;
}
.session-list-item-session-id::before {
content: "Session: ";
}
.session-list-item-session-id {
display: block;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
.session-list-item-number-of-changes {
font-size: 12px;
}
.session-list-item-number-of-changes::before {
content: "Number of changes: ";
position: relative;
z-index: 0;
}