Add a few missing palette colors
4 files changed, 2 insertions, 35 deletions
diff --git a/resources/qml/delegates/FileMessage.qml b/resources/qml/delegates/FileMessage.qml
index 2fe0a490..9a5300bb 100644
--- a/resources/qml/delegates/FileMessage.qml
+++ b/resources/qml/delegates/FileMessage.qml
@@ -3,7 +3,7 @@ import QtQuick.Layouts 1.2
Rectangle {
radius: 10
- color: colors.base
+ color: colors.dark
height: row.height + 24
width: parent ? parent.width : undefined
diff --git a/resources/qml/delegates/PlayableMediaMessage.qml b/resources/qml/delegates/PlayableMediaMessage.qml
index a4096864..20177a04 100644
--- a/resources/qml/delegates/PlayableMediaMessage.qml
+++ b/resources/qml/delegates/PlayableMediaMessage.qml
@@ -8,7 +8,7 @@ import im.nheko 1.0
Rectangle {
id: bg
radius: 10
- color: colors.base
+ color: colors.dark
height: content.height + 24
width: parent ? parent.width : undefined
diff --git a/resources/styles/nheko-dark.qss b/resources/styles/nheko-dark.qss
index d89a61bb..875a3828 100644
--- a/resources/styles/nheko-dark.qss
+++ b/resources/styles/nheko-dark.qss
@@ -176,27 +176,6 @@ UserInfoWidget {
border-bottom: 1px solid #202228;
}
-QPushButton,
-QComboBox,
-QAbstractItemView,
-QComboBox > * {
- background: white;
- color: #202228;
-}
-
-QComboBox:hover,
-QAbstractItemView::item:hover,
-QPushButton:hover {
- background: #38a3d8;
- selection-background-color: #38a3d8;
-}
-
-
-QAbstractItemView::item:selected {
- border-color: darkblue;
- background: grey;
-}
-
Avatar {
qproperty-textColor: white;
qproperty-backgroundColor: #2d3139;
diff --git a/resources/styles/nheko.qss b/resources/styles/nheko.qss
index 1a7cb80f..51e5d64e 100644
--- a/resources/styles/nheko.qss
+++ b/resources/styles/nheko.qss
@@ -190,18 +190,6 @@ RegisterPage {
color: #333;
}
-QComboBox:hover,
-QAbstractItemView::item:hover,
-QPushButton:hover {
- background: #38a3d8;
- selection-background-color: #38a3d8;
-}
-
-QAbstractItemView::item:selected {
- border-color: darkblue;
- background: grey;
-}
-
emoji--Panel,
emoji--Panel > * {
background-color: #eee;
|