From 42f5014404ec51a4bc3c7f5f72ec776514a17faa Mon Sep 17 00:00:00 2001 From: Karol Kosek Date: Sun, 13 Dec 2020 14:15:54 +0100 Subject: DocumentStyle: add blockquote background rule to css --- src/documentstyle.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'src/documentstyle.cpp') diff --git a/src/documentstyle.cpp b/src/documentstyle.cpp index 5f31a5f..5829a1b 100644 --- a/src/documentstyle.cpp +++ b/src/documentstyle.cpp @@ -420,6 +420,7 @@ QString DocumentStyle::toStyleSheet() const css += QString("h1 { color: %2; %1 }\n").arg(encodeCssFont (h1_font)).arg(h1_color.name()); css += QString("h2 { color: %2; %1 }\n").arg(encodeCssFont (h2_font)).arg(h2_color.name()); css += QString("h3 { color: %2; %1 }\n").arg(encodeCssFont (h3_font)).arg(h3_color.name()); + css += QString("blockquote { background: %1 }\n").arg(blockquote_color.name()); // qDebug() << "CSS → " << css; return css; -- cgit v1.2.3