It is neither working, when for an inline link where the X is set for the block, nor when applying a span to the inline link part and setting an X as text-decoration for that span. The other font settings are working, so it should be possible for this too.
A workaround is a class or custom CSS like the following (and it works), so it should be possible to implement it:
Hi @FZwo , I’m not sure if it will fit your specific use-case, but this is one approach you can use in the meantime while waiting for this to bug to be addressed.
Combining the flexibility of global classes with relative styling using the descendant selector makes it easy to quickly style all of the links in a section or other container consistently and in a re-usable way.
What I got now is:
one has to first define a new global class, and after that create relatives styling for that class
Question: is it possible (that’s what I tried several times before) to make a virtual class a global class, or an existing relative style a global class, at least as an predefined input for a global class?
The reason I am asking, is, that in some cases one has created a virtual class with some effort, and then one comes to the conclusion, it would be a good Idea to just have that as a global class
While there is no one-click solution, this is possible using copy/paste.
Find the original element associated with your virtual class and in the navigator copy the styles for it (important note: currently relative styles are not copied with the other styles, so these will need to be copy/pasted into the global class separately)
Create your new global class and paste the styles you copied in step one
At the very least this is faster than recreating the global class from scratch if it contains a lot of style rules.