Make logviewer timestamp sticky

This commit is contained in:
Johannes Zellner
2020-09-06 10:32:32 +02:00
parent 92b9fc02fa
commit 2c7238b2c9

View File

@@ -1617,22 +1617,29 @@ tag-input {
.logs-container {
flex-grow: 1;
margin-bottom: 5px;
color: white;
overflow: auto;
padding: 5px;
margin: 5px;
font-family: monospace;
.log-line {
line-height: 1.2;
white-space: nowrap;
width: 100%;
&:hover {
background-color: #333333;
.time {
background-color: #333333;
}
}
.time {
color: #00FFFF;
position: sticky;
left: 0;
background: black;
}
}
}