Skip to content

Commit

Permalink
Merge branch 'develop' into sticky-test
Browse files Browse the repository at this point in the history
  • Loading branch information
FineArchs committed Oct 12, 2024
2 parents 42e282b + 824c51a commit c8090f3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
4 changes: 4 additions & 0 deletions locales/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5700,6 +5700,10 @@ export interface Locale extends ILocale {
* サーバー運営者へのお問い合わせフォームのURLや、運営者の連絡先等が記載されたWebページのURLを指定します。
*/
"inquiryUrlDescription": string;
/**
* 一定期間モデレーターのアクティビティが検出されなかった場合、スパム防止のためこの設定は自動でオフになります。
*/
"thisSettingWillAutomaticallyOffWhenModeratorsInactive": string;
};
"_accountMigration": {
/**
Expand Down
6 changes: 5 additions & 1 deletion packages/frontend/src/components/MkWindow.vue
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ SPDX-License-Identifier: AGPL-3.0-only

<script lang="ts" setup>
import { onBeforeUnmount, onMounted, provide, shallowRef, ref } from 'vue';
import type { MenuItem } from '@/types/menu.js';
import contains from '@/scripts/contains.js';
import * as os from '@/os.js';
import type { MenuItem } from '@/types/menu.js';
import { i18n } from '@/i18n.js';
import { defaultStore } from '@/store.js';

Expand Down Expand Up @@ -484,6 +484,10 @@ defineExpose({
}

.root {
// universal.vueとかで直接--MI-stickyBottomが定義されていたりするのでリセット
--MI-stickyTop: 0;
--MI-stickyBottom: 0;

position: fixed;
top: 0;
left: 0;
Expand Down

0 comments on commit c8090f3

Please sign in to comment.