StyleFixes

Miscellaneous fixes for various pages.

As of 01.05.2022. See апошняя версія.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

/* ==UserStyle==
@name            StyleFixes
@namespace       https://github.com/TheLastZombie/
@version         1.3.0
@description     Miscellaneous fixes for various pages.
@homepageURL     https://thelastzombie.github.io/userstyles/
@supportURL      https://github.com/TheLastZombie/userstyles/issues/new?labels=StyleFixes
@contributionURL https://ko-fi.com/rcrsch
@author          TheLastZombie <[email protected]>
@icon            https://raw.githubusercontent.com/TheLastZombie/userstyles/main/icons/StyleFixes.png
@copyright       2022, TheLastZombie (https://github.com/TheLastZombie/)
@license         MIT; https://github.com/TheLastZombie/userstyles/blob/main/LICENSE
@preprocessor    stylus
@var checkbox    fandom    "Fandom: Fix page offset"         1
@var checkbox    filecrypt "Filecrypt: Fix captcha size"     1
@var checkbox    imdb      "IMDb: Merge IMDb Scout lines"    1
@var checkbox    itch      "itch.io: Fix header width"       1
@var checkbox    sankaku   "Sankaku: Hide blacklisted posts" 1
@var checkbox    vrchat    "VRChat: Fix page height"         1
==/UserStyle== */

@-moz-document domain("fandom.com") {
  if fandom {
    .page-side-tools__wrapper {
      display: none;
    }
  }
}

@-moz-document domain("filecrypt.cc") {
  if filecrypt {
    #nc {
      width: initial;
      height: initial;
    }
  }
}

@-moz-document domain("imdb.com") {
  if imdb {
    .Hero__MediaContentContainer__Video-sc-kvkd64-2,
    #imdbscout_header {
      float: left;
    }
    #imdbscoutsecondbar_header {
      float: right;
    }
    #scout_rating_table {
      position: absolute;
      right: 0;
    }
  }
}

@-moz-document domain("itch.io") {
  if itch {
    .header_widget {
      width: 100%;
    }
  }
}

@-moz-document domain("chan.sankakucomplex.com") {
  if sankaku {
    .blacklisted {
      display: none !important;
    }
  }
}

@-moz-document url-prefix("https://vrchat.com/home")
{
  if vrchat {
    .content-scroll {
      height: auto !important;
    }
  }
}