Small UI fix
This commit is contained in:
parent
fc74b9569b
commit
76e1490d8f
2 changed files with 3 additions and 2 deletions
|
@ -83,11 +83,12 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.logs-view-element .log .log-description code {
|
.logs-view-element .log .log-description code {
|
||||||
max-width: 300px;
|
max-width: 200px;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
.logs-view-element .log-performer {
|
.logs-view-element .log-performer {
|
||||||
|
|
|
@ -1823,7 +1823,7 @@ LogUsageChart.prototype.draw = function(container, logData, startDate, endDate)
|
||||||
nv.addGraph(function() {
|
nv.addGraph(function() {
|
||||||
// Build the chart itself.
|
// Build the chart itself.
|
||||||
var chart = nv.models.multiBarChart()
|
var chart = nv.models.multiBarChart()
|
||||||
.margin({top: 30, right: 30, bottom: 50, left: 30})
|
.margin({top: 30, right: 30, bottom: 50, left: 60})
|
||||||
.stacked(false)
|
.stacked(false)
|
||||||
.staggerLabels(false)
|
.staggerLabels(false)
|
||||||
.tooltip(function(d, e) {
|
.tooltip(function(d, e) {
|
||||||
|
|
Reference in a new issue