diff options
Diffstat (limited to 'components/package/contents')
-rw-r--r-- | components/package/contents/ui/People.qml | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/components/package/contents/ui/People.qml b/components/package/contents/ui/People.qml index ad9d664b..4b67b0f3 100644 --- a/components/package/contents/ui/People.qml +++ b/components/package/contents/ui/People.qml | |||
@@ -23,9 +23,11 @@ import QtQuick.Controls 1.4 as Controls | |||
23 | import QtQuick.Layouts 1.1 | 23 | import QtQuick.Layouts 1.1 |
24 | 24 | ||
25 | import org.kde.kirigami 1.0 as Kirigami | 25 | import org.kde.kirigami 1.0 as Kirigami |
26 | import org.kube.components.theme 1.0 as KubeTheme | ||
26 | import org.kube.framework.domain 1.0 as KubeFramework | 27 | import org.kube.framework.domain 1.0 as KubeFramework |
27 | 28 | ||
28 | 29 | ||
30 | |||
29 | Popup { | 31 | Popup { |
30 | id: popup | 32 | id: popup |
31 | 33 | ||
@@ -96,7 +98,7 @@ Popup { | |||
96 | 98 | ||
97 | Rectangle { | 99 | Rectangle { |
98 | id: peoplePageRoot | 100 | id: peoplePageRoot |
99 | color: Kirigami.Theme.viewBackgroundColor | 101 | color: KubeTheme.Colors.viewBackgroundColor |
100 | 102 | ||
101 | Flickable { | 103 | Flickable { |
102 | 104 | ||
@@ -171,7 +173,7 @@ Popup { | |||
171 | 173 | ||
172 | text: model.firstName | 174 | text: model.firstName |
173 | elide: Text.ElideRight | 175 | elide: Text.ElideRight |
174 | color: Kirigami.Theme.textColor | 176 | color: KubeTheme.Colors.textColor |
175 | } | 177 | } |
176 | 178 | ||
177 | Text { | 179 | Text { |
@@ -179,7 +181,7 @@ Popup { | |||
179 | 181 | ||
180 | text: model.lastName | 182 | text: model.lastName |
181 | elide: Text.ElideRight | 183 | elide: Text.ElideRight |
182 | color: Kirigami.Theme.textColor | 184 | color: KubeTheme.Colors.textColor |
183 | } | 185 | } |
184 | } | 186 | } |
185 | } | 187 | } |
@@ -201,7 +203,7 @@ Popup { | |||
201 | contact: popup.currentContact | 203 | contact: popup.currentContact |
202 | } | 204 | } |
203 | 205 | ||
204 | color: Kirigami.Theme.viewBackgroundColor | 206 | color: KubeTheme.Colors.viewBackgroundColor |
205 | 207 | ||
206 | Item { | 208 | Item { |
207 | 209 | ||
@@ -307,7 +309,7 @@ Popup { | |||
307 | 309 | ||
308 | text: "Sauerkraut AG" | 310 | text: "Sauerkraut AG" |
309 | 311 | ||
310 | color: Kirigami.Theme.textColor | 312 | color: KubeTheme.Colors.textColor |
311 | } | 313 | } |
312 | } | 314 | } |
313 | } | 315 | } |
@@ -324,7 +326,7 @@ Popup { | |||
324 | Row { | 326 | Row { |
325 | spacing: Kirigami.Units.smallSpacing | 327 | spacing: Kirigami.Units.smallSpacing |
326 | Text { text: "(main)" } | 328 | Text { text: "(main)" } |
327 | Text { text: modelData ; color: Kirigami.Theme.highlightColor } | 329 | Text { text: modelData ; color: KubeTheme.Colors.highlightColor } |
328 | Item { width: Kirigami.Units.smallSpacing; height: 1 } | 330 | Item { width: Kirigami.Units.smallSpacing; height: 1 } |
329 | } | 331 | } |
330 | } | 332 | } |
@@ -332,14 +334,14 @@ Popup { | |||
332 | Row { | 334 | Row { |
333 | spacing: Kirigami.Units.smallSpacing | 335 | spacing: Kirigami.Units.smallSpacing |
334 | Text { text: "(alias)"} | 336 | Text { text: "(alias)"} |
335 | Text { text: "test.testerson@gmail.com"; color: Kirigami.Theme.highlightColor } | 337 | Text { text: "test.testerson@gmail.com"; color: KubeTheme.Colors.highlightColor } |
336 | Item { width: Kirigami.Units.smallSpacing; height: 1 } | 338 | Item { width: Kirigami.Units.smallSpacing; height: 1 } |
337 | } | 339 | } |
338 | 340 | ||
339 | Row { | 341 | Row { |
340 | spacing: Kirigami.Units.smallSpacing | 342 | spacing: Kirigami.Units.smallSpacing |
341 | Text { text: "(private)"} | 343 | Text { text: "(private)"} |
342 | Text { text: "test@gmail.com"; color: Kirigami.Theme.highlightColor } | 344 | Text { text: "test@gmail.com"; color: KubeTheme.Colors.highlightColor } |
343 | Item { width: Kirigami.Units.smallSpacing; height: 1 } | 345 | Item { width: Kirigami.Units.smallSpacing; height: 1 } |
344 | } | 346 | } |
345 | } | 347 | } |