summaryrefslogtreecommitdiffstats
path: root/framework/qml/Button.qml
diff options
context:
space:
mode:
Diffstat (limited to 'framework/qml/Button.qml')
-rw-r--r--framework/qml/Button.qml10
1 files changed, 10 insertions, 0 deletions
diff --git a/framework/qml/Button.qml b/framework/qml/Button.qml
index f3251f4f..22044b53 100644
--- a/framework/qml/Button.qml
+++ b/framework/qml/Button.qml
@@ -16,7 +16,17 @@
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 */ 17 */
18 18
19import QtQuick 2.7
19import org.kube.framework 1.0 20import org.kube.framework 1.0
20 21
21AbstractButton { 22AbstractButton {
23
24 color: "transparent"
25
26 Rectangle {
27 anchors.fill: parent
28 color: "transparent"
29 border.width: 1
30 border.color: Colors.buttonBorderColor
31 }
22} 32}