Fix YouTube Watch Flexible Menu Items

To fix YouTube Watch Flexible Menu Items

目前为 2023-09-12 提交的版本,查看 最新版本

  1. /* ==UserStyle==
  2. @name Fix YouTube Watch Flexible Menu Items
  3. @namespace github.com/openstyles/stylus
  4. @version 1.1.1
  5. @description To fix YouTube Watch Flexible Menu Items
  6. @author CY Fung
  7. @license MIT
  8. @preprocessor stylus
  9. ==/UserStyle== */
  10. @-moz-document domain("youtube.com") {
  11.  
  12. #primary.ytd-watch-flexy #below ytd-video-owner-renderer.style-scope.ytd-watch-metadata,
  13. #primary.ytd-watch-flexy #below #owner {
  14. flex-basis: 90%;
  15. max-width: intrinsic;
  16. max-width: -moz-max-content;
  17. max-width: -webkit-max-content;
  18. max-width: max-content;
  19. }
  20.  
  21. ytd-watch-metadata #owner ~ #actions.item.style-scope.ytd-watch-metadata {
  22. flex-basis: 260px;
  23. min-width: 260px !important;
  24. }
  25. /* Insert code here... */
  26. }