You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ry...@apache.org on 2021/04/08 16:24:47 UTC

[airflow] branch master updated: allow hiding of all edges when highlighting states (#15281)

This is an automated email from the ASF dual-hosted git repository.

ryanahamilton pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/master by this push:
     new 1d635ef  allow hiding of all edges when highlighting states (#15281)
1d635ef is described below

commit 1d635ef0aefe995553059ee5cf6847cf2db65b8c
Author: Ryan Hamilton <ry...@ryanahamilton.com>
AuthorDate: Thu Apr 8 12:24:30 2021 -0400

    allow hiding of all edges when highlighting states (#15281)
---
 airflow/www/static/css/graph.css | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/airflow/www/static/css/graph.css b/airflow/www/static/css/graph.css
index a260fa1..962a3b5 100644
--- a/airflow/www/static/css/graph.css
+++ b/airflow/www/static/css/graph.css
@@ -43,7 +43,8 @@ svg {
   transition: stroke 0.2s ease-in-out, opacity 0.2s ease-in-out;
 }
 
-.edgePath[data-highlight="fade"] {
+.edgePath[data-highlight="fade"],
+.edgePaths[data-highlight="fade"] > .edgePath {
   opacity: 0.2 !important;
 }