Skip to content

Commit

Permalink
logging--
Browse files Browse the repository at this point in the history
slight color change
  • Loading branch information
henricasanova committed May 8, 2020
1 parent 89f2ddd commit 943f05b
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tools/wrench/dashboard/public/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -301,5 +301,5 @@ td {
}

#host-utilization-chart-legend-idle-time {
border-left: 15px solid #ffd8f8;
border-left: 15px solid #ffeded;
}
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ function generateHostUtilizationGraph(data, CONTAINER_WIDTH, CONTAINER_HEIGHT, P
.attr("width", CONTAINER_WIDTH - PADDING - PADDING)
.attr("height", y_hosts.bandwidth())
.attr("opacity", 0.3)
.attr("fill", "#ffd8f8");
.attr("fill", "#ffe8e8");

svg.append('g').selectAll("rect")
.data(data)
Expand Down
1 change: 0 additions & 1 deletion tools/wrench/dashboard/scripts/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,6 @@ function determineTaskEnd(d) {

function determineTaskColor(d) {
let taskColor
console.log(d)
if ((!d.hasOwnProperty("color")) || (d.color === "")) {
taskColor = "#f7daad"
} else {
Expand Down

0 comments on commit 943f05b

Please sign in to comment.