diff --git a/resources/assets/snippets/reorder-now-playing-view.png b/resources/assets/snippets/reorder-now-playing-view.png new file mode 100644 index 00000000..e8d0969f Binary files /dev/null and b/resources/assets/snippets/reorder-now-playing-view.png differ diff --git a/resources/snippets.json b/resources/snippets.json index 27843245..d32a521d 100644 --- a/resources/snippets.json +++ b/resources/snippets.json @@ -396,6 +396,11 @@ "preview": "resources/assets/snippets/More-Visible-Unplayable-Tracks" }, { + "title": "Reorder Now Playing View", + "description": "Changes the order in which the elements are displayed in the Now Playing View to: 1. Next in queue, 2. Now playing, 3. Lyrics, 4. About the artist, 5. Credits, 6. On tour, 7. Merch", + "code": "/* Now Playing */\n .main-nowPlayingView-nowPlayingWidget {\n order: 2;\n }\n /* Lyrics */\n .main-nowPlayingView-sectionHeaderSpacing {\n order: 3;\n }\n /* About */\n .main-nowPlayingView-aboutArtistV2 {\n order: 4;\n }\n /* Credits */\n .main-nowPlayingView-credits {\n order: 5;\n }\n /* Tour */\n .main-nowPlayingView-artistOnTour {\n order: 6;\n }\n /* Merch */\n .main-nowPlayingView-merch {\n order: 7;\n }\n /* Queue */\n .main-nowPlayingView-queue {\n order: 1;\n }\n", + "preview": "resources/assets/snippets/reorder-now-playing-view.png" +}, "title": "Hide Mini Player Button", "description": "Hides the Mini Player button.", "code": "button:has(path[d='M16 2.45c0-.8-.65-1.45-1.45-1.45H1.45C.65 1 0 1.65 0 2.45v11.1C0 14.35.65 15 1.45 15h5.557v-1.5H1.5v-11h13V7H16V2.45z']) {display: none;}",