--- a/QTfrontend/res/css/april1.css Thu Jul 18 18:45:30 2019 +0200
+++ b/QTfrontend/res/css/april1.css Thu Jul 18 19:26:13 2019 +0200
@@ -551,3 +551,12 @@
#keyBinderScrollArea {
background: #130F2A;
}
+#chatContainer {
+border-width: 0px;
+background-color: #ffcc00;
+border-radius: 10px;
+}
+#chatText {
+background-color: rgb(23, 11, 54);
+border-width: 0px;
+}
--- a/QTfrontend/res/css/birthday.css Thu Jul 18 18:45:30 2019 +0200
+++ b/QTfrontend/res/css/birthday.css Thu Jul 18 19:26:13 2019 +0200
@@ -555,3 +555,12 @@
#keyBinderScrollArea {
background: #100308; /* CUSTOM */
}
+#chatContainer {
+border-width: 0px;
+background-color: #ffcc00;
+border-radius: 10px;
+}
+#chatText {
+background-color: rgb(23, 11, 54);
+border-width: 0px;
+}
--- a/QTfrontend/res/css/christmas.css Thu Jul 18 18:45:30 2019 +0200
+++ b/QTfrontend/res/css/christmas.css Thu Jul 18 19:26:13 2019 +0200
@@ -550,3 +550,12 @@
#keyBinderScrollArea {
background: #130F2A;
}
+#chatContainer {
+border-width: 0px;
+background-color: #ffcc00;
+border-radius: 10px;
+}
+#chatText {
+background-color: rgb(23, 11, 54);
+border-width: 0px;
+}
--- a/QTfrontend/res/css/easter.css Thu Jul 18 18:45:30 2019 +0200
+++ b/QTfrontend/res/css/easter.css Thu Jul 18 19:26:13 2019 +0200
@@ -546,3 +546,12 @@
#keyBinderScrollArea {
background: #130F2A;
}
+#chatContainer {
+border-width: 0px;
+background-color: #ffcc00;
+border-radius: 10px;
+}
+#chatText {
+background-color: rgb(23, 11, 54);
+border-width: 0px;
+}
--- a/QTfrontend/res/css/qt.css Thu Jul 18 18:45:30 2019 +0200
+++ b/QTfrontend/res/css/qt.css Thu Jul 18 19:26:13 2019 +0200
@@ -542,3 +542,12 @@
#keyBinderScrollArea {
background: #130F2A;
}
+#chatContainer {
+border-width: 0px;
+background-color: #ffcc00;
+border-radius: 10px;
+}
+#chatText {
+background-color: rgb(23, 11, 54);
+border-width: 0px;
+}
--- a/QTfrontend/ui/widget/chatwidget.cpp Thu Jul 18 18:45:30 2019 +0200
+++ b/QTfrontend/ui/widget/chatwidget.cpp Thu Jul 18 19:26:13 2019 +0200
@@ -201,8 +201,7 @@
mainLayout.setMargin(0);
QWidget * leftSideContainer = new QWidget();
- leftSideContainer->setObjectName("leftSideContainer");
- leftSideContainer->setStyleSheet("#leftSideContainer { border-width: 0px; background-color: #ffcc00; border-radius: 10px;} QTextBrowser, SmartLineEdit { background-color: rgb(13, 5, 68); }");
+ leftSideContainer->setObjectName("chatContainer");
QVBoxLayout * leftSide = new QVBoxLayout(leftSideContainer);
leftSide->setSpacing(3);
leftSide->setMargin(3);
@@ -217,7 +216,7 @@
chatText->setMinimumWidth(10);
chatText->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
chatText->setOpenLinks(false);
- chatText->setStyleSheet("QTextBrowser { background-color: rgb(23, 11, 54); border-width: 0px; }");
+ chatText->setObjectName("chatText");
connect(chatText, SIGNAL(anchorClicked(const QUrl&)),
this, SLOT(linkClicked(const QUrl&)));
leftSide->addWidget(chatText, 1);