From 71f66c6229f836f7c9f82fd4ccc78be129318f25 Mon Sep 17 00:00:00 2001 From: Michael Schuster Date: Sun, 1 Dec 2019 16:07:16 +0100 Subject: [PATCH] Fix SSL-button's info background color for Dark Mode Signed-off-by: Michael Schuster --- src/gui/sslbutton.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/sslbutton.cpp b/src/gui/sslbutton.cpp index 98db319e6..0efdc6f7c 100644 --- a/src/gui/sslbutton.cpp +++ b/src/gui/sslbutton.cpp @@ -142,7 +142,7 @@ QMenu *SslButton::buildCertMenu(QMenu *parent, const QSslCertificate &cert, // create label first QLabel *label = new QLabel(parent); - label->setStyleSheet(QLatin1String("QLabel { padding: 8px; background-color: #fff; }")); + label->setStyleSheet(QLatin1String("QLabel { padding: 8px; }")); label->setTextFormat(Qt::RichText); label->setText(details);