Browse Source

Fix font style display issue in HTML messages with styled <span> elements (#1490101)

pull/233/merge
Aleksander Machniak 11 years ago
parent
commit
517b6cff1f
  1. 1
      CHANGELOG
  2. 2
      skins/classic/print.css
  3. 2
      skins/larry/print.css

1
CHANGELOG

@ -52,6 +52,7 @@ CHANGELOG Roundcube Webmail
- Fix setting flags on servers with no PERMANENTFLAGS response (#1490087)
- Fix regression in SHAA password generation in ldap driver of password plugin (#1490094)
- Fix displaying of HTML messages with absolutely positioned elements in Larry skin (#1490103)
- Fix font style display issue in HTML messages with styled <span> elements (#1490101)
RELEASE 1.0.3
-------------

2
skins/classic/print.css

@ -8,7 +8,7 @@ body
margin: 2mm;
}
body, td, th, span, div, p
body, td, th, div, p
{
font-size: 9pt;
color: #000000;

2
skins/larry/print.css

@ -15,7 +15,7 @@ body {
margin: 2mm;
}
body, td, th, span, div, p {
body, td, th, div, p {
font-size: 9pt;
color: #000;
}

Loading…
Cancel
Save