You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by je...@apache.org on 2021/11/03 21:30:07 UTC

[airflow] 08/17: Fix hidden tooltip position (#19261)

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

jedcunningham pushed a commit to branch v2-2-test
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit 7a1432400de5a6527669f3b3f6ba55de6170a7af
Author: Brent Bovenzi <br...@gmail.com>
AuthorDate: Tue Nov 2 11:09:17 2021 -0600

    Fix hidden tooltip position (#19261)
    
    Only apply a large z-index when the tooltip is supposed to be display.
    
    (cherry picked from commit 37767c1ba05845266668c84dec7f9af967139f42)
---
 airflow/www/static/css/main.css | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/airflow/www/static/css/main.css b/airflow/www/static/css/main.css
index baf3584..ad13ac6 100644
--- a/airflow/www/static/css/main.css
+++ b/airflow/www/static/css/main.css
@@ -454,3 +454,12 @@ label[for="timezone-other"],
   color: #262626;
   background-color: #f5f5f5;
 }
+
+.tooltip {
+  z-index: 0;
+}
+
+.tooltip.in,
+.tooltip.d3-tip {
+  z-index: 1070;
+}