goldendict-ng/article-style-print.css
Igor Kushnir c087d60165 Set article background to white while printing
cb6b00d85e set .gdarticle background to
`#fefdeb` in article-style.css, but failed to override it in
article-style-print.css.

Set html background to white as well in order to prevent a thin border
around articles' contents if non-printing article styles set html
background to a color other than white.

Printing color background makes little sense and is wasteful. Users who
prefer the old behavior can override the background color in
<Configuration Folder>/article-style-print.css.

Use `background` rather than `background-color` CSS property in order to
overwrite any background image set by non-printing article styles.
2022-11-16 18:51:01 +03:00

14 lines
184 B
CSS

/* This stylesheet is used for printing only, overriding article-style.css */
html, body, .gdarticle
{
background: white;
}
/* Hide audio icons */
.dsl_s_wav
{
display: none;
}