diff options
Diffstat (limited to 'packages/meshbay-hub/src/meshbay_hub/static')
12 files changed, 12 insertions, 21 deletions
diff --git a/packages/meshbay-hub/src/meshbay_hub/static/app.js b/packages/meshbay-hub/src/meshbay_hub/static/app.js index c460f23..eb11469 100644 --- a/packages/meshbay-hub/src/meshbay_hub/static/app.js +++ b/packages/meshbay-hub/src/meshbay_hub/static/app.js @@ -504,7 +504,8 @@ function TransferWidget() { return html` <div class="transfer-wrap" ref=${ref}> - <button class="nav-notif transfer-btn" title=${t('transfers.title')} + <button class="nav-notif transfer-btn ${running.length ? 'active' : ''}" + title=${t('transfers.title')} onClick=${(e) => { e.stopPropagation(); setOpen(o => !o); }}> <${Icon} name="transfer" /> ${running.length > 0 && html` @@ -2057,7 +2058,7 @@ function GroupPage({ groupId, group, token, username, userId, onRefreshAuth, </td> `} <td>${unavailableHere.includes(d) ? '\u{26A0}' : '\u{1F4C1}'}</td> - <td>${d}/${unavailableHere.includes(d) ? html` + <td>${d}${unavailableHere.includes(d) ? html` <span class="root-offline"> ${t('group.root_unavailable')}</span> ` : ''}</td> <td class="file-size">${inside.length ? formatSize(bytes) : ''}</td> @@ -2562,8 +2563,10 @@ function GroupSettingsPanel({ groupId, group, token, transportRef, gekRef, ${/* Before the roster, not after it: this is what someone came here to do, and a list of two hundred names is a long way to scroll for it. */ html` - <div class="settings-section danger-section"> - <h3 class="settings-heading">${t('members.danger_title')}</h3> + <div class="settings-section"> + <h3 class="settings-heading"> + ${isOwner ? t('group.delete_group') : t('group.leave')} + </h3> <div class="settings-row"> <span class="settings-label"> ${isOwner ? t('members.danger_delete_hint') diff --git a/packages/meshbay-hub/src/meshbay_hub/static/locales/de.js b/packages/meshbay-hub/src/meshbay_hub/static/locales/de.js index d222bba..7eaf86f 100644 --- a/packages/meshbay-hub/src/meshbay_hub/static/locales/de.js +++ b/packages/meshbay-hub/src/meshbay_hub/static/locales/de.js @@ -78,7 +78,6 @@ export default { 'group.tab_chat': 'Chat', 'group.tab_members': 'Mitglieder', 'group.tab_settings': "Einstellungen", - 'members.danger_title': "Gefahrenbereich", 'members.danger_leave_hint': "Sie verlieren den Zugriff auf die Dateien und den Chat dieser Gruppe.", 'members.danger_delete_hint': "Die Gruppe verschwindet für alle Mitglieder. Das lässt sich nicht rückgängig machen.", 'group.filter': 'Dateien filtern …', diff --git a/packages/meshbay-hub/src/meshbay_hub/static/locales/en.js b/packages/meshbay-hub/src/meshbay_hub/static/locales/en.js index 33e8f5e..b68d02d 100644 --- a/packages/meshbay-hub/src/meshbay_hub/static/locales/en.js +++ b/packages/meshbay-hub/src/meshbay_hub/static/locales/en.js @@ -79,7 +79,6 @@ export default { 'group.tab_chat': 'Chat', 'group.tab_members': 'Members', 'group.tab_settings': "Settings", - 'members.danger_title': "Danger zone", 'members.danger_leave_hint': "You will lose access to this group's files and chat.", 'members.danger_delete_hint': "This removes the group for every member. It cannot be undone.", 'group.filter': 'Filter files...', diff --git a/packages/meshbay-hub/src/meshbay_hub/static/locales/es.js b/packages/meshbay-hub/src/meshbay_hub/static/locales/es.js index 81b2c97..20f6910 100644 --- a/packages/meshbay-hub/src/meshbay_hub/static/locales/es.js +++ b/packages/meshbay-hub/src/meshbay_hub/static/locales/es.js @@ -76,7 +76,6 @@ export default { 'group.tab_chat': 'Chat', 'group.tab_members': 'Miembros', 'group.tab_settings': "Ajustes", - 'members.danger_title': "Zona de riesgo", 'members.danger_leave_hint': "Perderá el acceso a los archivos y al chat de este grupo.", 'members.danger_delete_hint': "El grupo desaparece para todos sus miembros. No se puede deshacer.", 'group.filter': 'Filtrar archivos...', diff --git a/packages/meshbay-hub/src/meshbay_hub/static/locales/fr.js b/packages/meshbay-hub/src/meshbay_hub/static/locales/fr.js index e44b03b..c3c5580 100644 --- a/packages/meshbay-hub/src/meshbay_hub/static/locales/fr.js +++ b/packages/meshbay-hub/src/meshbay_hub/static/locales/fr.js @@ -77,7 +77,6 @@ export default { 'group.tab_chat': 'Discussion', 'group.tab_members': 'Membres', 'group.tab_settings': "Paramètres", - 'members.danger_title': "Zone sensible", 'members.danger_leave_hint': "Vous perdrez l’accès aux fichiers et à la discussion de ce groupe.", 'members.danger_delete_hint': "Le groupe disparaît pour tous ses membres. C’est irréversible.", 'group.filter': 'Filtrer les fichiers...', diff --git a/packages/meshbay-hub/src/meshbay_hub/static/locales/it.js b/packages/meshbay-hub/src/meshbay_hub/static/locales/it.js index 206c749..1ae8217 100644 --- a/packages/meshbay-hub/src/meshbay_hub/static/locales/it.js +++ b/packages/meshbay-hub/src/meshbay_hub/static/locales/it.js @@ -77,7 +77,6 @@ export default { 'group.tab_chat': 'Chat', 'group.tab_members': 'Membri', 'group.tab_settings': "Impostazioni", - 'members.danger_title': "Zona critica", 'members.danger_leave_hint': "Perderai l’accesso ai file e alla chat di questo gruppo.", 'members.danger_delete_hint': "Il gruppo scompare per tutti i membri. Non è reversibile.", 'group.filter': 'Filtra i file...', diff --git a/packages/meshbay-hub/src/meshbay_hub/static/locales/ja.js b/packages/meshbay-hub/src/meshbay_hub/static/locales/ja.js index b4ccfaf..f8713f5 100644 --- a/packages/meshbay-hub/src/meshbay_hub/static/locales/ja.js +++ b/packages/meshbay-hub/src/meshbay_hub/static/locales/ja.js @@ -75,7 +75,6 @@ export default { 'group.tab_chat': 'チャット', 'group.tab_members': 'メンバー', 'group.tab_settings': "設定", - 'members.danger_title': "取り扱い注意", 'members.danger_leave_hint': "このグループのファイルとチャットにアクセスできなくなります。", 'members.danger_delete_hint': "グループはすべてのメンバーから消えます。元に戻せません。", 'group.filter': 'ファイルを絞り込み…', diff --git a/packages/meshbay-hub/src/meshbay_hub/static/locales/nl.js b/packages/meshbay-hub/src/meshbay_hub/static/locales/nl.js index ac75f26..497cc4a 100644 --- a/packages/meshbay-hub/src/meshbay_hub/static/locales/nl.js +++ b/packages/meshbay-hub/src/meshbay_hub/static/locales/nl.js @@ -78,7 +78,6 @@ export default { 'group.tab_chat': 'Chat', 'group.tab_members': 'Leden', 'group.tab_settings': "Instellingen", - 'members.danger_title': "Gevarenzone", 'members.danger_leave_hint': "U verliest de toegang tot de bestanden en de chat van deze groep.", 'members.danger_delete_hint': "De groep verdwijnt voor alle leden. Dit kan niet ongedaan worden gemaakt.", 'group.filter': 'Bestanden filteren...', diff --git a/packages/meshbay-hub/src/meshbay_hub/static/locales/pl.js b/packages/meshbay-hub/src/meshbay_hub/static/locales/pl.js index fe9c18d..af4861a 100644 --- a/packages/meshbay-hub/src/meshbay_hub/static/locales/pl.js +++ b/packages/meshbay-hub/src/meshbay_hub/static/locales/pl.js @@ -82,7 +82,6 @@ export default { 'group.tab_chat': 'Czat', 'group.tab_members': 'Członkowie', 'group.tab_settings': "Ustawienia", - 'members.danger_title': "Strefa ryzyka", 'members.danger_leave_hint': "Utracisz dostęp do plików i czatu tej grupy.", 'members.danger_delete_hint': "Grupa zniknie dla wszystkich członków. Tego nie można cofnąć.", 'group.filter': 'Filtruj pliki...', diff --git a/packages/meshbay-hub/src/meshbay_hub/static/locales/pt-BR.js b/packages/meshbay-hub/src/meshbay_hub/static/locales/pt-BR.js index 270af8e..8e1de4c 100644 --- a/packages/meshbay-hub/src/meshbay_hub/static/locales/pt-BR.js +++ b/packages/meshbay-hub/src/meshbay_hub/static/locales/pt-BR.js @@ -78,7 +78,6 @@ export default { 'group.tab_chat': 'Conversa', 'group.tab_members': 'Membros', 'group.tab_settings': "Configurações", - 'members.danger_title': "Zona de risco", 'members.danger_leave_hint': "Você perderá o acesso aos arquivos e ao chat deste grupo.", 'members.danger_delete_hint': "O grupo desaparece para todos os membros. Não há como desfazer.", 'group.filter': 'Filtrar arquivos...', diff --git a/packages/meshbay-hub/src/meshbay_hub/static/locales/zh-CN.js b/packages/meshbay-hub/src/meshbay_hub/static/locales/zh-CN.js index 6e19df9..4e0a332 100644 --- a/packages/meshbay-hub/src/meshbay_hub/static/locales/zh-CN.js +++ b/packages/meshbay-hub/src/meshbay_hub/static/locales/zh-CN.js @@ -75,7 +75,6 @@ export default { 'group.tab_chat': '聊天', 'group.tab_members': '成员', 'group.tab_settings': "设置", - 'members.danger_title': "危险区域", 'members.danger_leave_hint': "您将无法再访问该群组的文件和聊天。", 'members.danger_delete_hint': "该群组将对所有成员消失,且无法恢复。", 'group.filter': '筛选文件…', diff --git a/packages/meshbay-hub/src/meshbay_hub/static/style.css b/packages/meshbay-hub/src/meshbay_hub/static/style.css index cb56321..12fc15f 100644 --- a/packages/meshbay-hub/src/meshbay_hub/static/style.css +++ b/packages/meshbay-hub/src/meshbay_hub/static/style.css @@ -1333,13 +1333,6 @@ button:disabled { opacity: 0.5; cursor: not-allowed; } min-width: 0; } -/* Leaving or deleting a group. Marked, because the two buttons in this tab - that cannot be undone should not look like the ones that can. */ -.danger-section { - border-color: color-mix(in srgb, var(--error) 40%, var(--border)); -} -.danger-section .settings-heading { color: var(--error); } - .badge-owner { background: var(--accent); color: var(--accent-text); @@ -1429,6 +1422,11 @@ button:disabled { opacity: 0.5; cursor: not-allowed; } /* ── Transfers widget ────────────────────────────────────────────────────── */ +/* Green while transfers are running: the count in the badge says how many, but + the colour is what is readable without looking at it. Back to the ordinary + nav colour the moment the last one finishes. */ +.transfer-btn.active .icon { color: var(--success); } + .transfer-wrap { position: relative; display: flex; align-items: center; } .transfer-btn { background: none; |