From 3959e6dee1391e97c0b7130d81f68fd93bae3c3e Mon Sep 17 00:00:00 2001 From: foamyguy Date: Fri, 25 Oct 2024 13:35:34 -0500 Subject: [PATCH 1/4] scrollable manufacturers list filter --- assets/css/downloads.css | 4 ++++ downloads.html | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 assets/css/downloads.css diff --git a/assets/css/downloads.css b/assets/css/downloads.css new file mode 100644 index 000000000..fa54281cc --- /dev/null +++ b/assets/css/downloads.css @@ -0,0 +1,4 @@ +.manufacturers ul{ + max-height: 300px; + overflow-y: scroll; +} \ No newline at end of file diff --git a/downloads.html b/downloads.html index 6d95a4bbd..fd92cc351 100644 --- a/downloads.html +++ b/downloads.html @@ -4,7 +4,7 @@ permalink: /downloads excerpt: CircuitPython supported boards. --- - +

Downloads

From 90d0fccdc7489f3bf31d079585ccb2dd0c265f3a Mon Sep 17 00:00:00 2001 From: foamyguy Date: Fri, 25 Oct 2024 13:39:40 -0500 Subject: [PATCH 2/4] blank line eof --- assets/css/downloads.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/css/downloads.css b/assets/css/downloads.css index fa54281cc..e6c4187ba 100644 --- a/assets/css/downloads.css +++ b/assets/css/downloads.css @@ -1,4 +1,4 @@ .manufacturers ul{ max-height: 300px; overflow-y: scroll; -} \ No newline at end of file +} From 869357a7c47a6aeccee1d93516d2ee9683067649 Mon Sep 17 00:00:00 2001 From: foamyguy Date: Fri, 25 Oct 2024 13:56:46 -0500 Subject: [PATCH 3/4] move new rule to scss file --- assets/css/downloads.css | 4 ---- assets/sass/pages/_downloads.scss | 4 ++++ 2 files changed, 4 insertions(+), 4 deletions(-) delete mode 100644 assets/css/downloads.css diff --git a/assets/css/downloads.css b/assets/css/downloads.css deleted file mode 100644 index e6c4187ba..000000000 --- a/assets/css/downloads.css +++ /dev/null @@ -1,4 +0,0 @@ -.manufacturers ul{ - max-height: 300px; - overflow-y: scroll; -} diff --git a/assets/sass/pages/_downloads.scss b/assets/sass/pages/_downloads.scss index 43029c1d2..bb6605053 100644 --- a/assets/sass/pages/_downloads.scss +++ b/assets/sass/pages/_downloads.scss @@ -232,6 +232,10 @@ } } } + .manufacturers ul { + max-height: 300px; + overflow-y: scroll; + } } @media (max-width: $screen-md) { From 15238edeb1eba2496e86b083315f9ef596270ac7 Mon Sep 17 00:00:00 2001 From: foamyguy Date: Fri, 25 Oct 2024 14:03:06 -0500 Subject: [PATCH 4/4] remove unneeded tag --- downloads.html | 1 - 1 file changed, 1 deletion(-) diff --git a/downloads.html b/downloads.html index fd92cc351..016ba5e8a 100644 --- a/downloads.html +++ b/downloads.html @@ -4,7 +4,6 @@ permalink: /downloads excerpt: CircuitPython supported boards. --- -

Downloads