diff --git a/resources/skins/vergilius/html_adblocked.html b/resources/skins/vergilius/html_adblocked.html index 3cb71403b..87185ea95 100755 --- a/resources/skins/vergilius/html_adblocked.html +++ b/resources/skins/vergilius/html_adblocked.html @@ -1,11 +1,6 @@ - -
-
- - - %2 -
-
+
+

Error: %1

+
+ %2 +
+
\ No newline at end of file diff --git a/resources/skins/vergilius/html_enclosure_every.html b/resources/skins/vergilius/html_enclosure_every.html index 09035c6ca..9ab2a3c01 100755 --- a/resources/skins/vergilius/html_enclosure_every.html +++ b/resources/skins/vergilius/html_enclosure_every.html @@ -1 +1 @@ -%2 (%3) \ No newline at end of file +%2 (%3) \ No newline at end of file diff --git a/resources/skins/vergilius/html_single_message.html b/resources/skins/vergilius/html_single_message.html index c8c62aa41..33df51b56 100755 --- a/resources/skins/vergilius/html_single_message.html +++ b/resources/skins/vergilius/html_single_message.html @@ -1,15 +1,12 @@ -
-
-

%1 URL %6

-
-
- %7 -
- %4 +
+

%1 URL %6

+
+
+ %2, %5
-
- -
\ No newline at end of file diff --git a/resources/skins/vergilius/html_wrapper.html b/resources/skins/vergilius/html_wrapper.html index 8052cb172..a4cb5e9c6 100755 --- a/resources/skins/vergilius/html_wrapper.html +++ b/resources/skins/vergilius/html_wrapper.html @@ -1,5929 +1,35 @@ + - - - - - + - - - - - %1 - + + + + + + %1 - - %2 - diff --git a/src/librssguard/gui/newspaperpreviewer.cpp b/src/librssguard/gui/newspaperpreviewer.cpp index 2258fd1fd..22f49b540 100644 --- a/src/librssguard/gui/newspaperpreviewer.cpp +++ b/src/librssguard/gui/newspaperpreviewer.cpp @@ -37,7 +37,7 @@ void NewspaperPreviewer::showMoreMessages() { prev->layout()->setContentsMargins(margins); - prev->setFixedHeight(200); + prev->setFixedHeight(300); prev->loadMessage(msg, m_root); m_ui->m_layout->insertWidget(m_ui->m_layout->count() - 2, prev); } diff --git a/src/librssguard/miscellaneous/skinfactory.cpp b/src/librssguard/miscellaneous/skinfactory.cpp index f90a4cd0d..b2e56e71f 100644 --- a/src/librssguard/miscellaneous/skinfactory.cpp +++ b/src/librssguard/miscellaneous/skinfactory.cpp @@ -63,8 +63,7 @@ QString SkinFactory::selectedSkinName() const { QString SkinFactory::adBlockedPage(const QString& subscription, const QString& rule) { const QString& adblocked = currentSkin().m_adblocked.arg(tr("This page was blocked by AdBlock"), tr(R"(Blocked by set: "%1"
Blocked by filter: "%2")") - .arg(subscription, - rule)); + .arg(subscription, rule)); return currentSkin().m_layoutMarkupWrapper.arg(tr("This page was blocked by AdBlock"), adblocked); }