[nasm:master] doc/nasmdoc.css: @media only print -> @media print

nasm-bot for H. Peter Anvin hpa at zytor.com
Thu Apr 25 15:44:04 PDT 2024


Commit-ID:  68999937f340ec19e6a269b520795800c331b0ff
Gitweb:     http://repo.or.cz/w/nasm.git?a=commitdiff;h=68999937f340ec19e6a269b520795800c331b0ff
Author:     H. Peter Anvin <hpa at zytor.com>
AuthorDate: Thu, 25 Apr 2024 15:42:25 -0700
Committer:  H. Peter Anvin <hpa at zytor.com>
CommitDate: Thu, 25 Apr 2024 15:42:25 -0700

doc/nasmdoc.css: @media only print -> @media print

There is no point in using "only" unless there is another
qualifier. The "only" is specifically to prevent older parsers from
unconditionally applying a section with qualifiers.

Signed-off-by: H. Peter Anvin <hpa at zytor.com>


---
 doc/nasmdoc.css | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/doc/nasmdoc.css b/doc/nasmdoc.css
index 59c53811..17969b0a 100644
--- a/doc/nasmdoc.css
+++ b/doc/nasmdoc.css
@@ -72,7 +72,7 @@ li.toc2 {
 ul.navbar {
     display: none;
 }
- at media only print {
+ at media print {
     a {
 	color: inherit;
     }


More information about the Nasm-commits mailing list