Merge remote-tracking branch 'upstream-next/develop' into feature/i18n-part2

This commit is contained in:
Nriver 2024-08-16 11:23:35 +08:00
commit ff3effdb31
3 changed files with 1145 additions and 12 deletions

View File

@ -837,6 +837,11 @@ body {
scrollbar-color: var(--scrollbar-background-color) var(--main-background-color); scrollbar-color: var(--scrollbar-background-color) var(--main-background-color);
} }
@supports selector(::-webkit-scrollbar) {
body {
scrollbar-color: unset;
}
::-webkit-scrollbar { ::-webkit-scrollbar {
width: 12px; width: 12px;
} }
@ -850,6 +855,7 @@ body {
::-webkit-scrollbar-corner { ::-webkit-scrollbar-corner {
background-color: inherit; background-color: inherit;
} }
}
[data-toggle="tooltip"]:not(.button-widget) span { [data-toggle="tooltip"]:not(.button-widget) span {
padding-bottom: 0; padding-bottom: 0;

File diff suppressed because it is too large Load Diff

View File

@ -137,9 +137,13 @@ function getSupportedLocales() {
"id": "en", "id": "en",
"name": "English" "name": "English"
}, },
{
"id": "es",
"name": "Español"
},
{ {
"id": "cn", "id": "cn",
"name": "Chinese" "name": "简体中文"
} }
]; ];
} }