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:54:38 UTC

[airflow] branch master updated: Prevent unused scrollbars from appearing in FF on Linux (#12795)

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

ryanahamilton 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 28e83c3  Prevent unused scrollbars from appearing in FF on Linux (#12795)
28e83c3 is described below

commit 28e83c30eb6ccd8662cecaaf26590cc0063af65a
Author: Ryan Hamilton <ry...@ryanahamilton.com>
AuthorDate: Thu Dec 3 15:53:04 2020 -0500

    Prevent unused scrollbars from appearing in FF on Linux (#12795)
---
 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;
 }