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
WP6.4/6.5ともに発生。
テーマ側で font-size: 1.2emを適用しているが、フロントエンドではグローバルスタイル (global-styles-inline-css) が font-size: 1.5em を適用するため、エディター側とデフォルトフォントサイズが異なってしまう。
font-size: 1.2em
global-styles-inline-css
font-size: 1.5em
クラシックテーマで、このグローバルスタイルがフロントエンドで出力される事自体が不具合のようにみえますが、テーマ側で詳細度を上げてもよいかもしれません。
The text was updated successfully, but these errors were encountered:
確かに、クラシックテーマでフロントでのみフォントサイズ指定されてますね。 コアの不具合だと思いますが一応詳細度高めて対応しました。
Sorry, something went wrong.
d3af24e
こちらの問題ですが、最新のGutenbergで確認した所、詳細度が下がっていたため問題は発生しないようです。
コアのスタイルがテーマのスタイルに勝っている
コアのスタイルに :where が使われるようになったため、テーマのスタイルが勝っている
:where
なお、このスタイルはblock.jsonの __experimentalStyleから来ているのですが、これがフロントエンドだけに適用される問題については、以下で報告されています。
__experimentalStyle
WordPress/gutenberg#46818
No branches or pull requests
WP6.4/6.5ともに発生。
テーマ側で
font-size: 1.2em
を適用しているが、フロントエンドではグローバルスタイル (global-styles-inline-css
) がfont-size: 1.5em
を適用するため、エディター側とデフォルトフォントサイズが異なってしまう。クラシックテーマで、このグローバルスタイルがフロントエンドで出力される事自体が不具合のようにみえますが、テーマ側で詳細度を上げてもよいかもしれません。
The text was updated successfully, but these errors were encountered: