summary refs log tree commit diff
path: root/src/TopRoomBar.cc
diff options
context:
space:
mode:
authorKonstantinos Sideris <sideris.konstantin@gmail.com>2017-04-12 01:29:25 +0300
committerKonstantinos Sideris <sideris.konstantin@gmail.com>2017-04-12 01:29:25 +0300
commite8aae26aea0727606f3cf182697f5914911821b4 (patch)
treef4def2eb40b9d70485034f8b3a4e77772355145a /src/TopRoomBar.cc
parentAdd style for m.notice (diff)
downloadnheko-e8aae26aea0727606f3cf182697f5914911821b4.tar.xz
Small stylistic changes
Diffstat (limited to 'src/TopRoomBar.cc')
-rw-r--r--src/TopRoomBar.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/TopRoomBar.cc b/src/TopRoomBar.cc

index adff71b0..9e30c499 100644 --- a/src/TopRoomBar.cc +++ b/src/TopRoomBar.cc
@@ -23,8 +23,8 @@ TopRoomBar::TopRoomBar(QWidget *parent) : QWidget(parent) { setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); - setMinimumSize(QSize(0, 70)); - setStyleSheet("background-color: #171919; color: #ebebeb;"); + setMinimumSize(QSize(0, 65)); + setStyleSheet("background-color: #232626; color: #ebebeb;"); top_layout_ = new QHBoxLayout(); top_layout_->setSpacing(10); @@ -33,17 +33,17 @@ TopRoomBar::TopRoomBar(QWidget *parent) avatar_ = new Avatar(this); avatar_->setLetter(QChar('?')); avatar_->setBackgroundColor(QColor("#ebebeb")); - avatar_->setSize(45); + avatar_->setSize(35); text_layout_ = new QVBoxLayout(); text_layout_->setSpacing(0); text_layout_->setContentsMargins(0, 0, 0, 0); name_label_ = new QLabel(this); - name_label_->setStyleSheet("font-size: 11pt;"); + name_label_->setStyleSheet("font-size: 14px; font-weight: 600;"); topic_label_ = new QLabel(this); - topic_label_->setStyleSheet("font-size: 10pt; color: #6c7278;"); + topic_label_->setStyleSheet("font-size: 12px;"); text_layout_->addWidget(name_label_); text_layout_->addWidget(topic_label_);