Skip to content
Snippets Groups Projects

Feature 2798

Merged konstantin.kukharenko requested to merge feature-2798 into master
5 files
+ 101
97
Compare changes
  • Side-by-side
  • Inline
Files
5
+ 9
9
@@ -2,13 +2,13 @@ import QtQuick 2.0
import QtQuick.Controls 2.0
Button {
///@detalis heightButton button height
///@detalis heightButton Button height
property int heightButton: 36 * pt
///@detalis widthButton button width
///@detalis widthButton Button width
property int widthButton: 120 * pt
///@detalis normalImageButton the picture on the button is in normal state
///@detalis normalImageButton the picture on the Button is in normal state
property string normalImageButton: "qrc:/res/icons/new-wallet_icon_dark.png"
///@detalis hoverImageButton the image on the button is in the mouseover state
///@detalis hoverImageButton the image on the Button is in the mouseover state
property string hoverImageButton: "qrc:/res/icons/new-wallet_icon_dark_hover.png"
///@detalis widthImageButton image width
property int widthImageButton: 28 * pt
@@ -16,15 +16,15 @@ Button {
property int heightImageButton: 28 * pt
///@detalis indentImageLeftButton: indentation of the image from the left edge
property int indentImageLeftButton: 10 * pt
///@detalis colorBackgroundNormal button background color in normal state
///@detalis colorBackgroundNormal Button background color in normal state
property string colorBackgroundNormal:"#070023"
///@detalis colorBackgroundHover button background color in hover state
///@detalis colorBackgroundHover Button background color in hover state
property string colorBackgroundHover: "#D51F5D"
///@detalis textButton: text button
///@detalis textButton: text Button
property string textButton: "New Wallet"
///@detalis colorButtonTextNormal button text color in normal state
///@detalis colorButtonTextNormal Button text color in normal state
property string colorButtonTextNormal: "#FFFFFF"
///@detalis colorButtonTextHover button text color in hover state
///@detalis colorButtonTextHover Button text color in hover state
property string colorButtonTextHover: "#FFFFFF"
///@detalis indentTextRight: indentation of the text from the right edge
property int indentTextRight: 20 * pt
Loading