1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
|
html {
height: 100%;
}
div.stats {
border: solid 1px #777;
border-radius: 4px;
box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
color: #777;
margin-bottom: 20px;
}
div.stats .stats-description {
font-size: 0.8em;
padding: 0 15px 15px;
text-align: center;
}
div.stats .stats-body {
font-size: 26px;
padding: 15px 15px 0;
text-align: center;
}
pre {
background: #fafafa;
padding: 10px;
white-space: pre-wrap;
}
.d-flex p {
padding: 8px;
}
.expand.accordion-toggle {
vertical-align: middle;
}
.expand.accordion-toggle .expand-icon:after {
color: grey;
content: "\f107";
float: right;
}
.expand.accordion-toggle.collapsed .expand-icon:after {
content: "\f105";
}
.expand-icon {
display: inline-block;
float: right;
text-align: center;
width: 1.25em;
}
.hiddenRow {
padding: 0 !important;
}
.mojo-copy {
font-size: 12px;
}
.mojo-copy, .mojo-copy a {
color: #777;
}
.mojo-footer {
background: url(../minion/pinstripe-light.png);
background-color: #f2ece9;
box-shadow: inset 0 10px 10px -5px #ddd;
color: #666;
}
.mojo-footer a:hover {
color: #000;
text-decoration: none;
}
.mojo-social a {
color: #666;
font-size: 1.5em;
padding: 0.2em;
}
.table thead tr th {
border-top: 0 !important;
}
.table td {
border: 0 !important;
}
.wrappable {
word-break: break-all;
word-wrap: break-word;
}
#backlog-chart {
height: 200px;
}
#backlog-chart .inactive-jobs .area {
fill: #a9e3be;
stroke: #77c293;
stroke-width: 8;
}
#history-chart {
height: 200px;
}
#history-chart .processed {
fill: #a9e3be;
}
|