修复华硕(ASUS)路由器简体中文界面字体大小和粗细不一的问题。预览中字体为 HarmonyOS Sans 和 JetBrains Mono。
华硕路由器界面字体修复 by TheJiahao
Details
AuthorTheJiahao
LicenseCC BY-SA 4.0
Categoryasus
Created
Updated
Size680 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
更新日志
1.0.0: 初始版本
1.0.1: 格式化代码
1.0.2: 添加 CC 许可证
Source code
/* ==UserStyle==
@name 华硕路由器界面字体修复
@namespace userstyles.world/user/TheJiahao
@version 1.0.2
@description 修复华硕路由器简体中文界面字体大小和粗细不一的问题
@author TheJiahao
@license CC BY-SA 4.0
==/UserStyle== */
@-moz-document domain("router.asus.com"), domain("asusrouter.com") {
/* 选项和输入框 */
select, option, input {
font-family: monospace, sans !important
}
/* 文本框 */
textarea {
font-family: monospace !important
}
/* 默认使用无衬线字体 */
* {
font-family: sans !important
}
}