From b48ece2f0c36b4e9a176102bf82b10d08f1bede7 Mon Sep 17 00:00:00 2001 From: Piyush Date: Fri, 8 May 2026 10:03:24 +0000 Subject: [PATCH 1/2] incorrect border around select all is removed --- css/apps/files.scss | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/css/apps/files.scss b/css/apps/files.scss index 1b17e20f..e8a899a4 100644 --- a/css/apps/files.scss +++ b/css/apps/files.scss @@ -959,6 +959,11 @@ table.files-filestable { th.files-list__column.files-list__ { &row-checkbox { width: 4rem; + + .checkbox-radio-switch__input:focus-visible + .checkbox-radio-switch__content { + border: none !important; /* or your desired style */ + outline: none !important; /* Remove default focus outline */ + } } &row-name { @@ -1557,16 +1562,9 @@ body.nmc-pendingshares-view { .files-list__row-actions-batch-move-copy, .files-list__row-actions-batch-download, .files-list__row-actions-batch-delete, - .files-list__row-actions-batch-cancel_select, - .files-list__row-actions-batch-favorite { + .files-list__row-actions-batch-cancel_select { display: none; } - - @media screen and (min-width: $breakpoint-desktop) { - .files-list__row-actions-batch .action-item__menutoggle { - display: none; - } - } } #body-user, From 123149b18db7d3d24dd82d93b566dc9ca1673af7 Mon Sep 17 00:00:00 2001 From: Piyush Date: Fri, 8 May 2026 10:06:28 +0000 Subject: [PATCH 2/2] removed comments --- css/apps/files.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/css/apps/files.scss b/css/apps/files.scss index e8a899a4..b683d833 100644 --- a/css/apps/files.scss +++ b/css/apps/files.scss @@ -959,10 +959,10 @@ table.files-filestable { th.files-list__column.files-list__ { &row-checkbox { width: 4rem; - + .checkbox-radio-switch__input:focus-visible + .checkbox-radio-switch__content { - border: none !important; /* or your desired style */ - outline: none !important; /* Remove default focus outline */ + border: none !important; + outline: none !important; } }