summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--framework/qml/TextArea.qml2
-rw-r--r--framework/qml/TextField.qml2
2 files changed, 2 insertions, 2 deletions
diff --git a/framework/qml/TextArea.qml b/framework/qml/TextArea.qml
index 47371f2b..c5e202f3 100644
--- a/framework/qml/TextArea.qml
+++ b/framework/qml/TextArea.qml
@@ -34,6 +34,6 @@ T.TextArea {
34 background: Rectangle { 34 background: Rectangle {
35 color: Kube.Colors.viewBackgroundColor 35 color: Kube.Colors.viewBackgroundColor
36 border.width: 1 36 border.width: 1
37 border.color: Kube.Colors.buttonColor 37 border.color: root.focus ? Kube.Colors.highlightColor : Kube.Colors.buttonColor
38 } 38 }
39} 39}
diff --git a/framework/qml/TextField.qml b/framework/qml/TextField.qml
index a33ccc3a..2fbee655 100644
--- a/framework/qml/TextField.qml
+++ b/framework/qml/TextField.qml
@@ -48,6 +48,6 @@ T.TextField {
48 background: Rectangle { 48 background: Rectangle {
49 color: Kube.Colors.viewBackgroundColor 49 color: Kube.Colors.viewBackgroundColor
50 border.width: 1 50 border.width: 1
51 border.color: Kube.Colors.buttonColor 51 border.color: root.focus ? Kube.Colors.highlightColor : Kube.Colors.buttonColor
52 } 52 }
53} 53}