Greasy Fork

来自缓存

Greasy Fork is available in English.

Bandcamp: Stick Track List & Description to Player

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

当前为 2020-07-23 提交的版本,查看 最新版本

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 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     0.0.1
@license     CC0 - Public Domain
==/UserStyle== */

@-moz-document domain("bandcamp.com"), regexp("https?://(?!([^.]+\\.)*?bandcamp.com/)[^/]+/.*") {
/*

Bandcamp: Stick Track List to Player

Originally at https://userstyles.org/styles/123397/

Document rules means
- "anything on bandcamp.com domain and subdomains" (first)
- "anything on other domains and subdomains served via http or https" (second).

Second is necessary for custom bandcamp domains. Is unnecessarily complicated, will be removed in next version.

It is for good categorisation.

*/
	/*
	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;
	}

	/*
	make modals less modal
	*/
	/* * 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;
	}
	/* */
}