You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ry...@apache.org on 2020/12/03 20:40:02 UTC

[airflow] 01/01: Prevent unused scrollbars from appearing in FF on Linux

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

ryanahamilton pushed a commit to branch fix/firefox_scrollbars
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit 6c732bccb5b91177a7951a78a99de9d7e2b09679
Author: Ryan Hamilton <ry...@ryanahamilton.com>
AuthorDate: Thu Dec 3 15:39:01 2020 -0500

    Prevent unused scrollbars from appearing in FF on Linux
---
 airflow/www/static/css/main.css | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/airflow/www/static/css/main.css b/airflow/www/static/css/main.css
index 0c2e0cd..6e9f457 100644
--- a/airflow/www/static/css/main.css
+++ b/airflow/www/static/css/main.css
@@ -442,5 +442,5 @@ label[for="timezone-other"],
 
 .task-instance-modal-column {
   margin-top: 8px;
-  overflow-x: scroll;
+  overflow-x: auto;
 }