Repository: incubator-airflow Updated Branches: refs/heads/master 784b3638c -> daa405e2b
[AIRFLOW-899] Tasks in SCHEDULED state should be white in the UI instead of black Closes #2100 from aoen/ddavydov/fix_black_squares_in_ui Project: http://git-wip-us.apache.org/repos/asf/incubator-airflow/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-airflow/commit/daa405e2 Tree: http://git-wip-us.apache.org/repos/asf/incubator-airflow/tree/daa405e2 Diff: http://git-wip-us.apache.org/repos/asf/incubator-airflow/diff/daa405e2 Branch: refs/heads/master Commit: daa405e2bd2e4d3538eea0ed951fdcdf6d8bc127 Parents: 784b363 Author: Dan Davydov <[email protected]> Authored: Thu Feb 23 23:50:19 2017 +0100 Committer: Bolke de Bruin <[email protected]> Committed: Thu Feb 23 23:50:19 2017 +0100 ---------------------------------------------------------------------- airflow/www/static/tree.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/daa405e2/airflow/www/static/tree.css ---------------------------------------------------------------------- diff --git a/airflow/www/static/tree.css b/airflow/www/static/tree.css index 1818250..9304bb1 100644 --- a/airflow/www/static/tree.css +++ b/airflow/www/static/tree.css @@ -38,7 +38,7 @@ rect.state { shape-rendering: crispEdges; cursor: pointer; } -rect.null, rect.undefined { +rect.null, rect.scheduled, rect.undefined { fill: white; } rect.success {
