diff --git a/packages/common/styles.js b/packages/common/styles.js
index 8d6475a6f6dd32faa0e08b9fccf024308e4f4dae..1032f33126d487e71285ed4bad15eb2eaa86ad65 100644
--- a/packages/common/styles.js
+++ b/packages/common/styles.js
@@ -455,7 +455,7 @@ export function getButtonCSS() {
         }
 
         button.button[disabled], .button[disabled], fieldset[disabled] .button {
-            opacity: .5;
+            opacity: .4;
             cursor: not-allowed;
         }
     `;
diff --git a/packages/file-handling/src/clipboard.js b/packages/file-handling/src/clipboard.js
index 8212027722ba6a539d8a5957161333967a1eebaf..92f3da20230fc1ba57adc30c2de4fe300bb52e4c 100644
--- a/packages/file-handling/src/clipboard.js
+++ b/packages/file-handling/src/clipboard.js
@@ -240,7 +240,7 @@ export class Clipboard extends ScopedElementsMixin(AdapterLitElement) {
                         this._("#select_all_checkmark").title = this.checkAllSelected() ? i18n.t('clipboard.select-nothing') : i18n.t('clipboard.select-all');
                     }
                 },
-                renderComplete: () => {
+                dataLoaded: () => {
                     if (this.tabulatorTable !== null) {
                         const that = this;
                         setTimeout(function(){
@@ -337,6 +337,7 @@ export class Clipboard extends ScopedElementsMixin(AdapterLitElement) {
      *
      */
     generateClipboardTable() {
+        this.numberOfSelectedFiles = 0;
         if (this.clipboardFiles.files) {
             let data = [];
             for (let i = 0; i < this.clipboardFiles.files.length; i++) {
diff --git a/packages/file-handling/src/file-sink.js b/packages/file-handling/src/file-sink.js
index d25ef063e2ec80cd455cfa54d2fbdd08d520ba48..b4b2ed5456a0588e1748346de4d9326283d7dd4e 100644
--- a/packages/file-handling/src/file-sink.js
+++ b/packages/file-handling/src/file-sink.js
@@ -247,6 +247,15 @@ export class FileSink extends ScopedElementsMixin(DbpFileHandlingLitElement) {
 
     closeDialog(e) {
         this.sendDestination();
+        if (this.enabledTargets.includes('clipboard')) {
+            const filePicker = this._('#clipboard-file-picker');
+            if (filePicker && filePicker.tabulatorTable) {
+                filePicker.tabulatorTable.deselectRow();
+                if (filePicker._('#select_all')) {
+                    filePicker._("#select_all").checked = false;
+                }
+            }
+        }
         MicroModal.close(this._('#modal-picker'));
         this.isDialogOpen = false;
     }
diff --git a/packages/file-handling/src/nextcloud-file-picker.js b/packages/file-handling/src/nextcloud-file-picker.js
index 8b149ed8a9e74ee237678f2abf757bd4c98bf562..341738d9395f513bcfe76a065b21eba483210101 100644
--- a/packages/file-handling/src/nextcloud-file-picker.js
+++ b/packages/file-handling/src/nextcloud-file-picker.js
@@ -215,7 +215,7 @@ export class NextcloudFilePicker extends ScopedElementsMixin(DBPLitElement) {
                         title: i18n.t('nextcloud-file-picker.last-modified'),
                         responsive: 3,
                         widthGrow: 1,
-                        minWidth: 100,
+                        minWidth: 150,
                         field: "lastmod",
                         sorter: (a, b, aRow, bRow, column, dir, sorterParams) => {
                             const a_timestamp = Date.parse(a);
@@ -307,11 +307,14 @@ export class NextcloudFilePicker extends ScopedElementsMixin(DBPLitElement) {
                 rowAdded: (row) => {
                     row.getElement().classList.toggle("addRowAnimation");
                 },
-                renderComplete: () => {
+                dataLoaded: () => {
                     if (this.tabulatorTable !== null) {
                         const that = this;
                         setTimeout(function(){
+                            console.log("start2");
                             if (that._('.tabulator-responsive-collapse-toggle-open')) {
+                                console.log("yes2");
+
                                 that._a('.tabulator-responsive-collapse-toggle-open').forEach(element => element.addEventListener("click", that.toggleCollapse.bind(that)));
                             }
 
@@ -320,8 +323,7 @@ export class NextcloudFilePicker extends ScopedElementsMixin(DBPLitElement) {
                             }
                         }, 0);
                     }
-
-                },
+                }
             });
 
 
@@ -1489,7 +1491,11 @@ export class NextcloudFilePicker extends ScopedElementsMixin(DBPLitElement) {
             .remember-container{
                 display: inline-block;
                 line-height: 28px;
-                padding-left: 44px;
+                padding-left: 34px;
+            }
+
+            .remember-container .checkmark{
+                left: 0px;
             }
 
 
diff --git a/packages/file-handling/src/styles.js b/packages/file-handling/src/styles.js
index 70cd49b72045d0d814f20670836d3c19676184c8..ff348cc92c62afb76abf1c7a216cda4b954c5a6d 100644
--- a/packages/file-handling/src/styles.js
+++ b/packages/file-handling/src/styles.js
@@ -236,6 +236,11 @@ export function getFileHandlingCss() {
         .tabulator-row-handle{
             padding: 0px !important;
         }
+        
+        .tabulator-selected .tabulator-responsive-collapse-toggle-open, 
+        .tabulator-selected .tabulator-responsive-collapse-toggle-close{
+            color: white;
+        }
 
         @media only screen
         and (orientation: portrait)