Use less contrast on the sidebar
This commit is contained in:
parent
e8aae26aea
commit
9092ae3db8
@ -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_);
|
||||
|
Loading…
Reference in New Issue
Block a user