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:01 UTC

[airflow] branch fix/firefox_scrollbars created (now 6c732bc)

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

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


      at 6c732bc  Prevent unused scrollbars from appearing in FF on Linux

This branch includes the following new commits:

     new 6c732bc  Prevent unused scrollbars from appearing in FF on Linux

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



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

Posted by ry...@apache.org.
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;
 }