diff --git a/packages/client/src/components/MkModalPageWindow.vue b/packages/client/src/components/MkModalPageWindow.vue
index 82b04b6670b451dbfc56a149948deae82ea3bb0b..fb59e6721133deeb0371fd45fc4b08b841073a4c 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 d5fff4be0aaf513b8cac6b11bdd135f738a8e5e1..a0615893f79ff24265710d001fc6a6120bbd64c5 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 dbdf89a0ba52d3ca34394f0ea4c4225e30d239c9..a686d1bdbee7688032090627af524a8773ea2518 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');