Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(snippets): add Hide New release from #826

Open
wants to merge 30 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
b49b1b5
feat: add snippets to Hide `Open miniPlayer`, `Full screen` buttons.
Jun 2, 2024
802c826
feat: update snippets preview of `Hide Open miniPlayer`, ` Hide Full …
Jun 2, 2024
54db6a1
Merge branch 'spicetify:main' into main
Ender-Wang Jun 7, 2024
12790ee
chore: lint with biome
Ender-Wang Jun 7, 2024
cdeef39
Merge branch 'main' of https://github.com/Ender-Wang/marketplace
Ender-Wang Jun 7, 2024
3df585e
Merge branch 'spicetify:main' into main
Ender-Wang Jun 7, 2024
411d11c
fix(snippets): fix left margin of `Hover Panels`
Ender-Wang Jun 7, 2024
57b9cf5
feat(snippets): add a `New Hover Panel`
Ender-Wang Jun 8, 2024
8b6bcc8
Merge branch 'main' into main
Ender-Wang Jun 16, 2024
30a2d8c
Merge branch 'main' into main
rxri Jun 17, 2024
dd9ca7e
Merge branch 'spicetify:main' into main
Ender-Wang Jun 23, 2024
a42989f
feat(snippets): add a `Dynamic Left Sidebar`
Ender-Wang Jun 23, 2024
e9c0df8
fix(snippets): fix padding on the left
Ender-Wang Jun 23, 2024
d57a930
fix(snippets): refine padding animation
Ender-Wang Jun 23, 2024
c724913
Update Dynamic-Left-Sidebar.gif
Ender-Wang Jun 23, 2024
294ac58
feat(snippets): disable draggle opt
Ender-Wang Jul 4, 2024
d11e938
fix(snippets): fix custom app icon&text glitch during animation
Ender-Wang Jul 4, 2024
0d7182f
Update Dynamic-Left-Sidebar.gif
Ender-Wang Jul 4, 2024
55676f9
fix(snippets): update description
Ender-Wang Jul 5, 2024
1a2d3c9
Merge branch 'main' into main
theRealPadster Jul 5, 2024
43c1e9e
Merge remote-tracking branch 'upstream/main'
Ender-Wang Jul 5, 2024
41ac29c
Merge branch 'spicetify:main' into main
Ender-Wang Jul 5, 2024
8dfe2d9
Merge remote-tracking branch 'upstream/main'
Ender-Wang Jul 13, 2024
1d7e480
fix(snippets): fix text overlapping issue
Ender-Wang Jul 13, 2024
f14fc5b
feat(snippets): remove duplicates
Ender-Wang Jul 13, 2024
f9f17ad
Merge branch 'main' of https://github.com/Ender-Wang/marketplace
Ender-Wang Aug 15, 2024
4118a3f
fix(snippets): disable sidebar collapse/expand when clicking "Your Li…
Ender-Wang Aug 15, 2024
ae3d0f3
feat(snippets): make a copy that works with `betterLibrary` by `sowgr…
Ender-Wang Aug 17, 2024
4fd100b
feat(snippets): add `Hide New release from`
Ender-Wang Aug 21, 2024
4e213bd
Merge branch 'main' into hide-new-release-from
Ender-Wang Aug 27, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 13 additions & 1 deletion resources/snippets.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,22 @@
},
{
"title": "Dynamic Left Sidebar",
"description": "Make the left sidebar dynamic, so it only shows when you hover over it and pushes the main content to the right.",
"description": "Install this one if you use 'betterLibrary' by sowgro! Make the left sidebar dynamic, so it only shows when you hover over it and pushes the main content to the right.",
"code": "#Desktop_LeftSidebar_Id {\n width: 0px;\n transition: width 0.5s ease, padding-left 0.5s ease;\n z-index: 12;\n}\n#Desktop_LeftSidebar_Id:hover {\n padding-left: 8px;\n width: 280px;\n}\n:root {\n margin-left: -8px;\n}\nsvg[data-encore-id='icon']{\n overflow: visible;\n}\n#Desktop_LeftSidebar_Id span {\n white-space: nowrap;\n}",
"preview": "resources/assets/snippets/Dynamic-Left-Sidebar.gif"
},
{
"title": "Dynamic Left Sidebar",
"description": "Make the left sidebar dynamic, so it only shows when you hover over it and pushes the main content to the right.",
"code": "#Desktop_LeftSidebar_Id {\n width: 0px;\n transition: width 0.5s ease, padding-left 0.5s ease;\n z-index: 12;\n}\n#Desktop_LeftSidebar_Id:hover {\n padding-left: 8px;\n width: 280px;\n}\n:root {\n margin-left: -8px;\n}\nsvg[data-encore-id='icon']{\n overflow: visible;\n}\n#Desktop_LeftSidebar_Id span {\n white-space: nowrap;\n}\nbutton[aria-label='Collapse Your Library'] {\n pointer-events: none;\n}",
"preview": "resources/assets/snippets/Dynamic-Left-Sidebar.gif"
},
{
"title": "Hide New release from",
"description": "Hides the 'New release from' section on the home page.",
"code": "section[aria-label^='New release from'] {\n display: none;\n}",
"preview": "resources/assets/snippets/Hide-New-release-from.png"
},
{
"title": "Hide Made For YOU",
"description": "Hide the 'Made For YOU' section on the home page.",
Expand Down
Loading