Skip to content
Snippets Groups Projects
Commit 9092ae3d authored by Konstantinos Sideris's avatar Konstantinos Sideris
Browse files

Use less contrast on the sidebar

parent e8aae26a
No related branches found
No related tags found
Loading
......@@ -90,7 +90,7 @@
<item>
<widget class="QWidget" name="sideBarTopWidget" native="true">
<property name="styleSheet">
<string notr="true">background-color: #1c3133;
<string notr="true">background-color: #2D3F3D;
color: #ebebeb;</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout_9">
......
......@@ -66,7 +66,7 @@ RoomInfoListItem::RoomInfoListItem(RoomInfo info, QWidget *parent)
roomName_ = new QLabel(info_.name(), textWidget_);
roomName_->setMaximumSize(parent->width() - 10, 20);
roomName_->setStyleSheet("font-weight: 500; font-size: 14px;");
roomName_->setStyleSheet("font-weight: 400; font-size: 14px;");
roomName_->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
roomTopic_ = new QLabel(info_.topic(), textWidget_);
......
......@@ -43,15 +43,16 @@ UserInfoWidget::UserInfoWidget(QWidget *parent)
displayNameLabel_->setStyleSheet(
"padding: 0 9px;"
"color: #ebebeb;"
"font-size: 11pt;"
"font-size: 14px;"
"font-weight: 500;"
"margin-bottom: -10px;");
displayNameLabel_->setAlignment(Qt::AlignLeading | Qt::AlignLeft | Qt::AlignTop);
userIdLabel_ = new QLabel(this);
userIdLabel_->setStyleSheet(
"padding: 0 8px 8px 8px;"
"color: #5D6565;"
"font-size: 10pt;");
"color: #d4d2d1;"
"font-size: 13px");
userIdLabel_->setAlignment(Qt::AlignLeading | Qt::AlignLeft | Qt::AlignVCenter);
avatarLayout_->addWidget(userAvatar_);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment