aboutsummaryrefslogtreecommitdiffstats
path: root/mobile-widgets/qml/TemplateCheckBox.qml
diff options
context:
space:
mode:
Diffstat (limited to 'mobile-widgets/qml/TemplateCheckBox.qml')
-rw-r--r--mobile-widgets/qml/TemplateCheckBox.qml11
1 files changed, 5 insertions, 6 deletions
diff --git a/mobile-widgets/qml/TemplateCheckBox.qml b/mobile-widgets/qml/TemplateCheckBox.qml
index 85aa0bef1..1ae48eb8b 100644
--- a/mobile-widgets/qml/TemplateCheckBox.qml
+++ b/mobile-widgets/qml/TemplateCheckBox.qml
@@ -6,23 +6,22 @@ import org.kde.kirigami 2.4 as Kirigami
CheckBox {
id: cb
-
indicator: Rectangle {
implicitWidth: Kirigami.Units.gridUnit
implicitHeight: Kirigami.Units.gridUnit
x: cb.leftPadding
y: parent.height / 2 - height / 2
- radius: 3
+ radius: 4
+ border.color: cb.down ? subsurfaceTheme.darkerPrimaryColor : subsurfaceTheme.primaryColor
+ border.width: 2
color: subsurfaceTheme.backgroundColor
- border.color: subsurfaceTheme.textColor
-
Rectangle {
width: parent.width / 2
height: width
x: width / 2
y: width / 2
- radius: 2
- color: subsurfaceTheme.textColor
+ radius: 3
+ color: cb.down ? subsurfaceTheme.darkerPrimaryColor : subsurfaceTheme.primaryColor
visible: cb.checked
}
}