From: Michael Schuster Date: Sun, 1 Dec 2019 15:07:16 +0000 (+0100) Subject: Fix SSL-button's info background color for Dark Mode X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~222^2^2~498 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=71f66c6229f836f7c9f82fd4ccc78be129318f25;p=nextcloud-desktop.git Fix SSL-button's info background color for Dark Mode Signed-off-by: Michael Schuster --- 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);