File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -191,12 +191,14 @@ const sfc = {
191
191
div ._jobLogTime = line .t ;
192
192
193
193
const lineNumber = document .createElement (' div' );
194
+ lineNumber .className = ' line-num' ;
194
195
lineNumber .innerText = line .ln ;
195
196
div .appendChild (lineNumber);
196
197
197
198
// TODO: Support displaying time optionally
198
199
199
200
const logMessage = document .createElement (' div' );
201
+ logMessage .className = ' log-msg' ;
200
202
logMessage .innerHTML = this .ansiToHTML .toHtml (line .m );
201
203
div .appendChild (logMessage);
202
204
Original file line number Diff line number Diff line change @@ -20,17 +20,17 @@ body > div.full.height {
20
20
font-family : monospace ;
21
21
.job-log-line {
22
22
display : flex ;
23
- line- num {
23
+ . line-num {
24
24
width : 48px ;
25
25
color : var (--color-grey-light );
26
26
text-align : right ;
27
27
}
28
- log- time {
28
+ . log-time {
29
29
color : var (--color-grey-light );
30
30
margin-left : 10px ;
31
31
white-space : nowrap ;
32
32
}
33
- log- msg {
33
+ . log-msg {
34
34
flex : 1 ;
35
35
word-break : break-all ;
36
36
white-space : break- spaces;
You can’t perform that action at this time.
0 commit comments