Skip to content

Commit

Permalink
Fix dags table overflow (#15660)
Browse files Browse the repository at this point in the history
Adds a false bottom to the table element so we can have overlap on the final row.

Fixes #15656

GitOrigin-RevId: a0eb747b8d73f71dcf471917e013669a660cd4dd
  • Loading branch information
bbovenzi authored and Cloud Composer Team committed Sep 23, 2021
1 parent 035f8eb commit 3e55863
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions airflow/www/static/css/dags.css
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 3e55863

Please sign in to comment.