Repository: incubator-airflow Updated Branches: refs/heads/v1-8-test 8ad9ab673 -> 3a5a3235d
[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 (cherry picked from commit daa405e2bd2e4d3538eea0ed951fdcdf6d8bc127) Signed-off-by: Bolke de Bruin <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/incubator-airflow/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-airflow/commit/3a5a3235 Tree: http://git-wip-us.apache.org/repos/asf/incubator-airflow/tree/3a5a3235 Diff: http://git-wip-us.apache.org/repos/asf/incubator-airflow/diff/3a5a3235 Branch: refs/heads/v1-8-test Commit: 3a5a3235d5ad77a116ea1ac2a3216af31900d703 Parents: 8ad9ab6 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:34 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/3a5a3235/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 {
