mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 11:00:48 +03:00
Fix background color on the room list widget
This commit is contained in:
parent
899249a485
commit
f8a1ed84a8
3 changed files with 9 additions and 0 deletions
|
@ -48,6 +48,10 @@ RoomList > * {
|
|||
border: none;
|
||||
}
|
||||
|
||||
#roomlist_area {
|
||||
background-color: #2d3139;
|
||||
}
|
||||
|
||||
CommunitiesList,
|
||||
CommunitiesList > * {
|
||||
background-color: #2d3139;
|
||||
|
|
|
@ -48,6 +48,10 @@ RoomList > * {
|
|||
border: none;
|
||||
}
|
||||
|
||||
#roomlist_area {
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
CommunitiesList,
|
||||
CommunitiesList > * {
|
||||
background-color: white;
|
||||
|
|
|
@ -51,6 +51,7 @@ RoomList::RoomList(QSharedPointer<UserSettings> userSettings, QWidget *parent)
|
|||
#endif
|
||||
|
||||
scrollAreaContents_ = new QWidget(this);
|
||||
scrollAreaContents_->setObjectName("roomlist_area");
|
||||
|
||||
contentsLayout_ = new QVBoxLayout(scrollAreaContents_);
|
||||
contentsLayout_->setSpacing(0);
|
||||
|
|
Loading…
Reference in a new issue