summaryrefslogtreecommitdiffstats
path: root/components/package/contents/ui/FocusComposer.qml
diff options
context:
space:
mode:
authorMichael Bohlender <michael.bohlender@kdemail.net>2016-06-20 09:11:49 +0200
committerMichael Bohlender <michael.bohlender@kdemail.net>2016-06-20 09:11:49 +0200
commit3d81e5da850f459715b36b709b43d4f2bb0a2d51 (patch)
treefddcad655846e336acaca246b808843b926aa314 /components/package/contents/ui/FocusComposer.qml
parent9b63f3f0b8705b7075206c9511aa64eb4ac79c44 (diff)
downloadkube-3d81e5da850f459715b36b709b43d4f2bb0a2d51.tar.gz
kube-3d81e5da850f459715b36b709b43d4f2bb0a2d51.zip
composer: fix issues with dark themes
Diffstat (limited to 'components/package/contents/ui/FocusComposer.qml')
-rw-r--r--components/package/contents/ui/FocusComposer.qml8
1 files changed, 4 insertions, 4 deletions
diff --git a/components/package/contents/ui/FocusComposer.qml b/components/package/contents/ui/FocusComposer.qml
index ea410338..b3c0d4a6 100644
--- a/components/package/contents/ui/FocusComposer.qml
+++ b/components/package/contents/ui/FocusComposer.qml
@@ -19,7 +19,7 @@ import QtQuick 2.4
19import QtQuick.Controls 1.4 19import QtQuick.Controls 1.4
20import QtQuick.Layouts 1.1 20import QtQuick.Layouts 1.1
21 21
22import org.kube.framework.theme 1.0 22import org.kde.kirigami 1.0 as Kirigami
23 23
24Rectangle { 24Rectangle {
25 id: root 25 id: root
@@ -28,7 +28,7 @@ Rectangle {
28 composer.loadMessage(message, loadAsDraft); 28 composer.loadMessage(message, loadAsDraft);
29 } 29 }
30 30
31 color: ColorPalette.border 31 color: Kirigami.Theme.textColor
32 32
33 opacity: 0.9 33 opacity: 0.9
34 34
@@ -46,7 +46,7 @@ Rectangle {
46 height: root.height * 0.8 46 height: root.height * 0.8
47 width: root.width * 0.8 47 width: root.width * 0.8
48 48
49 color: ColorPalette.background 49 color: Kirigami.Theme.backgroundColor
50 50
51 MouseArea { 51 MouseArea {
52 anchors.fill: parent 52 anchors.fill: parent
@@ -56,7 +56,7 @@ Rectangle {
56 56
57 anchors { 57 anchors {
58 fill: parent 58 fill: parent
59 margins: Unit.size * 3 59 margins: Kirigami.Units.largeSpacing
60 } 60 }
61 61
62 Composer { 62 Composer {