This is an automated email from the ASF dual-hosted git repository. bbovenzi pushed a commit to branch fix-empty-tooltip-position in repository https://gitbox.apache.org/repos/asf/airflow.git
commit beadf3b50b7406a5ecb633629f0239a6f38d8844 Author: Brent Bovenzi <[email protected]> AuthorDate: Wed Oct 27 11:39:12 2021 -0500 Fix hidden tooltip position Only apply a large z-index when the tooltip is supposed to be display. --- airflow/www/static/css/main.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/airflow/www/static/css/main.css b/airflow/www/static/css/main.css index baf3584..13043ef 100644 --- a/airflow/www/static/css/main.css +++ b/airflow/www/static/css/main.css @@ -454,3 +454,11 @@ label[for="timezone-other"], color: #262626; background-color: #f5f5f5; } + +.tooltip { + z-index: 0; +} + +.tooltip.in { + z-index: 1070; +}
