work in progress icons

This commit is contained in:
Insert5StarName 2023-09-30 21:53:52 +02:00
parent f2e299a7a9
commit 7b179d3a92
251 changed files with 1062 additions and 1062 deletions

View file

@ -45,7 +45,7 @@ function onContextmenu(ev) {
type: 'label',
text: props.to,
}, {
icon: 'ti ti-app-window',
icon: 'ph-app-window ph-bold ph-lg',
text: i18n.ts.openInWindow,
action: () => {
os.pageWindow(props.to);
@ -57,13 +57,13 @@ function onContextmenu(ev) {
router.push(props.to, 'forcePage');
},
}, null, {
icon: 'ti ti-external-link',
icon: 'ph-arrow-square-out ph-bold ph-lg',
text: i18n.ts.openInNewTab,
action: () => {
window.open(props.to, '_blank');
},
}, {
icon: 'ti ti-link',
icon: 'ph-link ph-bold ph-lg',
text: i18n.ts.copyLink,
action: () => {
copyToClipboard(`${url}${props.to}`);