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 <[email protected]> Authored: Fri Jan 12 09:36:25 2018 +0100 Committer: Fokko Driesprong <[email protected]> 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', }
