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
From tex in Table headers?:
This style rule is matching the contents of the TeX element: inputs/src/style.css Lines 231 to 235 in 238639f .__ns__-table thead th span { display: inline-block; width: 0.5em; margin-left: -0.5em; } The rule should be made more specific, like .__ns__-table > table > thead > th > span.
This style rule is matching the contents of the TeX element:
inputs/src/style.css
Lines 231 to 235 in 238639f
.__ns__-table > table > thead > th > span
The text was updated successfully, but these errors were encountered:
If the problematic ruleset is:
Lines 231 to 235 in 86fa5c0
… then a possible fix would be to modify the above selector as follows:
.__ns__-table thead th > span:first-of-type:not([class]) { /* ... */ }
OR
.__ns__-table thead th > span:first-of-type { /* ... */ }
Sorry, something went wrong.
No branches or pull requests
From tex in Table headers?:
The text was updated successfully, but these errors were encountered: