Sleazy Fork is available in English.

StyleFixes

Miscellaneous fixes for various pages.

  1. /* ==UserStyle==
  2. @name StyleFixes
  3. @namespace sun/userstyles
  4. @version 1.6.4
  5. @description Miscellaneous fixes for various pages.
  6. @compatible chrome
  7. @compatible edge
  8. @compatible firefox
  9. @compatible opera
  10. @compatible safari
  11. @homepageURL https://forgejo.sny.sh/sun/userstyles
  12. @supportURL https://forgejo.sny.sh/sun/userstyles/issues
  13. @contributionURL https://liberapay.com/sun
  14. @contributionAmount €1.00
  15. @author Sunny <sunny@sny.sh>
  16. @icon https://forgejo.sny.sh/sun/userstyles/raw/branch/main/icons/StyleFixes.png
  17. @copyright 2022-present, Sunny (https://sny.sh/)
  18. @license Hippocratic License; https://forgejo.sny.sh/sun/userstyles/src/branch/main/LICENSE.md
  19. @preprocessor stylus
  20. @var checkbox fandom "Fandom: Fix page offset" 1
  21. @var checkbox figma "Figma: Resizable plugin windows" 1
  22. @var checkbox filecrypt "Filecrypt: Fix captcha size" 1
  23. @var checkbox imdb "IMDb: Merge IMDb Scout lines" 1
  24. @var checkbox invidious "Invidious: Fix audio mode alignment" 1
  25. @var checkbox itch "itch.io: Fix header width" 1
  26. @var checkbox mschf "MSCHF: Bypass password prompts" 1
  27. @var checkbox sankaku "Sankaku: Hide blacklisted posts" 1
  28. @var checkbox vrchat "VRChat: Fix page height" 1
  29. ==/UserStyle== */
  30.  
  31. @-moz-document domain("fandom.com") {
  32. if fandom {
  33. .page-side-tools__wrapper {
  34. display: none;
  35. }
  36. }
  37. }
  38.  
  39. @-moz-document domain("figma.com") {
  40. if figma {
  41. .jsvm_ui--pluginUI--HIW9L .draggable_modal--positionedContainer--1aHEn {
  42. width: auto !important;
  43. height: auto !important;
  44. }
  45. .plugin-iframe-in-modal {
  46. resize: both;
  47. }
  48. }
  49. }
  50.  
  51. @-moz-document domain("filecrypt.cc") {
  52. if filecrypt {
  53. #nc {
  54. width: initial;
  55. height: initial;
  56. }
  57. }
  58. }
  59.  
  60. @-moz-document domain("imdb.com") {
  61. if imdb {
  62. .Hero__MediaContentContainer__Video-sc-kvkd64-2,
  63. #imdbscout_header {
  64. float: left;
  65. }
  66. #imdbscoutsecondbar_header {
  67. float: right;
  68. }
  69. #scout_rating_table {
  70. position: absolute;
  71. right: 0;
  72. }
  73. }
  74. }
  75.  
  76. @-moz-document regexp(".*:\\/\\/.*\\/watch\\?v=.*") {
  77. if invidious {
  78. [title="Audio mode"],
  79. [title="Video mode"] {
  80. margin-left: auto;
  81. }
  82. }
  83. }
  84.  
  85. @-moz-document domain("itch.io") {
  86. if itch {
  87. .header_widget {
  88. width: 100%;
  89. }
  90. }
  91. }
  92.  
  93. @-moz-document domain("screamclub.club"), domain("spottingplutes.com"), domain("whitewhale.is"), domain("bread.mschfmag.com"), domain("cred.mschfmag.com"), domain("versus.mschfmag.com"), domain("people.mschfmag.com") {
  94. if mschf {
  95. body {
  96. overflow: unset !important;
  97. }
  98.  
  99. #MSCHFPreloader.has-password {
  100. display: none;
  101. }
  102. }
  103. }
  104.  
  105. @-moz-document domain("chan.sankakucomplex.com") {
  106. if sankaku {
  107. .blacklisted {
  108. display: none !important;
  109. }
  110. }
  111. }
  112.  
  113. @-moz-document url-prefix("https://vrchat.com/home")
  114. {
  115. if vrchat {
  116. .content-scroll {
  117. height: auto !important;
  118. }
  119. }
  120. }