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
First weird case:
In my config file:
'styles' => [ 'default' => [ 'ul' => 'bg-success', 'ul ul' => 'bg-fail', 'li' => 'list-disc mb-1.5', ], ],
The outcome.
I expected the nested ul to have bg-fail as a class, but it doesnt.
ul
bg-fail
These settings seem to work:
'styles' => [ 'default' => [ 'li' => 'list-disc mb-1.5', 'ul' => 'bg-success', 'li ul' => 'bg-fail', ], ],
The text was updated successfully, but these errors were encountered:
The following should work correctly:
'styles' => [ 'default' => [ 'ul' => 'bg-success', 'ul li ul' => 'bg-fail', 'li' => 'list-disc mb-1.5', ], ], ```
Sorry, something went wrong.
Sadly that does not work. It seems to only select the first occurrence.
As those packages do work similar, it's related: visuellverstehen/statamic-classify#16
jonassiewertsen
No branches or pull requests
First weird case:
In my config file:
The outcome.
I expected the nested
ul
to havebg-fail
as a class, but it doesnt.These settings seem to work:
The text was updated successfully, but these errors were encountered: