From 1484ebbb733cee1186c6b4ab99bf2637e9f62085 Mon Sep 17 00:00:00 2001 From: StioStudio Date: Wed, 5 Jul 2023 01:10:08 +0200 Subject: [PATCH 1/6] hide-footer --- features/features.json | 5 +++++ features/hide-footer/data.json | 16 ++++++++++++++++ features/hide-footer/style.css | 6 ++++++ 3 files changed, 27 insertions(+) create mode 100644 features/hide-footer/data.json create mode 100644 features/hide-footer/style.css diff --git a/features/features.json b/features/features.json index a21ea9dd..da39e5bf 100644 --- a/features/features.json +++ b/features/features.json @@ -1,4 +1,9 @@ [ + { + "version": 2, + "id": "hide-footer", + "versionAdded": "v2.30.1" + }, { "version": 2, "id": "original-colors", diff --git a/features/hide-footer/data.json b/features/hide-footer/data.json new file mode 100644 index 00000000..a505c728 --- /dev/null +++ b/features/hide-footer/data.json @@ -0,0 +1,16 @@ +{ + "title": "Hide Footer", + "description": "The footer takes up much unesesary space. So hide it!", + "credits": [ + { "username": "stio_studio", "url": "https://scratch.mit.edu/users/stio_studio/" } + ], + "type": ["Website"], + "tags": ["New", "Featured"], + "styles": [ + { + "file": "style.css", + "runOn": "/*" + } + ] +} + \ No newline at end of file diff --git a/features/hide-footer/style.css b/features/hide-footer/style.css new file mode 100644 index 00000000..259e9a0b --- /dev/null +++ b/features/hide-footer/style.css @@ -0,0 +1,6 @@ +#footer, #donor { + display: none; +} +.container { + padding-bottom: 0px !important; +} \ No newline at end of file From 68459d47ceb576c17a9a21d341cf5767267bf5c4 Mon Sep 17 00:00:00 2001 From: StioStudio Date: Wed, 5 Jul 2023 01:22:25 +0200 Subject: [PATCH 2/6] v2.30.1 to v3.0.0 --- features/features.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/features.json b/features/features.json index da39e5bf..edc5614f 100644 --- a/features/features.json +++ b/features/features.json @@ -2,7 +2,7 @@ { "version": 2, "id": "hide-footer", - "versionAdded": "v2.30.1" + "versionAdded": "v3.0.0" }, { "version": 2, From ed2f24ba6e9b881f4d8aced3ca6954e5649917f3 Mon Sep 17 00:00:00 2001 From: MaterArc <105017592+MaterArc@users.noreply.github.com> Date: Tue, 4 Jul 2023 20:12:05 -0400 Subject: [PATCH 3/6] Improve Grammar --- features/hide-footer/data.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/features/hide-footer/data.json b/features/hide-footer/data.json index a505c728..0c314460 100644 --- a/features/hide-footer/data.json +++ b/features/hide-footer/data.json @@ -1,6 +1,6 @@ { "title": "Hide Footer", - "description": "The footer takes up much unesesary space. So hide it!", + "description": "The footer takes up a lot of unnecessary space. So hide it!", "credits": [ { "username": "stio_studio", "url": "https://scratch.mit.edu/users/stio_studio/" } ], @@ -13,4 +13,4 @@ } ] } - \ No newline at end of file + From a76e413a8f1f454e5a203f2dcf38e315ae2aaf34 Mon Sep 17 00:00:00 2001 From: MaterArc <105017592+MaterArc@users.noreply.github.com> Date: Wed, 5 Jul 2023 08:04:07 -0400 Subject: [PATCH 4/6] Remove Selected Navbar This is all you need (I tested it already) --- features/hide-footer/style.css | 3 --- 1 file changed, 3 deletions(-) diff --git a/features/hide-footer/style.css b/features/hide-footer/style.css index 259e9a0b..82bda64e 100644 --- a/features/hide-footer/style.css +++ b/features/hide-footer/style.css @@ -1,6 +1,3 @@ #footer, #donor { display: none; } -.container { - padding-bottom: 0px !important; -} \ No newline at end of file From 9a27ba4b8573eb0b82c4ea696fedecfffac2cb7d Mon Sep 17 00:00:00 2001 From: StioStudio Date: Wed, 5 Jul 2023 23:09:52 +0200 Subject: [PATCH 5/6] #content { padding-bottom: 0px; } --- features/hide-footer/style.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/features/hide-footer/style.css b/features/hide-footer/style.css index 82bda64e..015878d6 100644 --- a/features/hide-footer/style.css +++ b/features/hide-footer/style.css @@ -1,3 +1,6 @@ #footer, #donor { display: none; } +#content { + padding-bottom: 0px; +} \ No newline at end of file From b757eb9fe5b9874dca9ad858e4fdafbecb34fec2 Mon Sep 17 00:00:00 2001 From: StioStudio Date: Wed, 5 Jul 2023 23:13:42 +0200 Subject: [PATCH 6/6] "dynamic": true --- features/hide-footer/data.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/features/hide-footer/data.json b/features/hide-footer/data.json index 0c314460..8e556b11 100644 --- a/features/hide-footer/data.json +++ b/features/hide-footer/data.json @@ -11,6 +11,7 @@ "file": "style.css", "runOn": "/*" } - ] + ], + "dynamic": true }