aboutsummaryrefslogtreecommitdiff
path: root/components
diff options
context:
space:
mode:
authorselsta <selsta@sent.at>2020-04-24 04:29:44 +0200
committerselsta <selsta@sent.at>2020-04-24 04:35:21 +0200
commita810bf3eb79e837fe8930a510cc95e135a564771 (patch)
treed3b2eb511b532f3265752f5218727e9678ce1f68 /components
parent585fb2810dc0d9b79255b9bd479559b36aa087d8 (diff)
downloadmonzero-gui-a810bf3eb79e837fe8930a510cc95e135a564771.tar.gz
monzero-gui-a810bf3eb79e837fe8930a510cc95e135a564771.tar.xz
monzero-gui-a810bf3eb79e837fe8930a510cc95e135a564771.zip
CheckBox: add enabled property
Diffstat (limited to 'components')
-rw-r--r--components/CheckBox.qml2
-rw-r--r--components/Style.qml3
2 files changed, 4 insertions, 1 deletions
diff --git a/components/CheckBox.qml b/components/CheckBox.qml
index 3925026d..7a1c6179 100644
--- a/components/CheckBox.qml
+++ b/components/CheckBox.qml
@@ -74,7 +74,7 @@ Item {
visible: checkBox.border
anchors.fill: parent
radius: 3
- color: "transparent"
+ color: checkBox.enabled ? "transparent" : MoneroComponents.Style.inputBoxBackgroundDisabled
border.color:
if(checkBox.checked){
return MoneroComponents.Style.inputBorderColorActive;
diff --git a/components/Style.qml b/components/Style.qml
index 7b9f31ee..2edd555e 100644
--- a/components/Style.qml
+++ b/components/Style.qml
@@ -29,6 +29,7 @@ QtObject {
property string textSelectedColor: blackTheme ? _b_textSelectedColor : _w_textSelectedColor
property string inputBoxBackground: blackTheme ? _b_inputBoxBackground : _w_inputBoxBackground
+ property string inputBoxBackgroundDisabled: blackTheme ? _b_inputBoxBackgroundDisabled : _w_inputBoxBackgroundDisabled
property string inputBoxBackgroundError: blackTheme ? _b_inputBoxBackgroundError : _w_inputBoxBackgroundError
property string inputBoxColor: blackTheme ? _b_inputBoxColor : _w_inputBoxColor
property string legacy_placeholderFontColor: blackTheme ? _b_legacy_placeholderFontColor : _w_legacy_placeholderFontColor
@@ -88,6 +89,7 @@ QtObject {
property string _b_textSelectedColor: "white"
property string _b_inputBoxBackground: "black"
+ property string _b_inputBoxBackgroundDisabled: Qt.rgba(255, 255, 255, 0.10)
property string _b_inputBoxBackgroundError: "#FFDDDD"
property string _b_inputBoxColor: "white"
property string _b_legacy_placeholderFontColor: "#BABABA"
@@ -144,6 +146,7 @@ QtObject {
property string _w_textSelectedColor: "black"
property string _w_inputBoxBackground: "white"
+ property string _w_inputBoxBackgroundDisabled: Qt.rgba(0, 0, 0, 0.20)
property string _w_inputBoxBackgroundError: "#FFDDDD"
property string _w_inputBoxColor: "black"
property string _w_legacy_placeholderFontColor: "#BABABA"