@alexander, thanks for all the great classes. This will help a lot.
I am trying to think of a way to highlight all options simultaneously. Very often more than one is applied. For example, an element could have both Custom CSS and Interaction effects.
Unfortunately, there are ten various indicators, and things like this won’t work:
.tco-crumb.has-element-css::after {}
.tco-crumb.has-interaction-effects::after {}
...
If both are in use, only the last one will be shown. It is possible to have one more applied with the ::before
pseudo elements but there are so many others.
I was hoping to place a line of small indicators above the Breadcrumb’s text, but that is not possible. I could perhaps do something for each of the classes, like border bottom for one, border top for the other, etc. That’s messy though. There is also a <span>
element inside, so I have used it to solve Looper Consumer and the Provider with its own ::before
and ::after.
Do you have any idea what could we do to display all indicators, even if many are applied simultaneously?
Thanks!