diff --git a/packages/client/src/account.ts b/packages/client/src/account.ts index 6f8a8292e..fd9bf48e6 100644 --- a/packages/client/src/account.ts +++ b/packages/client/src/account.ts @@ -242,7 +242,7 @@ export async function openAccountMenu( ...accountItemPromises, { type: "parent", - icon: "ph-plus-bold ph-lg", + icon: "ph-plus ph-bold ph-lg", text: i18n.ts.addAccount, children: [ { @@ -261,13 +261,13 @@ export async function openAccountMenu( }, { type: "link", - icon: "ph-users-bold ph-lg", + icon: "ph-users ph-bold ph-lg", text: i18n.ts.manageAccounts, to: "/settings/accounts", }, { type: "button", - icon: "ph-sign-out-bold ph-lg", + icon: "ph-sign-out ph-bold ph-lg", text: i18n.ts.logout, action: () => { signout(); diff --git a/packages/client/src/components/MkAbuseReportWindow.vue b/packages/client/src/components/MkAbuseReportWindow.vue index b8ef6686c..f1b3ae431 100644 --- a/packages/client/src/components/MkAbuseReportWindow.vue +++ b/packages/client/src/components/MkAbuseReportWindow.vue @@ -1,7 +1,7 @@ diff --git a/packages/client/src/components/MkMediaBanner.vue b/packages/client/src/components/MkMediaBanner.vue index daf9bfc23..b09e61d37 100644 --- a/packages/client/src/components/MkMediaBanner.vue +++ b/packages/client/src/components/MkMediaBanner.vue @@ -1,7 +1,7 @@ diff --git a/packages/client/src/components/MkMediaVideo.vue b/packages/client/src/components/MkMediaVideo.vue index e5b4ba390..48a599407 100644 --- a/packages/client/src/components/MkMediaVideo.vue +++ b/packages/client/src/components/MkMediaVideo.vue @@ -1,7 +1,7 @@ diff --git a/packages/client/src/components/MkMenu.vue b/packages/client/src/components/MkMenu.vue index c07185377..e5977e542 100644 --- a/packages/client/src/components/MkMenu.vue +++ b/packages/client/src/components/MkMenu.vue @@ -36,7 +36,7 @@ + {{ pageMetadata?.value.title }} - +
@@ -68,22 +68,22 @@ const contextmenu = $computed(() => { type: 'label', text: path, }, { - icon: 'ph-arrows-out-simple-bold ph-lg', + icon: 'ph-arrows-out-simple ph-bold ph-lg', text: i18n.ts.showInPage, action: expand, }, { - icon: 'ph-arrow-square-out-bold ph-lg', + icon: 'ph-arrow-square-out ph-bold ph-lg', text: i18n.ts.popout, action: popout, }, null, { - icon: 'ph-arrow-square-out-bold ph-lg', + icon: 'ph-arrow-square-out ph-bold ph-lg', text: i18n.ts.openInNewTab, action: () => { window.open(pageUrl, '_blank'); modal.close(); }, }, { - icon: 'ph-link-simple-bold ph-lg', + icon: 'ph-link-simple ph-bold ph-lg', text: i18n.ts.copyLink, action: () => { copyToClipboard(pageUrl); diff --git a/packages/client/src/components/MkModalWindow.vue b/packages/client/src/components/MkModalWindow.vue index 2765a9927..1d10eba77 100644 --- a/packages/client/src/components/MkModalWindow.vue +++ b/packages/client/src/components/MkModalWindow.vue @@ -2,12 +2,12 @@
- + - - + +
diff --git a/packages/client/src/components/MkMoved.vue b/packages/client/src/components/MkMoved.vue index e9be9a079..d50d49faa 100644 --- a/packages/client/src/components/MkMoved.vue +++ b/packages/client/src/components/MkMoved.vue @@ -1,6 +1,6 @@ diff --git a/packages/client/src/components/MkRenoteButton.vue b/packages/client/src/components/MkRenoteButton.vue index a39b916b6..5a9369a90 100644 --- a/packages/client/src/components/MkRenoteButton.vue +++ b/packages/client/src/components/MkRenoteButton.vue @@ -6,11 +6,11 @@ class="eddddedb _button canRenote" @click="renote(false, $event)" > - +

{{ count }}

@@ -66,7 +66,7 @@ const renote = async (viaKeyboard = false, ev?: MouseEvent) => { let buttonActions = [{ text: i18n.ts.renote, - icon: 'ph-repeat-bold ph-lg', + icon: 'ph-repeat ph-bold ph-lg', danger: false, action: () => { os.api('notes/create', { @@ -86,7 +86,7 @@ const renote = async (viaKeyboard = false, ev?: MouseEvent) => { if (!defaultStore.state.seperateRenoteQuote) { buttonActions.push({ text: i18n.ts.quote, - icon: 'ph-quotes-bold ph-lg', + icon: 'ph-quotes ph-bold ph-lg', danger: false, action: () => { os.post({ @@ -99,7 +99,7 @@ const renote = async (viaKeyboard = false, ev?: MouseEvent) => { if (hasRenotedBefore) { buttonActions.push({ text: i18n.ts.unrenote, - icon: 'ph-trash-bold ph-lg', + icon: 'ph-trash ph-bold ph-lg', danger: true, action: () => { os.api('notes/unrenote', { diff --git a/packages/client/src/components/MkSignin.vue b/packages/client/src/components/MkSignin.vue index b04f1cea6..63a5bf10e 100644 --- a/packages/client/src/components/MkSignin.vue +++ b/packages/client/src/components/MkSignin.vue @@ -11,7 +11,7 @@ - + {{ signing ? i18n.ts.loggingIn : i18n.ts.login }} @@ -30,20 +30,20 @@

{{ i18n.ts.twoStepAuthentication }}

- + - + {{ signing ? i18n.ts.loggingIn : i18n.ts.login }}
- {{ i18n.t('signinWith', { x: 'Twitter' }) }} - {{ i18n.t('signinWith', { x: 'GitHub' }) }} - {{ i18n.t('signinWith', { x: 'Discord' }) }} + {{ i18n.t('signinWith', { x: 'Twitter' }) }} + {{ i18n.t('signinWith', { x: 'GitHub' }) }} + {{ i18n.t('signinWith', { x: 'Discord' }) }}
diff --git a/packages/client/src/components/MkSignup.vue b/packages/client/src/components/MkSignup.vue index 9b09e852e..b3f7f473c 100644 --- a/packages/client/src/components/MkSignup.vue +++ b/packages/client/src/components/MkSignup.vue @@ -2,53 +2,53 @@
- +
- + - - + + - + - + diff --git a/packages/client/src/components/MkStarButton.vue b/packages/client/src/components/MkStarButton.vue index 9a0cca414..9327e1dd4 100644 --- a/packages/client/src/components/MkStarButton.vue +++ b/packages/client/src/components/MkStarButton.vue @@ -6,9 +6,9 @@ - - - + + + diff --git a/packages/client/src/components/MkSubNoteContent.vue b/packages/client/src/components/MkSubNoteContent.vue index b575fcc0a..5176a3825 100644 --- a/packages/client/src/components/MkSubNoteContent.vue +++ b/packages/client/src/components/MkSubNoteContent.vue @@ -2,7 +2,7 @@
({{ i18n.ts.deleted }}) - + {{ i18n.ts.quoteAttached }}: ...
diff --git a/packages/client/src/components/MkTutorialDialog.vue b/packages/client/src/components/MkTutorialDialog.vue index 0160ace21..c077d3fc5 100644 --- a/packages/client/src/components/MkTutorialDialog.vue +++ b/packages/client/src/components/MkTutorialDialog.vue @@ -13,17 +13,17 @@ -

{{ i18n.ts._tutorial.title }}

+

{{ i18n.ts._tutorial.title }}

{{ i18n.ts._tutorial.step1_1 }}

@@ -41,7 +41,7 @@
{{ i18n.ts._tutorial.step3_2 }}

- {{ i18n.ts.next }} + {{ i18n.ts.next }}

{{ i18n.ts._tutorial.step4_1 }}

@@ -64,35 +64,35 @@
  • diff --git a/packages/client/src/components/MkUrlPreview.vue b/packages/client/src/components/MkUrlPreview.vue index 865d4bcbe..6f0adfb14 100644 --- a/packages/client/src/components/MkUrlPreview.vue +++ b/packages/client/src/components/MkUrlPreview.vue @@ -1,6 +1,6 @@