rotdrop / nextcloud-app-files-archive

Archive inspection and extraction as Nextcloud app.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

App icon invisible when using dark theme

ae5960e8-a6fc-491f-b252-898ecf59af95 opened this issue · comments

The app icon present in the menu where the app is triggered does not respect the theme setting of the user, making it invisible. I suggest changing this to the icon which is in the screenshot beside the option "Move or copy" as they are mostly identical.

image

The app icon present in the menu where the app is triggered does not respect the theme setting of the user, making it invisible. I suggest changing this to the icon which is in the screenshot beside the option "Move or copy" as they are mostly identical.

This is a matter of applying a suitable color transformation to the icon. There are recommendations for this but I forget where. An example is in here

.cloud-version {
--cloud-theme-filter: none;
&.cloud-version-major-25 {
--cloud-theme-filter: var(--background-invert-if-dark);
}
}

and

background-image:url('../img/app-dark.svg');
background-repeat:no-repeat;
background-origin:border-box;
background-position:left center;
filter: var(--cloud-theme-filter);

I fix this eventually, thanks for reporting.

Claus

This should be fixed in the current release, can you please check, that this is the case?

Thank you!

Fixed in latest version, thanks. :)