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
Within a tab, we notice a problem when trying to apply a heading tag to some text using a Trix field:
The text disappears, because there is a wrong style that sets display: none on the <h1> tag.
display: none
<h1>
Write any text, it'll display as normal
After clicking on the Heading button, the text disappears from the interface. You can see in the dev tools that the heading is display: none
Heading button
The text was updated successfully, but these errors were encountered:
Bump, this is also causing issues for us.
FYI @diogo-vf we fixed it by adding:
.trix-content h1 { /* important is needed here because of the nova tabs making h1 display none */ display: block !important; }
To our theme.css, which you can register using Nova::style('my-app-name', resource_path('path/to/stylesheet.css'));
Nova::style('my-app-name', resource_path('path/to/stylesheet.css'));
Sorry, something went wrong.
Bump, this is also causing issues for us. FYI @diogo-vf we fixed it by adding: .trix-content h1 { /* important is needed here because of the nova tabs making h1 display none */ display: block !important; } To our theme.css, which you can register using Nova::style('my-app-name', resource_path('path/to/stylesheet.css'));
Thank you !
Cheers for the temp fix @bram-pkg
No branches or pull requests
Description:
Within a tab, we notice a problem when trying to apply a heading tag to some text using a Trix field:
The text disappears, because there is a wrong style that sets
display: none
on the<h1>
tag.Detailed steps to reproduce the issue on a fresh Nova installation:
Write any text, it'll display as normal
After clicking on the
Heading button
, the text disappears from the interface.You can see in the dev tools that the heading is
display: none
The text was updated successfully, but these errors were encountered: