您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Corrections of meteoblue.com CSS
当前为
- // ==UserScript==
- // @name CSS: meteoblue.com
- // @description Corrections of meteoblue.com CSS
- // @author MK
- // @homepage https://greasyfork.org/en/scripts/419280
- // @namespace https://greasyfork.org/users/309172
- // @include https://www.meteoblue.com/*
- // @include http://www.meteoblue.com/*
- // @version 1.0
- // ==/UserScript==
- (function() {var css = [" /*Position of cloud icons*/",
- " .picto .weekday.alt {",
- " line-height: unset !important;",
- " }",
- "",
- " /*Font size in hourly forecast table*/",
- " .hourly-forecast .hourlywind > tbody {",
- " font-size: 70% !important;",
- " }",
- "",
- " /*Dividers between cloud icons*/",
- " /*.hourly-forecasr .hourlywind > tbody > tr:nth-of-type(1),*/",
- " .hourly-forecast .hourlywind tr.pictos_3h td {",
- " padding: 0 !important;",
- " border-right-color: gray !important;",
- " border-right-style: solid !important;",
- " border-right-width: thin !important;",
- " }",
- "",
- " /*Active tab colour*/",
- " .tab.active {",
- " background: #ffc4000f !important;",
- " /*background: #ffffff !important;*/",
- " }",
- " /*Tab colour*/",
- " .tab {",
- " background: #e7ecf0 !important;",
- " /*background: #eaeaea !important;*/",
- " }",
- " /*Predictability meter background*/",
- " .tab_content .tab_predictability .meter_outer {",
- " background-color: hsl(0, 0%, 96.9%) !important;",
- " }"
- ].join("\n");
- if (typeof GM_addStyle != 'undefined') {
- GM_addStyle(css);
- } else if (typeof PRO_addStyle != 'undefined') {
- PRO_addStyle(css);
- } else if (typeof addStyle != 'undefined') {
- addStyle(css);
- } else {
- var node = document.createElement('style');
- node.type = 'text/css';
- node.appendChild(document.createTextNode(css));
- var heads = document.getElementsByTagName('head');
- if (heads.length > 0) { heads[0].appendChild(node);
- } else {
- // no head yet, stick it whereever
- document.documentElement.appendChild(node);
- }
- }})();