Bandcamp: Stick Track List & Description to Player

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

  1. /* ==UserStyle==
  2. @name Bandcamp: Stick Track List & Description to Player
  3. @description Moves album variations and merchandise down so playlist or track description appears right below player.
  4. @namespace myfonj
  5. @version 0.0.1
  6. @license CC0 - Public Domain
  7. ==/UserStyle== */
  8.  
  9. @-moz-document domain("bandcamp.com"), regexp("https?://(?!([^.]+\\.)*?bandcamp.com/)[^/]+/.*") {
  10. /*
  11.  
  12. Bandcamp: Stick Track List to Player
  13.  
  14. Originally at https://userstyles.org/styles/123397/
  15.  
  16. Document rules means
  17. - "anything on bandcamp.com domain and subdomains" (first)
  18. - "anything on other domains and subdomains served via http or https" (second).
  19.  
  20. Second is necessary for custom bandcamp domains. Is unnecessarily complicated, will be removed in next version.
  21.  
  22. It is for good categorisation.
  23.  
  24. */
  25. /*
  26. move merchandising down, so playlist or track description moves up below player
  27. */
  28. #centerWrapper #pgBd #trackInfoInner {
  29. display: flex;
  30. flex-direction: column;
  31. }
  32. #centerWrapper #pgBd #trackInfoInner > .tralbumCommands {
  33. order: 1;
  34. }
  35. /*
  36. move upcoming shows down, so discography moves up below band info
  37. */
  38. #centerWrapper #pgBd #rightColumn {
  39. display: flex;
  40. flex-direction: column;
  41. }
  42. #centerWrapper #pgBd #rightColumn > #showography {
  43. order: 1;
  44. }
  45.  
  46. /*
  47. make modals less modal
  48. */
  49. /* * OFF for now /
  50. .ui-widget-overlay {
  51. display: none;
  52. }
  53. .ui-dialog.ui-widget.ui-widget-content.ui-corner-all.nu-dialog.no-title {
  54. position: fixed !important;
  55. top: 0 !important;
  56. right: 0 !important;
  57. bottom: auto !important;
  58. left: auto !important;
  59. }
  60. /* */
  61. }

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址