You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ka...@apache.org on 2020/10/16 14:03:19 UTC

[airflow] branch master updated: Prevent pop-over elements from being cut off by hidden overflow (#11574)

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

kaxilnaik 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 399b81d  Prevent pop-over elements from being cut off by hidden overflow (#11574)
399b81d is described below

commit 399b81d3afcd1941c28549911dff07546befe4b3
Author: Ryan Hamilton <ry...@ryanahamilton.com>
AuthorDate: Fri Oct 16 10:02:07 2020 -0400

    Prevent pop-over elements from being cut off by hidden overflow (#11574)
---
 airflow/www/static/css/bootstrap-theme.css | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/airflow/www/static/css/bootstrap-theme.css b/airflow/www/static/css/bootstrap-theme.css
index 61c8c57..4084a8f 100644
--- a/airflow/www/static/css/bootstrap-theme.css
+++ b/airflow/www/static/css/bootstrap-theme.css
@@ -1748,7 +1748,7 @@ table th[class*="col-"] {
   background-color: #ebcccc;
 }
 .table-responsive {
-  overflow-x: auto;
+  overflow: visible;
   min-height: 0.01%;
 }
 
@@ -1756,8 +1756,6 @@ table th[class*="col-"] {
   .table-responsive {
     width: 100%;
     margin-bottom: 15px;
-    overflow-y: hidden;
-    -ms-overflow-style: -ms-autohiding-scrollbar;
     border: 1px solid #ddd;
   }
   .table-responsive > .table {