diff options
Diffstat (limited to 'mobile-widgets/qml/SsrfButton.qml')
-rw-r--r-- | mobile-widgets/qml/SsrfButton.qml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/mobile-widgets/qml/SsrfButton.qml b/mobile-widgets/qml/SsrfButton.qml new file mode 100644 index 000000000..bd1dffe8f --- /dev/null +++ b/mobile-widgets/qml/SsrfButton.qml @@ -0,0 +1,20 @@ +// SPDX-License-Identifier: GPL-2.0 +import QtQuick 2.3 +import QtQuick.Controls 2.2 +import org.kde.kirigami 2.0 as Kirigami + +Button { + id: root + background: Rectangle { + id: buttonBackground + color: root.enabled? (root.pressed ? subsurfaceTheme.darkerPrimaryColor : subsurfaceTheme.primaryColor) : "gray" + antialiasing: true + radius: Kirigami.Units.smallSpacing * 2 + height: buttonText.height * 2 + } + contentItem: Text { + text: root.text + anchors.centerIn: buttonBackground + color: root.pressed ? subsurfaceTheme.darkerPrimaryTextColor :subsurfaceTheme.primaryTextColor + } +} |