Skip to content

Commit

Permalink
Change color of INSUFFICIENT_RESOURCES and QUEUED
Browse files Browse the repository at this point in the history
  • Loading branch information
haozhun committed Apr 30, 2015
1 parent 9697ce7 commit 92001d7
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions presto-main/src/main/resources/webapp/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,9 @@
.bg-danger-warning {
background-color: #F7EBE1;
}
.bg-info-light {
background-color: #EBF3F7;
}
</style>
</head>

Expand Down Expand Up @@ -108,9 +111,13 @@
return "bg-success-warning";
case "EXTERNAL":
return "bg-danger-warning";
case "INSUFFICIENT_RESOURCES":
return "bg-success-warning";
default:
return "bg-danger";
}
case "QUEUED":
return "bg-info-light";
default:
return "bg-info";
}
Expand Down

0 comments on commit 92001d7

Please sign in to comment.