diff --git a/web/satellite/src/components/browser/FileEntry.vue b/web/satellite/src/components/browser/FileEntry.vue index 98005430c..3088c876e 100644 --- a/web/satellite/src/components/browser/FileEntry.vue +++ b/web/satellite/src/components/browser/FileEntry.vue @@ -419,7 +419,13 @@ function openDropdown(): void { async function download(): Promise { try { await obStore.download(props.file); - notify.warning('Do not share download link with other people. If you want to share this data better use "Share" option.'); + const message = ` +

Downloading...

+

+ Keep this download link private.
If you want to share, use the Share option. +

+ `; + notify.success('', message); } catch (error) { notify.error('Can not download your file', AnalyticsErrorEventSource.FILE_BROWSER_ENTRY); } @@ -500,7 +506,15 @@ function cancelDeletion(): void { } .dropdown-item.action.p-3.action { - font-family: 'Inter', sans-serif; + font-family: 'font_regular', sans-serif; + } + + &:first-of-type { + border-radius: 6px 6px 0 0; + } + + &:last-of-type { + border-radius: 0 0 6px 6px; } &__label { diff --git a/web/satellite/src/components/browser/galleryView/ButtonIcon.vue b/web/satellite/src/components/browser/galleryView/ButtonIcon.vue index 58dee69a3..088e38d80 100644 --- a/web/satellite/src/components/browser/galleryView/ButtonIcon.vue +++ b/web/satellite/src/components/browser/galleryView/ButtonIcon.vue @@ -2,18 +2,28 @@ // See LICENSE for copying information.