summaryrefslogtreecommitdiffstats
path: root/accounts
diff options
context:
space:
mode:
authorMichael Bohlender <michael.bohlender@kdemail.net>2016-06-20 09:02:33 +0200
committerMichael Bohlender <michael.bohlender@kdemail.net>2016-06-20 09:02:33 +0200
commit9b63f3f0b8705b7075206c9511aa64eb4ac79c44 (patch)
tree58f222eb22d44f02d86add1f75a3088c46d9b81b /accounts
parent5ce73c437de233ba81881a2a1dc48fb2582082fa (diff)
downloadkube-9b63f3f0b8705b7075206c9511aa64eb4ac79c44.tar.gz
kube-9b63f3f0b8705b7075206c9511aa64eb4ac79c44.zip
maildir settings ui: use kirigami.label to fix issues with dark themes
Diffstat (limited to 'accounts')
-rw-r--r--accounts/maildir/package/contents/ui/MaildirAccountSettings.qml18
1 files changed, 9 insertions, 9 deletions
diff --git a/accounts/maildir/package/contents/ui/MaildirAccountSettings.qml b/accounts/maildir/package/contents/ui/MaildirAccountSettings.qml
index 6cac1480..fab2aa27 100644
--- a/accounts/maildir/package/contents/ui/MaildirAccountSettings.qml
+++ b/accounts/maildir/package/contents/ui/MaildirAccountSettings.qml
@@ -51,13 +51,13 @@ Item {
51 51
52 columns: 2 52 columns: 2
53 53
54 Text { 54 Kirigami.Label {
55 Layout.columnSpan: 2 55 Layout.columnSpan: 2
56 Layout.fillWidth: true 56 Layout.fillWidth: true
57 text: "General:" 57 text: "General:"
58 } 58 }
59 59
60 Label { text: "Account Name" } 60 Kirigami.Label { text: "Account Name" }
61 TextField { 61 TextField {
62 id: name 62 id: name
63 placeholderText: accountName 63 placeholderText: accountName
@@ -66,7 +66,7 @@ Item {
66 onTextChanged: { maildirSettings.accountName = text; root.accountName = text; } 66 onTextChanged: { maildirSettings.accountName = text; root.accountName = text; }
67 } 67 }
68 68
69 Label { text: "User Name" } 69 Kirigami.Label { text: "User Name" }
70 TextField { 70 TextField {
71 placeholderText: "Your Name" 71 placeholderText: "Your Name"
72 Layout.fillWidth: true 72 Layout.fillWidth: true
@@ -74,7 +74,7 @@ Item {
74 onTextChanged: { maildirSettings.userName = text; } 74 onTextChanged: { maildirSettings.userName = text; }
75 } 75 }
76 76
77 Label { text: "Email Address" } 77 Kirigami.Label { text: "Email Address" }
78 TextField { 78 TextField {
79 placeholderText: "Your EMail Address" 79 placeholderText: "Your EMail Address"
80 Layout.fillWidth: true 80 Layout.fillWidth: true
@@ -82,13 +82,13 @@ Item {
82 onTextChanged: { maildirSettings.emailAddress = text; } 82 onTextChanged: { maildirSettings.emailAddress = text; }
83 } 83 }
84 84
85 Text { 85 Kirigami.Label {
86 Layout.columnSpan: 2 86 Layout.columnSpan: 2
87 Layout.fillWidth: true 87 Layout.fillWidth: true
88 text: "Maildir:" 88 text: "Maildir:"
89 } 89 }
90 90
91 Label { text: "Path" } 91 Kirigami.Label { text: "Path" }
92 RowLayout { 92 RowLayout {
93 TextField { 93 TextField {
94 id: path 94 id: path
@@ -129,13 +129,13 @@ Item {
129 } 129 }
130 } 130 }
131 131
132 Text { 132 Kirigami.Label {
133 Layout.columnSpan: 2 133 Layout.columnSpan: 2
134 Layout.fillWidth: true 134 Layout.fillWidth: true
135 text: "Smtp:" 135 text: "Smtp:"
136 } 136 }
137 137
138 Label { text: "Username" } 138 Kirigami.Label { text: "Username" }
139 TextField { 139 TextField {
140 placeholderText: "Username" 140 placeholderText: "Username"
141 Layout.fillWidth: true 141 Layout.fillWidth: true
@@ -151,7 +151,7 @@ Item {
151 onTextChanged: { maildirSettings.smtpPassword = text; } 151 onTextChanged: { maildirSettings.smtpPassword = text; }
152 } 152 }
153 153
154 Label { text: "Server" } 154 Kirigami.Label { text: "Server" }
155 TextField { 155 TextField {
156 id: server 156 id: server
157 placeholderText: "smtps://mainserver.example.net:465" 157 placeholderText: "smtps://mainserver.example.net:465"