Stylus: Fix Message Boxes Width

Fixes message boxes’ width on mobile.

  1. /* ==UserStyle==
  2. @name Stylus: Fix Message Boxes Width
  3. @description Fixes message boxes’ width on mobile.
  4. @author Jason Kwok
  5. @namespace https://jasonhk.dev/
  6. @version 1.0.0
  7. @license MIT
  8. ==/UserStyle== */
  9.  
  10. @-moz-document regexp("^\\w+-extension://.+")
  11. {
  12. @media (max-width: 650px)
  13. {
  14. #message-box > div
  15. {
  16. max-width: 75vw;
  17. }
  18. }
  19. @media (max-width: 450px)
  20. {
  21. #message-box > div
  22. {
  23. max-width: 95vw;
  24. }
  25. }
  26. }

QingJ © 2025

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