From d192854fea5eb3440f19651ea732b245bddbfda9 Mon Sep 17 00:00:00 2001 From: "Jan C. Borchardt" Date: Sun, 23 Aug 2020 23:58:38 +0200 Subject: [PATCH 1/2] Clarify wording to 'Leave this share', fix #18622 Signed-off-by: Jan C. Borchardt --- apps/files/js/fileactions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files/js/fileactions.js b/apps/files/js/fileactions.js index 1f6d5f798a..cd23336c2b 100644 --- a/apps/files/js/fileactions.js +++ b/apps/files/js/fileactions.js @@ -701,7 +701,7 @@ if (mountType === 'external-root') { deleteTitle = t('files', 'Disconnect storage'); } else if (mountType === 'shared-root') { - deleteTitle = t('files', 'Unshare'); + deleteTitle = t('files', 'Leave this share'); } return deleteTitle; }, From 5f6db3741366e9e7d2841eae2d62c0fc5e825cc7 Mon Sep 17 00:00:00 2001 From: "Jan C. Borchardt" Date: Sun, 23 Aug 2020 23:58:53 +0200 Subject: [PATCH 2/2] Fix contrast issue in Files app menu Signed-off-by: Jan C. Borchardt --- core/css/styles.scss | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/core/css/styles.scss b/core/css/styles.scss index 1660527532..e66ceda15d 100644 --- a/core/css/styles.scss +++ b/core/css/styles.scss @@ -467,7 +467,9 @@ tr .action:not(.permanent), .selectedActions a { } tr { - &:hover .action, &:focus .action, .action.permanent { + &:hover .action:not(.menuitem), + &:focus .action:not(.menuitem), + .action.permanent:not(.menuitem) { opacity: .5; } }