UKVAC CSS Fixes

Turn UKVAC back

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 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.

ستحتاج إلى تثبيت إضافة مثل Stylus لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتتمكن من تثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

(لدي بالفعل مثبت أنماط للمستخدم، دعني أقم بتثبيته!)

// ==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; }
`);
})();