Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Schuster <michael@schuster.ms>2019-12-01 18:07:16 +0300
committerMichael Schuster <48932272+misch7@users.noreply.github.com>2019-12-09 23:37:21 +0300
commit71f66c6229f836f7c9f82fd4ccc78be129318f25 (patch)
tree472fba6097387d96fc9d2971e86b03874db2e37a /src/gui/sslbutton.cpp
parentb4f926ded72798d4861747bf2b2a1634c3810f75 (diff)
Fix SSL-button's info background color for Dark Mode
Signed-off-by: Michael Schuster <michael@schuster.ms>
Diffstat (limited to 'src/gui/sslbutton.cpp')
-rw-r--r--src/gui/sslbutton.cpp2
1 files changed, 1 insertions, 1 deletions
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);