UKVAC CSS Fixes

Turn UKVAC back

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

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

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @license      GNU GPLv3
// @name         UKVAC CSS Fixes
// @namespace    http://tampermonkey.net/
// @version      0.3
// @description  Turn UKVAC back
// @author       rogalian
// @match        https://www.ukvac.com/forum/*
// @icon         https://www.ukvac.com/favicon.ico
// @grant        GM_addStyle
// @run-at       document-start
// ==/UserScript==

(function() {
    'use strict';

    GM_addStyle (`
      .p-header { max-width: unset !important; }
      .p-header-inner { max-width: unset !important; }
      .p-nav { max-width: unset !important; }
      .p-navSticky { max-width: unset !important; }
      .p-nav-inner { max-width: unset !important; }
      .p-sectionLinks { max-width: unset !important; }
      .p-sectionLinks-inner { max-width: unset !important; }
      .menu-footer { display: none !important; }
      .userBanner { display: none !important; }
      .js-reactionsList { display: none !important; }
      .p-body { max-width:  }
      .p-body-inner { max-width: unset !important; }
      .p-body-sidebarCol { display: none !important; }
      .p-body-sidebar { display: none !important; }
      .p-footer { max-width: unset !important; }
      .p-footer-inner { max-width: unset !important; }
      .reaction { display: none !important; }
      .ratingStarsRow { display: none !important; }
      .bratr-rating { display: none !important; }
      .shareButtons { display: none !important; }
      .message-attribution-gadget { display: none !important; }
      .message-userExtras { display: none !important; }
      .reactionsBar { display: none !important; }
      .p-navgroup-link--dbtech-credits { display: none !important; }
      .p-navgroup-link--dbtech-donate { display: none !important; }
      .p-navgroup-link--alerts { display: none !important; }
      .p-footer-copyright { display: none !important; }
`);
})();