It seems the following grammar is not supported:
.mainpage-columns > div{
background-color: white;
background-color: var(--background-color, white);
}
It seems the following grammar is not supported:
.mainpage-columns > div{
background-color: white;
background-color: var(--background-color, white);
}
Such as margin-block, margin-inline, padding-block, padding-inline, and also some CSS functions like calc, color-mix.
The margin and padding selectors are now implemented in the development branch: https://github.com/octfx/mediawiki-extensions-TemplateStylesExtender/commit/d7e525b7af26896c586be2ac30e7a51a4773be6b
calc
should already be usable without TSE.
I've put color-mix
on my todo, and will look at it later
@Octfx created a bugfix Version 1.0.2. With that version, the issue is gone. Thanks!
Hello,
I would really love to use the extension because I need support for CSS Variables. The problem is, that as soon as I activate the Extension, the CSS Property border-collapse: inherit isn't applied anymore to the CSS Class that is applied to a table.
The CSS Class looks like the following:
.honor-infobox {
text-align: center;
box-shadow: 5px 5px 10px rgba(0,0,0, .3);
border-radius: 10px;
margin-bottom: 0;
border-collapse: inherit;
border-spacing: .5em;
}
For information about the used version's you can follow this link. I have deactivated the Extension for now so everything get's displayed correctly, but I downloaded it from GitHub a few minutes ago.
Thank's for helping and kind regards, DesignerThan
Thanks for the fast response and fix. It works now. Thank you very much.