Simply the cutest

Poprawa wyglądu NI

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

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

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Simply the cutest
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Poprawa wyglądu NI
// @author       Pepesz
// @match        https://*.margonem.pl/
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    /*
    Lepsze alerty autorstwa "Beh"
    */
    $(`<style>
    .message{
        pointer-events: none !important;
    }
    .message .inner{
        color:white;
        font-size:15px;
    }

    .cooldown{
        text-shadow: -1px -1px 1px #000, -1px 1px 1px #000, 1px -1px 1px #000, 1px 1px 1px #000 !important;
    }

    .layer.interface-layer .main-column.right-column{
        background: #202020 !important;
        border: 1px solid #7e7474 !important;
        box-shadow: inset 0 0 3px 3px #000 !important;
    }

    .layer.interface-layer .main-column.right-column{
        width: 254px !important;
    }

    .layer.interface-layer .main-column.right-column .border{
        background: none !important;
    }

    .game-window-positioner .character_wrapper .stats-wrapper{
        right: 8px !important;
    }

    .right-column .inner-wrapper .battle-set-wrapper{
        left: 8px !important;
    }

    .game-window-positioner .character_wrapper .pvp-btn{
        left: 82px !important;
    }

    .game-window-positioner .inventory_wrapper .inventory-grid-bg{
        right: 8px !important;
    }

    .game-window-positioner .inventory_wrapper .bags-navigation{
        right: 8px !important;
    }

    .game-window-positioner .character_wrapper .equipment-wrapper{
        left: 8px !important;
    }

    .layer.interface-layer .main-column .extended-stats{
        top: -1px !important;
        background: #202020 !important;
        border: 1px solid #7e7474 !important;
        box-shadow: inset 0 0 3px 0px #000 !important;
    }

    .bottomItem .amount, .item .amount{
        border: none !important;
        bottom: 1px !important;
        right: 1px !important;
    }

    .layer.interface-layer .main-column.left-column .border{
        background: none !important;
    }

    .b_wrapper{
        width: 234px !important;
    }

    .addonDisplay-hide-bag{
        left: 69px !important;
    }

    .addonDisplay-single-wrapper{
        padding: 5px 0px 0px 0px !important;
    }

</style>`).appendTo('head');

})();