summary refs log tree commit diff
path: root/src/RegisterPage.cc
diff options
context:
space:
mode:
authorKonstantinos Sideris <sideris.konstantin@gmail.com>2017-09-16 17:43:34 +0300
committerKonstantinos Sideris <sideris.konstantin@gmail.com>2017-09-16 17:43:34 +0300
commitfd552b8a9c07fc70d850511034cd76f25c8f1825 (patch)
tree3ba2eea7d4f8aa30e27f43ea83dadeed1e48003f /src/RegisterPage.cc
parentMerge branch 'images' (diff)
downloadnheko-fd552b8a9c07fc70d850511034cd76f25c8f1825.tar.xz
Remove off-white color
Diffstat (limited to 'src/RegisterPage.cc')
-rw-r--r--src/RegisterPage.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/RegisterPage.cc b/src/RegisterPage.cc

index f29dd268..ce9f43a6 100644 --- a/src/RegisterPage.cc +++ b/src/RegisterPage.cc
@@ -26,7 +26,7 @@ RegisterPage::RegisterPage(QSharedPointer<MatrixClient> client, QWidget *parent) : QWidget(parent) , client_(client) { - setStyleSheet("background-color: #f9f9f9"); + setStyleSheet("background-color: #fff"); top_layout_ = new QVBoxLayout(); @@ -71,27 +71,27 @@ RegisterPage::RegisterPage(QSharedPointer<MatrixClient> client, QWidget *parent) username_input_->setTextColor("#333333"); username_input_->setLabel(tr("Username")); username_input_->setInkColor("#555459"); - username_input_->setBackgroundColor("#f9f9f9"); + username_input_->setBackgroundColor("#fff"); password_input_ = new TextField(); password_input_->setTextColor("#333333"); password_input_->setLabel(tr("Password")); password_input_->setInkColor("#555459"); - password_input_->setBackgroundColor("#f9f9f9"); + password_input_->setBackgroundColor("#fff"); password_input_->setEchoMode(QLineEdit::Password); password_confirmation_ = new TextField(); password_confirmation_->setTextColor("#333333"); password_confirmation_->setLabel(tr("Password confirmation")); password_confirmation_->setInkColor("#555459"); - password_confirmation_->setBackgroundColor("#f9f9f9"); + password_confirmation_->setBackgroundColor("#fff"); password_confirmation_->setEchoMode(QLineEdit::Password); server_input_ = new TextField(); server_input_->setTextColor("#333333"); server_input_->setLabel(tr("Home Server")); server_input_->setInkColor("#555459"); - server_input_->setBackgroundColor("#f9f9f9"); + server_input_->setBackgroundColor("#fff"); form_layout_->addWidget(username_input_, Qt::AlignHCenter, 0); form_layout_->addWidget(password_input_, Qt::AlignHCenter, 0);