You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This issue originally was noticed when using mkdocs-material. Fonts were not showing within the PDF, although they would render fine in the browser. Upon closer inspection, it appears that nested variables will break the font name resolution:
WARNING: Unsupported computed value "var(--md-text-font,_),-apple-system,BlinkMacSystemFont,Helvetica,Arial,sans-serif" set in variable '--md-text-font-family' for property 'font-family'.
The problem is not exactly caused by nested variables, it’s caused by variables in properties allowing multiple values. This bug is thus a duplicate of #1219.
This issue originally was noticed when using
mkdocs-material
. Fonts were not showing within the PDF, although they would render fine in the browser. Upon closer inspection, it appears that nested variables will break the font name resolution:This can be reproduced with the following CSS:
Ultimately, the
font-family
property validator does not have a case to handle when the list contains aFunctionBlock
value.The text was updated successfully, but these errors were encountered: