From 3e5586329eb60e97f69fbfe64dea7004899e8007 Mon Sep 17 00:00:00 2001 From: Brent Bovenzi Date: Tue, 4 May 2021 19:28:05 -0500 Subject: [PATCH] Fix dags table overflow (#15660) Adds a false bottom to the table element so we can have overlap on the final row. Fixes #15656 GitOrigin-RevId: a0eb747b8d73f71dcf471917e013669a660cd4dd --- airflow/www/static/css/dags.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/airflow/www/static/css/dags.css b/airflow/www/static/css/dags.css index d6da029668e..6d25949951f 100644 --- a/airflow/www/static/css/dags.css +++ b/airflow/www/static/css/dags.css @@ -31,6 +31,10 @@ .dags-table-body { margin: 0 1px; overflow-x: auto; + + /* This allows small dropdowns to overlap the table element */ + padding-bottom: 55px; + margin-bottom: -55px; } .dags-table-more {