diff options
-rw-r--r-- | accounts/imap/package/contents/ui/ImapAccountSettings.qml | 5 | ||||
-rw-r--r-- | components/package/contents/ui/Outbox.qml | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/accounts/imap/package/contents/ui/ImapAccountSettings.qml b/accounts/imap/package/contents/ui/ImapAccountSettings.qml index 83886572..01fbb46d 100644 --- a/accounts/imap/package/contents/ui/ImapAccountSettings.qml +++ b/accounts/imap/package/contents/ui/ImapAccountSettings.qml | |||
@@ -61,8 +61,9 @@ Item { | |||
61 | width: parent.width | 61 | width: parent.width |
62 | 62 | ||
63 | text: "To let Kube access your account, fill in email address, username, password and give the account a title that will be displayed inside Kube. For information about which SMTP, IMAP server, which authentification and port to be used, please contact your email provider" | 63 | text: "To let Kube access your account, fill in email address, username, password and give the account a title that will be displayed inside Kube. For information about which SMTP, IMAP server, which authentification and port to be used, please contact your email provider" |
64 | //TODO wait for kirgami theme disabled text color | 64 | |
65 | opacity: 0.5 | 65 | color: Kirigami.Theme.disabledTextColor |
66 | |||
66 | wrapMode: Text.Wrap | 67 | wrapMode: Text.Wrap |
67 | } | 68 | } |
68 | 69 | ||
diff --git a/components/package/contents/ui/Outbox.qml b/components/package/contents/ui/Outbox.qml index c7b1f7b0..4da5feb8 100644 --- a/components/package/contents/ui/Outbox.qml +++ b/components/package/contents/ui/Outbox.qml | |||
@@ -47,7 +47,7 @@ ToolButton { | |||
47 | } | 47 | } |
48 | 48 | ||
49 | height: modelCount * Kirigami.Units.gridUnit * 3 + 10//scrollView.height height: Kirigami.Units.gridUnit * 15 | 49 | height: modelCount * Kirigami.Units.gridUnit * 3 + 10//scrollView.height height: Kirigami.Units.gridUnit * 15 |
50 | width: Kirigami.Units.gridUnit * 12 | 50 | width: Kirigami.Units.gridUnit * 20 |
51 | 51 | ||
52 | color: Kirigami.Theme.backgroundColor | 52 | color: Kirigami.Theme.backgroundColor |
53 | border.width: 1 | 53 | border.width: 1 |
@@ -76,7 +76,9 @@ ToolButton { | |||
76 | height: Kirigami.Units.gridUnit * 3 | 76 | height: Kirigami.Units.gridUnit * 3 |
77 | 77 | ||
78 | Kirigami.Label { | 78 | Kirigami.Label { |
79 | anchors.centerIn: parent | 79 | |
80 | anchors.verticalCenter: parent.verticalCenter | ||
81 | |||
80 | text: model.subject | 82 | text: model.subject |
81 | } | 83 | } |
82 | } | 84 | } |