You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by bo...@apache.org on 2017/04/25 09:25:42 UTC

incubator-airflow git commit: [AIRFLOW-1122] Increase stroke width in UI

Repository: incubator-airflow
Updated Branches:
  refs/heads/master 94f9822ff -> a08761a39


[AIRFLOW-1122] Increase stroke width in UI

A stroke width of 2px is to narrow to determine
the color for people with color vision deficiency.
A 3px stroke is much more accessible.

Closes #2246 from michaelosthege/master


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

Branch: refs/heads/master
Commit: a08761a39b9a1db785e7233692eb1eaa9e2892eb
Parents: 94f9822
Author: michaelosthege <th...@hotmail.com>
Authored: Tue Apr 25 11:24:57 2017 +0200
Committer: Bolke de Bruin <bo...@xs4all.nl>
Committed: Tue Apr 25 11:25:10 2017 +0200

----------------------------------------------------------------------
 airflow/www/static/graph.css | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/a08761a3/airflow/www/static/graph.css
----------------------------------------------------------------------
diff --git a/airflow/www/static/graph.css b/airflow/www/static/graph.css
index e724b7a..f1d3480 100644
--- a/airflow/www/static/graph.css
+++ b/airflow/www/static/graph.css
@@ -18,7 +18,7 @@
 */
 
 g.node rect {
-    stroke-width: 2;
+    stroke-width: 3;
     stroke: white;
     cursor: pointer;
 }