打开/关闭菜单
打开/关闭外观设置菜单
打开/关闭个人菜单
未登录
未登录用户的IP地址会在进行任意编辑后公开展示。

RIA Wiki 已更新到 1.41!部分 CSS 在新版本下可能有不同的表现,请编辑者注意检查和修改。 目前wiki关闭了自行注册账号的功能,如需注册账号,请查阅Help:注册账号

用户:秋月白/common.js:修订间差异

来自RIA | Wiki
秋月白留言 | 贡献
创建页面,内容为“(function() { 'use strict'; var style = document.createElement('style'); style.textContent = ` body, .mw-body-content { font-family: "HYWenhei 85W", "Microsoft YaHei", sans-serif !important; font-size: 20px; line-height: 1.6; } h1, h2, h3 { font-family: "Microsoft YaHei", "SimHei", sans-serif !important; } pre, code { font-family: "Consolas", mon…”
 
秋月白留言 | 贡献
无编辑摘要
 
第1行: 第1行:
(function() {
// InPageEdit NEXT
    'use strict';
$(
   
  '<script src="https://cdn.jsdelivr.net/npm/@inpageedit/core/dist/index.js" type="module"></script>'
    var style = document.createElement('style');
).appendTo('body')
    style.textContent = `
        body, .mw-body-content {
            font-family: "HYWenhei 85W", "Microsoft YaHei", sans-serif !important;
            font-size: 20px;
            line-height: 1.6;
        }
        h1, h2, h3 {
            font-family: "Microsoft YaHei", "SimHei", sans-serif !important;
        }
        pre, code {
            font-family: "Consolas", monospace !important;
        }
    `;
    document.head.appendChild(style);
})();

2026年2月4日 (三) 21:03的最新版本

// InPageEdit NEXT
$(
  '<script src="https://cdn.jsdelivr.net/npm/@inpageedit/core/dist/index.js" type="module"></script>'
).appendTo('body')