itch.io small user tools

Prevents itch.io game page user tools from covering page content on large screens

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

/* ==UserStyle==
@name         itch.io small user tools
@namespace    https://mkps.app/
@version      1.0.2
@description  Prevents itch.io game page user tools from covering page content on large screens
@author       MK
@license      MIT
==/UserStyle== */

@-moz-document domain("itch.io") {
	.user_tools {
		position: static;
		margin: 0;
		white-space: nowrap;
		overflow: auto;
		text-align: left;
		padding: 8px 0 8px 10px;
		background: #2b2b2b;
		background: var(--itchio_ui_bg_dark, #2b2b2b);
		width: 100%;
		box-sizing: border-box;
		box-shadow: inset 0 5px 5px -5px rgba(0, 0, 0, 0.5);
	}

	.user_tools > li {
		display: inline-block;
		vertical-align: top;
		margin: 0 10px 0 0;
	}

	.user_tools .action_btn {
		font-size: 13px;
		padding: 0 6px;
		height: 26px;
	}

	.randomizer_embed .user_tools {
		display: none;
	}

	.user_tools, .user_tools.hidden {
		opacity: unset;
		transition: unset;
		transform: unset;
	}
}