From fc88f4646088968eeeca216144de165b4b356618 Mon Sep 17 00:00:00 2001 From: Marcel Klehr Date: Sun, 4 Feb 2024 12:04:38 +0100 Subject: [PATCH] fix(SharedFolderIcon) Signed-off-by: Marcel Klehr --- lib/Controller/WebViewController.php | 1 - src/components/Folder.vue | 6 +++--- src/components/WhatsnewModal.vue | 9 +++++---- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/lib/Controller/WebViewController.php b/lib/Controller/WebViewController.php index ee403217..a6716598 100644 --- a/lib/Controller/WebViewController.php +++ b/lib/Controller/WebViewController.php @@ -22,7 +22,6 @@ use OCP\AppFramework\Http\JSONResponse; use OCP\AppFramework\Http\NotFoundResponse; use OCP\AppFramework\Http\StreamResponse; use OCP\AppFramework\Http\Template\PublicTemplateResponse; -use OCP\IConfig; use OCP\IInitialStateService; use OCP\IL10N; use OCP\IRequest; diff --git a/src/components/Folder.vue b/src/components/Folder.vue index c3c597ed..e3430b81 100644 --- a/src/components/Folder.vue +++ b/src/components/Folder.vue @@ -231,10 +231,10 @@ export default { .folder__icon.shared { transform: scale(0.4); position: absolute; - top: -1px; + top: 0; height: auto; width: auto; - left: -2px; + left: -1px; } .item--gridview .folder__icon { @@ -247,7 +247,7 @@ export default { } .item--gridview .folder__icon.shared { - transform: translate(87%, 110%) scale(1.5); + transform: translate(100%, 130%) scale(1.5); } .folder__title { diff --git a/src/components/WhatsnewModal.vue b/src/components/WhatsnewModal.vue index 972a01a0..cfcc356a 100644 --- a/src/components/WhatsnewModal.vue +++ b/src/components/WhatsnewModal.vue @@ -9,10 +9,11 @@

✨ {{ t('bookmarks', 'What\'s new in Bookmarks?') }}

    -
  • 📜 Support for javascript and file links
  • -
  • 📂 Bookmarklet now allows putting new bookmarks in a certain folder by default
    (by first navigating to the folder and then dragging the bookmarklet button to your bookmarks as usual)
  • -
  • 🖊 Edit the title of shared folders even if you don't have edit permissions
  • -
  • 🐛 Lots of small bug fixes
  • +
  • 📂 You can now search for folders
  • +
  • 🔍 Search is now scoped to the current folder only
  • +
  • 🔧 new settings experience
  • +
  • 🧮 The folders overview now shows the cumulative bookmarks counts for all folders
  • +
  • 🐛 Lots of small bug fixes and performance improvements