summaryrefslogtreecommitdiffstats
path: root/framework/qml/AttachmentDelegate.qml
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2017-04-05 13:00:21 +0200
committerChristian Mollekopf <chrigi_1@fastmail.fm>2017-04-05 13:00:21 +0200
commit5755ad47145d2985ba74354961b4127d82c516f6 (patch)
treeaa6af562b7e587be895ff5a4355270f82f3ea180 /framework/qml/AttachmentDelegate.qml
parente78224a7d9ccf70aadde8c0bff1cab72e8cb7438 (diff)
downloadkube-5755ad47145d2985ba74354961b4127d82c516f6.tar.gz
kube-5755ad47145d2985ba74354961b4127d82c516f6.zip
A single framework plugin
Diffstat (limited to 'framework/qml/AttachmentDelegate.qml')
-rw-r--r--framework/qml/AttachmentDelegate.qml7
1 files changed, 3 insertions, 4 deletions
diff --git a/framework/qml/AttachmentDelegate.qml b/framework/qml/AttachmentDelegate.qml
index a589c9f3..9241efac 100644
--- a/framework/qml/AttachmentDelegate.qml
+++ b/framework/qml/AttachmentDelegate.qml
@@ -19,7 +19,6 @@
19import QtQuick 2.7 19import QtQuick 2.7
20import QtQuick.Layouts 1.1 20import QtQuick.Layouts 1.1
21import org.kde.kirigami 1.0 as Kirigami 21import org.kde.kirigami 1.0 as Kirigami
22import org.kube.components.theme 1.0 as KubeTheme
23 22
24Item { 23Item {
25 id: root 24 id: root
@@ -34,7 +33,7 @@ Item {
34 anchors.fill: parent 33 anchors.fill: parent
35 34
36 id: background 35 id: background
37 color: KubeTheme.Colors.disabledTextColor 36 color: Kube.Colors.disabledTextColor
38 } 37 }
39 38
40 RowLayout { 39 RowLayout {
@@ -50,7 +49,7 @@ Item {
50 height: Kirigami.Units.gridUnit 49 height: Kirigami.Units.gridUnit
51 width: Kirigami.Units.gridUnit 50 width: Kirigami.Units.gridUnit
52 51
53 color: KubeTheme.Colors.backgroundColor 52 color: Kube.Colors.backgroundColor
54 53
55 Kirigami.Icon { 54 Kirigami.Icon {
56 height: parent.height 55 height: parent.height
@@ -62,7 +61,7 @@ Item {
62 61
63 Text { 62 Text {
64 text: root.name 63 text: root.name
65 color: KubeTheme.Colors.backgroundColor 64 color: Kube.Colors.backgroundColor
66 } 65 }
67 } 66 }
68} 67}