Replies: 3 comments 2 replies
-
@woj-tek unfortunately, I did check if there is way to keep it open by overriding details default css using Custom CSS textarea in settings with the following: details > summary:first-of-type {
list-style-type: disclosure-open;
} according to this w3c/csswg-drafts#2084 it should handled via JS. will consider adding a checkbox in settings to keep it always open or use default. |
Beta Was this translation helpful? Give feedback.
-
Any luck getting this to work? |
Beta Was this translation helpful? Give feedback.
-
The CSS above allowed attachments to be "expanded" for me but did not display any images. It looks like a more permanent solution is still in the works, but if you would like to have this feature while you wait, you can go into settings and write this in the Custom JavaScript tab: const det = document.querySelector("details.entry-enclosures");
det.setAttribute("open", ""); This seems to work for me on 2.2.9, have not tested on other versions so it may need to be tweaked. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Is there a way to make miniflux expand attachment sections automatically? Some configuration?
Beta Was this translation helpful? Give feedback.
All reactions