We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
With the Argon template installed and activated, images no longer appear inline with text, instead they are placed on a separate line.
This syntax: An image {{:wiki:dokuwiki-128.png?nolink&10|}} is displayed
appears as
An image (image here) is displayed
instead of as
an image (image here) is displayed.
The rendering in html doesn't change between templates, it is rendered as
The difference appears to be in the CSS used by the media class.
The media class is picked up first from argon-design-system.css, with elements display: flex align-items: flex-start
It next inherits from the img class in the same file: vertical-align: middle; border-style: none;
The text was updated successfully, but these errors were encountered:
No branches or pull requests
With the Argon template installed and activated, images no longer appear inline with text, instead they are placed on a separate line.
This syntax:
An image {{:wiki:dokuwiki-128.png?nolink&10|}} is displayed
appears as
An image
(image here)
is displayed
instead of as
an image (image here) is displayed.
The rendering in html doesn't change between templates, it is rendered as
The difference appears to be in the CSS used by the media class.
The media class is picked up first from argon-design-system.css, with elements
display: flex
align-items: flex-start
It next inherits from the img class in the same file:
vertical-align: middle;
border-style: none;
The text was updated successfully, but these errors were encountered: