-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
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
[アクセシビリティ対応] トップページ以外のサイトタイトルは段落にしました #222
Conversation
補足
|
# Conflicts: # readme.txt
@sysbird ありがとうございます。 ヘッダーがサイトタイトルのためだけに分かれるのは一般ユーザーには理解不能だと思うので避けたいです。 サイトタイトルブロックのデフォルトタグを段落にするだけして、トップページだけ WP_HTML_Tag_Processor で h1 に出来ないか検討しましたが無理でした。 トップページで使用しているヒーローエリアのパターンの元を h1 にすると、パターンを貼り付けられた時に h1 がついてしまうので、それもできない そもそも本質的には Dynamic If Block で対応できる。 公式通すためだけに構造がカオスになるよりはアクセスビリティ対応見送るくらいで良い。 と、いう事でここは対応見送ります。 |
font-weight: bold; | ||
line-height: var(--wp--custom--typography--line-height--heading); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
font-weight: bold; | |
line-height: var(--wp--custom--typography--line-height--heading); |
@sysbird CSSでの指定はできればしない方が望ましいので、theme.json の styles -> blocks に
"core/site-title": {
"typography": {
"fontWeight": "700",
"lineHeight": "var(--wp--custom--typography--line-height--heading)"
}
},
を追加する形でよろしくお願いいたします。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@kurudrive
見ていただいてありがとうございます
同感です
このままでもいったん申請してみて、他のテーマを見てるとアクセシビリティタグ付くかも?と思います
チケットへのリンク / 変更の理由(元のissueがあればリンクを貼り付ければOK)
[アクセシビリティ対応] 見出し #208
複数の
<h1>
は推奨されないため、ヘッダー内のサイトタイトルが全ページで<h1>
となっているのを、下記に変更しました【現状】
<h1>
リンクあり【対応後】
このプルリクで変更した事を記載してください
実装者はレビュワーに回す前に以下の事を確認してチェックをつけてください。
ソースコードについて
プログラムの変更の場合
テストを書かないのは普通ではありません。書けるテストは極力書くようにしてください。
書いていない場合は書かない理由を記載してください。
その他
変更内容について何を確認したか、どういう方法で確認をしたかなど
サイトタイトルが、
※ トップページとは、ホーム、フロント、 デフォルトのテンプレートをさします
レビュワーの確認方法・確認する内容など
上記と同じです
レビュワーに回す前の確認事項
レビュワー向け
確認して変更が反映されていない場合の確認事項