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
現状、theme の package には用途別に複数のスタイルシートを含めている。
@import 'theme_common.css'
@media print {}
The text was updated successfully, but these errors were encountered:
@MurakamiShinyu @spring-raining 12月MTGで話題に上がっていた、theme_print.css と theme_screen.css を分けるかどうかについての議論用 issue を作成しました。抜けている点や間違っている点があれば教えてください 🙏
Sorry, something went wrong.
theme_common.css 内で @media print {} を使えば、theme_print.css ファイルを別途作らなくて済む
→「theme_common.css 内で @media print {} や @media screen {} を使えば、theme_print.css と theme_screen.css を別途作らなくて済む」
@media screen {}
ちなみに、非標準ですが @media vivliostyle {} というのも @media print {} と同様に Vivliostyle で有効になります。これは通常のブラウザからの印刷では無視されるけど Vivliostyle だけでは有効にしたいというスタイルを使うという用途のためです。また、特定のCSS機能がサポートされているかどうかでスタイルを分けるのに @supports を使うこともできます(例 @supports (float: footnote) {} で脚注が有効な場合のスタイル)。
@media vivliostyle {}
@supports
@supports (float: footnote) {}
spring-raining
MurakamiShinyu
No branches or pull requests
背景
現状、theme の package には用途別に複数のスタイルシートを含めている。
@import 'theme_common.css'
している議論すべき内容
@media print {}
を使えば、theme_print.css ファイルを別途作らなくて済む参考
The text was updated successfully, but these errors were encountered: