Europa-Forums - Make Dark Theme Work

Remove annoying pop-up menu on the forum

// ==UserScript==
// @name         Europa-Forums - Make Dark Theme Work
// @version      0.3
// @description  Remove annoying pop-up menu on the forum
// @author       Mentathiel
// @match        https://www.europaguild.eu/forum/*
// @grant        none
// @namespace http://tampermonkey.net/
// ==/UserScript==

(function() {
    'use strict';

    $( ".dropdown" ).css("display", "none"); //hides the forum dropdown menu
})();