diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2022-12-20 10:52:39 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2022-12-20 10:52:39 +0900 |
| commit | f90617ab07b78a8490c4dfdc1a184ef6a815fa45 (patch) | |
| tree | fa51b29e61c79122d39b0b8b1af25d89dcc61461 /packages/client/src/components | |
| parent | 12.120.0-alpha.20 (diff) | |
| download | sharkey-f90617ab07b78a8490c4dfdc1a184ef6a815fa45.tar.gz sharkey-f90617ab07b78a8490c4dfdc1a184ef6a815fa45.tar.bz2 sharkey-f90617ab07b78a8490c4dfdc1a184ef6a815fa45.zip | |
:art:
Diffstat (limited to 'packages/client/src/components')
| -rw-r--r-- | packages/client/src/components/MkModalPageWindow.vue | 4 | ||||
| -rw-r--r-- | packages/client/src/components/MkPageWindow.vue | 6 | ||||
| -rw-r--r-- | packages/client/src/components/global/MkA.vue | 4 |
3 files changed, 7 insertions, 7 deletions
diff --git a/packages/client/src/components/MkModalPageWindow.vue b/packages/client/src/components/MkModalPageWindow.vue index 82b04b6670..fb59e67211 100644 --- a/packages/client/src/components/MkModalPageWindow.vue +++ b/packages/client/src/components/MkModalPageWindow.vue @@ -68,11 +68,11 @@ const contextmenu = $computed(() => { type: 'label', text: path, }, { - icon: 'ti ti-arrows-maximize', + icon: 'ti ti-corner-right-down-double', text: i18n.ts.showInPage, action: expand, }, { - icon: 'ti ti-external-link', + icon: 'ti ti-window-maximize', text: i18n.ts.popout, action: popout, }, null, { diff --git a/packages/client/src/components/MkPageWindow.vue b/packages/client/src/components/MkPageWindow.vue index d5fff4be0a..a0615893f7 100644 --- a/packages/client/src/components/MkPageWindow.vue +++ b/packages/client/src/components/MkPageWindow.vue @@ -66,7 +66,7 @@ const buttonsLeft = $computed(() => { }); const buttonsRight = $computed(() => { const buttons = [{ - icon: 'ti ti-arrows-maximize', + icon: 'ti ti-corner-right-down-double', title: i18n.ts.showInPage, onClick: expand, }]; @@ -86,11 +86,11 @@ provide('shouldOmitHeaderTitle', true); provide('shouldHeaderThin', true); const contextmenu = $computed(() => ([{ - icon: 'ti ti-arrows-maximize', + icon: 'ti ti-corner-right-down-double', text: i18n.ts.showInPage, action: expand, }, { - icon: 'ti ti-external-link', + icon: 'ti ti-window-maximize', text: i18n.ts.popout, action: popout, }, { diff --git a/packages/client/src/components/global/MkA.vue b/packages/client/src/components/global/MkA.vue index dbdf89a0ba..a686d1bdbe 100644 --- a/packages/client/src/components/global/MkA.vue +++ b/packages/client/src/components/global/MkA.vue @@ -41,13 +41,13 @@ function onContextmenu(ev) { type: 'label', text: props.to, }, { - icon: 'ti ti-window-maximize', + icon: 'ti ti-app-window', text: i18n.ts.openInWindow, action: () => { os.pageWindow(props.to); }, }, { - icon: 'ti ti-arrows-maximize', + icon: 'ti ti-corner-right-down-double', text: i18n.ts.showInPage, action: () => { router.push(props.to, 'forcePage'); |