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

Add borders

parent 020a842a
No related branches found
No related tags found
No related merge requests found
......@@ -28,6 +28,7 @@ signals:
protected:
void resizeEvent(QResizeEvent *event) override;
void paintEvent(QPaintEvent *event) override;
private:
QHBoxLayout *layout_;
......
......@@ -7,6 +7,11 @@ QLabel {
background-color: #383c4a;
}
#sideBar {
border: none;
border-right: 1px solid #414A59;
}
TimelineView,
TimelineView > * {
background-color: #383c4a;
......@@ -73,6 +78,11 @@ UserInfoWidget, UserInfoWidget > * {
color: #b0b3ba;
}
UserInfoWidget {
border: none;
border-bottom: 1px solid #414A59;
}
UserSettingsPage {
background-color: #383c4a;
}
......@@ -142,3 +152,13 @@ ScrollBar {
qproperty-handleColor: #caccd1;
qproperty-backgroundColor: #383c4e;
}
SideBarActions {
border: none;
border-top: 1px solid #414A59;
}
TopRoomBar {
border: none;
border-bottom: 1px solid #414A59;
}
......@@ -7,6 +7,11 @@ QLabel {
background-color: white;
}
#sideBar {
border: none;
border-right: 1px solid #dcdcdc;
}
TimelineView,
TimelineView > * {
background-color: white;
......@@ -76,6 +81,11 @@ UserInfoWidget, UserInfoWidget > * {
color: #ebebeb;
}
UserInfoWidget {
border: none;
border-bottom: 1px solid #dcdcdc;
}
UserSettingsPage {
background-color: white;
}
......@@ -139,3 +149,13 @@ ScrollBar {
qproperty-handleColor: #ccc;
qproperty-backgroundColor: #efefef;
}
SideBarActions {
border: none;
border-top: 1px solid #dcdcdc;
}
TopRoomBar {
border: none;
border-bottom: 1px solid #dcdcdc;
}
......@@ -8,6 +8,11 @@ OverlayWidget > * {
background-color: palette(window);
}
#sideBar {
border: none;
border-right: 1px solid palette(text);
}
TimelineView,
TimelineView > *,
TimelineItem,
......@@ -79,6 +84,11 @@ UserInfoWidget > * {
background-color: palette(window);
}
UserInfoWidget {
border: none;
border-bottom: 1px solid palette(text);
}
emoji--Category,
emoji--Category > * {
background-color: palette(window);
......@@ -108,3 +118,13 @@ QListWidget {
background-color: palette(window);
color: palette(text);
}
SideBarActions {
border: none;
border-top: 1px solid palette(text);
}
TopRoomBar {
border: none;
border-bottom: 1px solid palette(text);
}
......@@ -78,6 +78,7 @@ ChatPage::ChatPage(QSharedPointer<MatrixClient> client,
// SideBar
sideBar_ = new QFrame(this);
sideBar_->setObjectName("sideBar");
sideBar_->setMinimumWidth(ui::sidebar::NormalSize);
sideBarLayout_ = new QVBoxLayout(sideBar_);
sideBarLayout_->setSpacing(0);
......
......@@ -131,3 +131,12 @@ SideBarActions::resizeEvent(QResizeEvent *event)
createRoomBtn_->show();
}
}
void
SideBarActions::paintEvent(QPaintEvent *)
{
QStyleOption opt;
opt.init(this);
QPainter p(this);
style()->drawPrimitive(QStyle::PE_Widget, &opt, &p, this);
}
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