1 files changed, 1 insertions, 6 deletions
diff --git a/src/HistoryViewManager.cc b/src/HistoryViewManager.cc
index c6d33e02..5967ac12 100644
--- a/src/HistoryViewManager.cc
+++ b/src/HistoryViewManager.cc
@@ -30,12 +30,7 @@ HistoryViewManager::HistoryViewManager(QSharedPointer<MatrixClient> client, QWid
: QStackedWidget(parent)
, client_(client)
{
- setStyleSheet(
- "QWidget {background: #f8fbfe; color: #e8e8e8; border: none;}"
- "QScrollBar:vertical { background-color: #f8fbfe; width: 8px; border-radius: 20px; margin: 0px 2px 0 2px; }"
- "QScrollBar::handle:vertical { border-radius : 50px; background-color : #d6dde3; }"
- "QScrollBar::add-line:vertical { border: none; background: none; }"
- "QScrollBar::sub-line:vertical { border: none; background: none; }");
+ setStyleSheet("QWidget { background: #f8fbfe; color: #e8e8e8; border: none;}");
connect(client_.data(),
SIGNAL(messageSent(const QString &, const QString &, int)),
|