You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by fo...@apache.org on 2018/01/12 08:36:32 UTC

incubator-airflow git commit: [AIRFLOW-1994] Change background color of Scheduled state Task Instances

Repository: incubator-airflow
Updated Branches:
  refs/heads/master 404bee8d8 -> c208a41fc


[AIRFLOW-1994] Change background color of Scheduled state Task Instances

On Task Instances page 'Scheduled' state TIs are
not-visible due to white
background. Changing background color to tan for
better UX.

Closes #2933 from wolfier/AIRFLOW-1994


Project: http://git-wip-us.apache.org/repos/asf/incubator-airflow/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-airflow/commit/c208a41f
Tree: http://git-wip-us.apache.org/repos/asf/incubator-airflow/tree/c208a41f
Diff: http://git-wip-us.apache.org/repos/asf/incubator-airflow/diff/c208a41f

Branch: refs/heads/master
Commit: c208a41fc2770c586075434b54975d27c29828af
Parents: 404bee8
Author: Alan Ma <am...@pandora.com>
Authored: Fri Jan 12 09:36:25 2018 +0100
Committer: Fokko Driesprong <fo...@godatadriven.com>
Committed: Fri Jan 12 09:36:25 2018 +0100

----------------------------------------------------------------------
 airflow/utils/state.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/c208a41f/airflow/utils/state.py
----------------------------------------------------------------------
diff --git a/airflow/utils/state.py b/airflow/utils/state.py
index 6561065..d291c22 100644
--- a/airflow/utils/state.py
+++ b/airflow/utils/state.py
@@ -49,6 +49,7 @@ class State(object):
         UP_FOR_RETRY,
         QUEUED,
         NONE,
+        SCHEDULED,
     )
 
     dag_states = (
@@ -67,7 +68,7 @@ class State(object):
         UPSTREAM_FAILED: 'orange',
         SKIPPED: 'pink',
         REMOVED: 'lightgrey',
-        SCHEDULED: 'white',
+        SCHEDULED: 'tan',
         NONE: 'lightblue',
     }