azkaban-memoizeit
Changes
src/less/flow.less 36(+27 -9)
Details
src/less/flow.less 36(+27 -9)
diff --git a/src/less/flow.less b/src/less/flow.less
index 931f47c..4c23e39 100644
--- a/src/less/flow.less
+++ b/src/less/flow.less
@@ -25,7 +25,7 @@
.flow-progress-bar {
height: 100%;
background-color: #ccc;
- border-radius: 4px;
+ border-radius: 5px;
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
-webkit-transition: width 0.6s ease;
@@ -84,7 +84,8 @@ td {
background-color: #c82123;
}
- &.READY {
+ &.READY,
+ &.UNKNOWN {
background-color: #ccc;
}
@@ -96,10 +97,7 @@ td {
background-color: #f19153;
}
- &.DISABLED {
- background-color: #aaa;
- }
-
+ &.DISABLED,
&.SKIPPED {
background-color: #aaa;
}
@@ -107,10 +105,30 @@ td {
&.KILLED {
background-color: #d9534f;
}
+ }
+}
- &.UNKNOWN {
- background-color: #ccc;
- }
+#flowStatus {
+ &.SKIPPED {
+ color: #aaa;
+ }
+
+ &.SUCCEEDED {
+ color: #4e911e;
+ }
+
+ &.RUNNING {
+ color: #009fc9;
+ }
+
+ &.PAUSED {
+ color: #c92123;
+ }
+
+ &.FAILED,
+ &.FAILED_FINISHING,
+ &.KILLED {
+ color: #cc0000;
}
}