Files
code-editor/codeeditor-app/elements/session-list-item/session-list-item.less
T
2023-05-12 09:44:36 +02:00

33 lines
610 B
Plaintext

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;
}