Bandcamp: Stick Track List & Description to Player

Moves album variations and merchandise down so playlist or track description appears right below player.

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

/* ==UserStyle==
@name        Bandcamp: Stick Track List & Description to Player
@description Moves album variations and merchandise down so playlist or track description appears right below player.
@namespace   myfonj
@version     1.1.0
@license     CC0 - Public Domain
@author      myf
==/UserStyle== */
@-moz-document domain("bandcamp.com") {
/*
Originally https://userstyles.org/styles/123397/
https://greasyfork.org/en/scripts/407595
https://userstyles.world/style/24273

Changelog
1.1.0 (2025-09-19) Added tiny "current track" decorations.
1.0.0 (2025-09-19) Removed the non-bandcamp hostnames scoping, basically noone uses branded BC instances. RIP regexp("https?://(?!([^.]+\\.)*?bandcamp.com/)[^/]+/.*").
0.0.1 (around 2018) Init, scoped globally.

Quite unbelieavable these selectors still work, after nearly a decade…
*/
/*
move merchandising down, so playlist or track description moves up below player
*/
#centerWrapper #pgBd #trackInfoInner {
	display: flex;
	flex-direction: column;
}
#centerWrapper #pgBd #trackInfoInner > .tralbumCommands  {
	order: 1;
}
/*
move upcoming shows down, so discography moves up below band info
*/
#centerWrapper #pgBd #rightColumn {
	display: flex;
	flex-direction: column;
}
#centerWrapper #pgBd #rightColumn > #showography {
	order: 1;
}
/*
more distinguishable "current" and "currently playing" track
*/
.current_track {
 outline: 1px solid color-mix(in srgb, currentcolor, transparent);
}
.play_status.playing {
 filter: invert(1);
}
/*
make modals less modal, probably not needed anymore (?)
* OFF for now /
.ui-widget-overlay {
	display: none;
}
.ui-dialog.ui-widget.ui-widget-content.ui-corner-all.nu-dialog.no-title {
	position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    left: auto !important;
}
/* */

}