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

potiuk pushed a commit to branch staging
in repository https://gitbox.apache.org/repos/asf/airflow-site.git


The following commit(s) were added to refs/heads/staging by this push:
     new e5ac3b1058 Fix #1220 missing scrollbar in _dropdown.scss (#1233)
e5ac3b1058 is described below

commit e5ac3b1058423ab004db68aeee1df9f3b81aba0a
Author: Camilo Londoño López <[email protected]>
AuthorDate: Tue Aug 26 10:15:19 2025 -0500

    Fix #1220 missing scrollbar in _dropdown.scss (#1233)
    
    Fix dropdown in docs-version-selector not displaying a scrollbar to select 
older versions
---
 landing-pages/site/assets/scss/_dropdown.scss | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/landing-pages/site/assets/scss/_dropdown.scss 
b/landing-pages/site/assets/scss/_dropdown.scss
index 888d67c719..51ec38b460 100644
--- a/landing-pages/site/assets/scss/_dropdown.scss
+++ b/landing-pages/site/assets/scss/_dropdown.scss
@@ -33,4 +33,9 @@
   a {
     @extend .bodytext__medium--brownish-grey;
   }
+
+  .dropdown-menu {
+    max-height: 100%;
+    overflow-y: auto;
+  }
 }

Reply via email to