mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-23 20:14:05 +00:00
c087d60165
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.
14 lines
184 B
CSS
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;
|
|
}
|