diff --git a/CellFrameDashboardGUI/Resources/Icons/new-wallet_icon_dark.png b/CellFrameDashboardGUI/Resources/Icons/new-wallet_icon_dark.png new file mode 100644 index 0000000000000000000000000000000000000000..f77b306db21a7c6b369f053a3238326bb5ee2cd6 Binary files /dev/null and b/CellFrameDashboardGUI/Resources/Icons/new-wallet_icon_dark.png differ diff --git a/CellFrameDashboardGUI/Resources/Icons/new-wallet_icon_dark_hover.png b/CellFrameDashboardGUI/Resources/Icons/new-wallet_icon_dark_hover.png new file mode 100644 index 0000000000000000000000000000000000000000..1e5eefb36de77731b84c7e1519880c1582b6c1b0 Binary files /dev/null and b/CellFrameDashboardGUI/Resources/Icons/new-wallet_icon_dark_hover.png differ diff --git a/CellFrameDashboardGUI/qml.qrc b/CellFrameDashboardGUI/qml.qrc index 965f958eeb9df249e09950aff3ed7b2bb84d66f0..50bb4f33859b17e057c6bdda0bfe28ebcfd814f2 100755 --- a/CellFrameDashboardGUI/qml.qrc +++ b/CellFrameDashboardGUI/qml.qrc @@ -37,6 +37,8 @@ <file>res/icons/icon_settings.png</file> <file>res/icons/icon_settings_hover.png</file> <file>res/icons/new-payment_icon.png</file> + <file>res/icons/new-wallet_icon_dark.png</file> + <file>res/icons/new-wallet_icon_dark_hover.png</file> <file>screen/DapUiQmlScreen.qml</file> <file>screen/DapUiQmlScreenMainWindow.qml</file> <file>screen/DapUiQmlScreenMainWindowForm.ui.qml</file> diff --git a/CellFrameDashboardGUI/res/icons/new-wallet_icon_dark.png b/CellFrameDashboardGUI/res/icons/new-wallet_icon_dark.png new file mode 100644 index 0000000000000000000000000000000000000000..f77b306db21a7c6b369f053a3238326bb5ee2cd6 Binary files /dev/null and b/CellFrameDashboardGUI/res/icons/new-wallet_icon_dark.png differ diff --git a/CellFrameDashboardGUI/res/icons/new-wallet_icon_dark_hover.png b/CellFrameDashboardGUI/res/icons/new-wallet_icon_dark_hover.png new file mode 100644 index 0000000000000000000000000000000000000000..1e5eefb36de77731b84c7e1519880c1582b6c1b0 Binary files /dev/null and b/CellFrameDashboardGUI/res/icons/new-wallet_icon_dark_hover.png differ diff --git a/CellFrameDashboardGUI/screen/StatusBar/DapUiQmlWidgetStatusBarButtonForm.ui.qml b/CellFrameDashboardGUI/screen/StatusBar/DapUiQmlWidgetStatusBarButtonForm.ui.qml index bfb97070665127b982c5f25d500a1dacb82c3216..2cfc85111e590f9451fa1c09fc49901dd710799e 100644 --- a/CellFrameDashboardGUI/screen/StatusBar/DapUiQmlWidgetStatusBarButtonForm.ui.qml +++ b/CellFrameDashboardGUI/screen/StatusBar/DapUiQmlWidgetStatusBarButtonForm.ui.qml @@ -8,6 +8,8 @@ Button { property int defaultHeight: 50 * pt property int defaultWidth: 100 * pt + property string normalButton: "qrc:/res/icons/new-wallet_icon_dark.png" + property string hoverButton: "qrc:/res/icons/new-wallet_icon_dark_hover.png" id: button width: defaultHeight @@ -23,7 +25,7 @@ Button { anchors.fill: parent verticalAlignment: Qt.AlignVCenter horizontalAlignment: Qt.AlignRight - anchors.rightMargin: 20 * pt + anchors.rightMargin: 20 font.family: "Roboto" font.weight: Font.Normal color: "#FFFFFF" @@ -35,7 +37,7 @@ Button { anchors.verticalCenter: parent.verticalCenter anchors.left: parent.left anchors.leftMargin: 10 * pt - source: "qrc:/res/icons/defaul_icon.png" + source: button.hovered ? hoverButton : normalButton width: 28 * pt height: 28 * pt }