projects
/
arvados.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
11454: Avoid instantiating new SessionDB before autoRedirectToHomeCluster()
[arvados.git]
/
apps
/
workbench
/
app
/
assets
/
stylesheets
/
log_viewer.scss
1
// Copyright (C) The Arvados Authors. All rights reserved.
2
//
3
// SPDX-License-Identifier: AGPL-3.0
4
5
.log-viewer-table {
6
width: 100%;
7
font-family: "Lucida Console", Monaco, monospace;
8
font-size: 11px;
9
table-layout: fixed;
10
thead tr {
11
th {
12
padding-right: 1em;
13
}
14
th.id {
15
display: none;
16
}
17
th.timestamp {
18
width: 15em;
19
}
20
th.type {
21
width: 8em;
22
}
23
th.taskid {
24
width: 4em;
25
}
26
th.node {
27
width: 8em;
28
}
29
th.slot {
30
width: 3em;
31
}
32
th.message {
33
width: auto;
34
}
35
}
36
tbody tr {
37
vertical-align: top;
38
td {
39
padding-right: 1em;
40
}
41
td.id {
42
display: none;
43
}
44
td.taskid {
45
text-align: right;
46
}
47
td.slot {
48
text-align: right;
49
}
50
td.message {
51
word-wrap: break-word;
52
}
53
}
54
}
55
56
.log-viewer-button {
57
width: 12em;
58
}
59
60
.log-viewer-paging-div {
61
font-size: 18px;
62
text-align: center;
63
}
64
65
.log-viewer-page-num {
66
padding-left: .3em;
67
padding-right: .3em;
68
}