Fix background color on the room list widget

pull/1/head
Konstantinos Sideris 6 years ago
parent 899249a485
commit f8a1ed84a8
  1. 4
      resources/styles/nheko-dark.qss
  2. 4
      resources/styles/nheko.qss
  3. 1
      src/RoomList.cpp

@ -48,6 +48,10 @@ RoomList > * {
border: none; border: none;
} }
#roomlist_area {
background-color: #2d3139;
}
CommunitiesList, CommunitiesList,
CommunitiesList > * { CommunitiesList > * {
background-color: #2d3139; background-color: #2d3139;

@ -48,6 +48,10 @@ RoomList > * {
border: none; border: none;
} }
#roomlist_area {
background-color: white;
}
CommunitiesList, CommunitiesList,
CommunitiesList > * { CommunitiesList > * {
background-color: white; background-color: white;

@ -51,6 +51,7 @@ RoomList::RoomList(QSharedPointer<UserSettings> userSettings, QWidget *parent)
#endif #endif
scrollAreaContents_ = new QWidget(this); scrollAreaContents_ = new QWidget(this);
scrollAreaContents_->setObjectName("roomlist_area");
contentsLayout_ = new QVBoxLayout(scrollAreaContents_); contentsLayout_ = new QVBoxLayout(scrollAreaContents_);
contentsLayout_->setSpacing(0); contentsLayout_->setSpacing(0);

Loading…
Cancel
Save