NodeCraft Dark Mode

Give NodeCraft CP a nice dark theme

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

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

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         NodeCraft Dark Mode
// @namespace    http://p455w0rd.net/
// @version      1.2
// @description  Give NodeCraft CP a nice dark theme
// @author       @TheRealp455w0rd
// @match        https://nodecraft.com/services*
// @grant        all
// ==/UserScript==

function addGlobalStyle(css) {
    var head, style;
    head = document.getElementsByTagName('head')[0];
    if (!head) { return; }
    style = document.createElement('style');
    style.type = 'text/css';
    style.innerHTML = css;
    head.appendChild(style);
}

addGlobalStyle('header #logo { background:url(http://nodecraft.com/assets/images/logo/solid-white-transparent.png) no-repeat center/100%; width:318px!important; height:86px!important; }');
addGlobalStyle('div.content { background:#000!important;color:#fff!important }');
addGlobalStyle('#npHeader .npStatusButton span { background:transparent!important }');
addGlobalStyle('#npHeader .npStatusButton.start span, div#players ul li, .bukget .bukgetPlugins li .text strong { color:#000!important }');
addGlobalStyle('#npHeader .npStatusButton span:hover, div.contentHeader, #nodePanel #npSidebar nav ul li a, #nodePanel #npSidebar nav>ul>li>a .icon:before, .bukget .bukgetContent .bukgetNavbar>ul>li>a, .bukget .bukgetContent .bukgetNavbar>ul>li>a .icon:before { color:#fff!important }');
addGlobalStyle('#nodePanel #npSidebar nav>ul>li.active>a:hover, #nodePanel #npSidebar nav>ul>li>a:nth-child(1):hover { color:#ccdae8!important; }');
addGlobalStyle('.bukget .bukgetPlugins li { background:#888!important; }');
addGlobalStyle('ul.contentItems, ul.contentItems li, ul.dayPicker { color:#000!important;background:#232323!important }');
addGlobalStyle('div.input input, div.field label, select.ng-pristine option, select.ng-pristine, div.contentBody, .bukgetTitle { color:#fff!important;background:#232323!important }');
addGlobalStyle('div#maintenence, div#npHeader, div.npStatusButton, div#npSidebar nav ul li a, div.contentHeader, div#npContent div div.padding, div.infoSection table tbody tr td, div#nodePanel, .owl-theme .owl-controls, div.owl-prev, div.owl-next, #recommendedLists, .bukget .pluginPage .pluginMain, .bukget .pluginPage .pluginSidebar, .pagination { background:#232323!important }');
addGlobalStyle('div#npStatus div.start, div#npStatus div.stop { height:74px!important; }');
addGlobalStyle('.bukget .bukgetPlugins li .text p { color:#232323!important; }');
addGlobalStyle('.bukget .install { background:#232323!important; }');
addGlobalStyle('.bukget .install:hover { background:#229113!important;color:#000!important; }');
addGlobalStyle('div#SSDGaguePerc.span { background:#0ea7e7!important; }');
addGlobalStyle('div#npStatusBar { overflow:hidden!important; }');
addGlobalStyle('.bukget .bukgetPlugins li.noPlugins { width:825px!important;overflow:hidden!important;color:#232323!important; }');
addGlobalStyle('div#npInfoBoxes .box, div.diskGaugeBar, #nodePanel #fileManager>ul li:hover { background:#5a5b5d!important; }');
addGlobalStyle('header { background:rgba(0,0,0,1) url(../images/headerbg.png) 0 -10px!important; }');
addGlobalStyle('div#npInfoBoxes div.box h4, div#npInfoBoxes div.box p strong, div#npInfoBoxes div.box p span { color:#fff!important }');
addGlobalStyle('div#npInfoBoxes div.box p strong, .bukget .bukgetPlugins li .text strong { font-weight:bold!important }');

// Uncomment following line to hide Bukkit Plugins link
//addGlobalStyle('#nodePanel #npSidebar nav>ul>li.subNav>ul>li:nth-child(2) { display:none; }');