diff options
| author | Sander Ferdinand <sa.ferdinand@gmail.com> | 2017-12-27 00:53:21 +0100 |
|---|---|---|
| committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-03-29 23:04:02 +0100 |
| commit | cf2791a246c68bff6664843733ff661335db3d79 (patch) | |
| tree | 545a81d716cbb6be8725202dde0a908ce17d4722 /components/StandardDialog.qml | |
| parent | c28d2daf20126a3293627fb250ca6356f092b130 (diff) | |
| download | monzero-gui-cf2791a246c68bff6664843733ff661335db3d79.tar.gz monzero-gui-cf2791a246c68bff6664843733ff661335db3d79.tar.xz monzero-gui-cf2791a246c68bff6664843733ff661335db3d79.zip | |
New history page, including the mobile version.
Diffstat (limited to 'components/StandardDialog.qml')
| -rw-r--r-- | components/StandardDialog.qml | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/components/StandardDialog.qml b/components/StandardDialog.qml index 7c9315d5..4804f294 100644 --- a/components/StandardDialog.qml +++ b/components/StandardDialog.qml @@ -37,7 +37,7 @@ import "../components" as MoneroComponents Rectangle { id: root - color: "white" + color: "transparent" visible: false property alias title: dialogTitle.text property alias text: dialogContent.text @@ -55,6 +55,14 @@ Rectangle { signal rejected() signal closeCallback(); + Image { + anchors.left: parent.left + anchors.right: parent.right + anchors.top: parent.top + anchors.bottom: parent.bottom + source: "../images/middlePanelBg.jpg" + } + // Make window draggable MouseArea { anchors.fill: parent @@ -99,7 +107,7 @@ Rectangle { horizontalAlignment: Text.AlignHCenter font.pixelSize: 18 * scaleRatio font.family: "Arial" - color: "#555555" + color: Style.defaultFontColor } } @@ -115,6 +123,10 @@ Rectangle { font.pixelSize: 12 * scaleRatio selectByMouse: false wrapMode: TextEdit.Wrap + textColor: Style.defaultFontColor + style: TextAreaStyle { + backgroundColor: "black" + } MouseArea { anchors.fill: parent |
