diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-09-11 22:29:31 +0200 |
---|---|---|
committer | Daniel Kesselberg <mail@danielkesselberg.de> | 2024-09-30 13:33:45 +0200 |
commit | d97e17b92007af7c87c0622488545dcde8b08276 (patch) | |
tree | a9ee0d91d72a403a7e4dc246d7429a65b6924dee /apps/files/src/views/FilesList.vue | |
parent | be87dec2d9a5f8ab311651c25a22d871a567d2d1 (diff) | |
download | nextcloud-server-fix/files-add-move-info.tar.gz nextcloud-server-fix/files-add-move-info.zip |
fix(files): Add more visual move / copy notificationfix/files-add-move-info
* Resolves: https://github.com/nextcloud/server/issues/46645
This adds loading toast notification while the move operation is running.
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'apps/files/src/views/FilesList.vue')
-rw-r--r-- | apps/files/src/views/FilesList.vue | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/files/src/views/FilesList.vue b/apps/files/src/views/FilesList.vue index cd2053da134..5341502df24 100644 --- a/apps/files/src/views/FilesList.vue +++ b/apps/files/src/views/FilesList.vue @@ -669,6 +669,13 @@ export default defineComponent({ </script> <style scoped lang="scss"> +:global(.toast-loading-icon) { + // Reduce start margin (it was made for text but this is an icon) + margin-inline-start: -4px; + // 16px icon + 5px on both sides + min-width: 26px; +} + .app-content { // Virtual list needs to be full height and is scrollable display: flex; |