summaryrefslogtreecommitdiffstats
path: root/basicsuite/About Boot to Qt/Box.qml
diff options
context:
space:
mode:
Diffstat (limited to 'basicsuite/About Boot to Qt/Box.qml')
-rw-r--r--basicsuite/About Boot to Qt/Box.qml30
1 files changed, 0 insertions, 30 deletions
diff --git a/basicsuite/About Boot to Qt/Box.qml b/basicsuite/About Boot to Qt/Box.qml
deleted file mode 100644
index cfbb995..0000000
--- a/basicsuite/About Boot to Qt/Box.qml
+++ /dev/null
@@ -1,30 +0,0 @@
-import QtQuick 2.0
-
-Rectangle {
- id: root
-
- width: parent.width
- height: label.font.pixelSize * 3
-
- radius: 4
-
- antialiasing: true
-
- property alias text: label.text;
-
- property color accentColor: "palegreen"
-
- gradient: Gradient {
- GradientStop { position: 0; color: root.accentColor; }
- GradientStop { position: 1; color: "black"; }
- }
-
- Text {
- id: label
- font.pixelSize: engine.smallFontSize()
- font.bold: true;
- color: "white"
- anchors.centerIn: parent
- }
-
-}