您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Dreamhost Admin Panel Dark Night Mode Theme - currently undergoing build
当前为
// ==UserScript== // @name Dreamhost Admin Panel Dark Night Mode Theme // @namespace english // @description Dreamhost Admin Panel Dark Night Mode Theme - currently undergoing build // @include http*://*panel.dreamhost.com* // @version 1.8 // @run-at document-start // @grant GM_addStyle // ==/UserScript== var style = document.createElement('style'); style.type = 'text/css'; style.innerHTML = ' body, html, html body {/*\n*/ background: #363636 !important ;/*\n*/ background-color: #363636 aliceblue !important ;/*\n*/ /*\n*/}.global-alerts {/*\n*/ border-bottom: 1px solid #606060 !important ;/*\n*/ }.panel-nav {/*\n*/ /*\n*/ border-right: 1px solid #606060 !important ;/*\n*/ color: #D8D8D8 !important ;/*\n*/ /*\n*/}.no-touch .panel-main-navigation-toggle:hover {/*\n*/ color: #B3D0F0 !important ;/*\n*/}.panel-main-navigation-toggle {/*\n*/ /*\n*/ color: #cfcfcf !important ;/*\n*/ /*\n*/}.panel-main-navigation-group.is-open {/*\n*/ background: #262626 !important ;/*\n*/ box-shadow: 0 1px 0 #fff, 0 -1px 0 #dedede !important ;/*\n*/}.panel-main-navigation-group:first-child.is-open {/*\n*/ border-top-color: transparent !important ;/*\n*/ box-shadow: 0 1px 0 #606060 !important ;/*\n*/}.panel-main-navigation-button {/*\n*/ /*\n*/ /*\n*/ color: #eaeaea !important ;/*\n*/ /*\n*/}.bg-white, #disk-form a, .c-white {/*\n*/ background: #cbcbcb !important ;/*\n*/}.panel-main-navigation-group.is-open {/*\n*/ background: #262626 !important ;/*\n*/ box-shadow: 0 1px 0 #606060, 0 -1px 0 #606060 !important ;/*\n*/} /*111111111111*/ .panel-page-header {/*\n*/ background: #262626 !important ;/*\n*/ border-bottom: 1px solid #606060 !important ;/*\n*/ box-shadow: 0 1px 0 #606060 !important ;/*\n*/ /*\n*/}h1, h2, h3, h4 {/*\n*/ color: #F6F6F6 !important ;/*\n*/ /*\n*/}.Button--subcompact:not(.Button--primary), .Button--compact:not(.Button--primary), .Button--secondary, .Button--tertiary {/*\n*/ background: #6e6e6e !important ;/*\n*/}.Button {/*\n*/ color: #9BCCFF !important ;/*\n*/ border: solid 1px #9BCCFF !important ;/*\n*/ /*\n*/}.Button--danger {/*\n*/ border-color: #FFAE9C !important ;/*\n*/ color: #FFAE9C !important ;/*\n*/}.t-black, #tab-navigation h2 a:not(.is-active):hover, #tab-navigation h2 a.is-active, .c-lightest-blue, .c-lighter-blue, .c-light-blue, .c-blue, .c-teal, .c-yellow, .c-dark-yellow, .c-orange, .c-dark-orange, .c-lighter-red, .c-light-red, .c-salmon, .c-white, .c-lighter-grey, .c-light-grey, .c-grey {/*\n*/ color: #d4d4d4 !important ;/*\n*/}.Table th, .Table__m th {/*\n*/ /*\n*/ /*\n*/ color: #eaeaea !important ;/*\n*/ /*\n*/}body {/*\n*/ color: #D8D8D8 !important ;/*\n*/ /*\n*/}.Table--panel.Table__m tbody tr td a:not(.Button):hover {/*\n*/ color: #1a84f3 !important ;/*\n*/}a {/*\n*/ color: #99CBFF !important ;/*\n*/ /*\n*/}.u-text-color-success {/*\n*/ color: #98C3A1 !important ;/*\n*/}.u-text-color-error {/*\n*/ color: #D56F4D !important ;/*\n*/} /*22222222222222*/ .Alert:not(.Alert--success):not(.Alert--error) {/*\n*/ background: #7E7020 !important ;/*\n*/ /*\n*/}.fancyform {/*\n*/ /*\n*/ color: #e4e4e4 !important ;/*\n*/}.Table__m .Table__row {/*\n*/ border-bottom: 1px solid #606060 !important ;/*\n*/ border-top: 1px solid #606060 !important ;/*\n*/}.activecontentbox_body {/*\n*/ background: #a1a1a1 !important ;/*\n*/ /*\n*/}code {/*\n*/ /*\n*/ background: #bdbdbd !important ;/*\n*/ /*\n*/}code {/*\n*/ /*\n*/ border: 1px solid #E4E4E4 !important ;/*\n*/ /*\n*/}.contentbox_body, .activecontentbox_body {/*\n*/ /*\n*/ background: #a1a1a1 !important ;/*\n*/ /*\n*/}.activecontentbox_head .active {/*\n*/ color: #41D15E !important ;/*\n*/} .contentbox_body, .activecontentbox_body {/*\n*/ border: 1px solid #596a75; /*\n*/}.contentbox_body, .activecontentbox_body {/*\n*/ background: #525252 !important;/*\n*/} '; document.getElementsByTagName('head')[0].appendChild(style);