Add separate logs view with deep-linking support

This commit is contained in:
Johannes Zellner
2018-01-08 11:05:14 +01:00
parent de2999cb56
commit 0c5aea2fb2
5 changed files with 168 additions and 2 deletions
+31 -1
View File
@@ -1124,12 +1124,18 @@ footer {
.logs-controls {
margin-top: 25px;
margin-bottom: 10px;
.ng-isolate-scope {
display: inline-block;
float: left;
}
h3 {
display: inline-block;
margin-top: 6px;
margin-bottom: 0;
}
select {
display: inline-block;
width: 250px;
@@ -1147,6 +1153,30 @@ footer {
}
}
.logs-container {
flex-grow: 1;
margin-left: calc(8.33% + 15px);
margin-right: calc(8.33% + 15px);
margin-bottom: 20px;
background-color: black;
color: white;
overflow: auto;
padding: 5px;
font-family: monospace;
.log-line {
line-height: 1.2;
&:hover {
background-color: #333333;
}
.time {
color: #00FFFF;
}
}
}
.logs-and-term-container {
flex-grow: 1;
margin-left: calc(8.33% + 15px);