nah keep the old font

This commit is contained in:
tophf 2022-01-19 00:21:48 +03:00
parent 9199009665
commit 702f89ab03
2 changed files with 15 additions and 2 deletions

View File

@ -4,8 +4,21 @@ html#stylus #header *:not(#\1transition-suppressor) {
* Using \1 to simplify js code because \0 is converted to \xFFFD per spec. */
transition: none !important;
}
:root {
--family: Arial, "Helvetica Neue", Helvetica, system-ui, sans-serif;
}
body {
font: normal 12px sans-serif;
font: normal 12px var(--family);
}
body:lang(ja) {
font-family: Arial, 'Meiryo UI', 'MS Gothic', system-ui, sans-serif;
}
body:lang(zh-CN) {
font-family: Arial, 'Microsoft YaHei UI', 'Microsoft YaHei', system-ui, sans-serif;
}
body:lang(zh-TW),
body:lang(zh-HK) {
font-family: Arial, 'Microsoft JhengHei UI', 'Microsoft JhengHei', system-ui, sans-serif;
}
button {

View File

@ -962,7 +962,7 @@ a:hover {
}
#manage\.newUI\.sort {
font-family: 'sorticon', sans-serif;
font-family: 'sorticon', var(--family);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}