File tree 3 files changed +17
-1
lines changed
3 files changed +17
-1
lines changed Original file line number Diff line number Diff line change
1
+ // Copyright (c) 2023 - present The Bitcoin Core developers
2
+ // Distributed under the MIT software license, see the accompanying
3
+ // file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
+
5
+ import QtQuick 2.15
6
+ import QtQuick.Controls 2.15
7
+
8
+ Icon {
9
+ source: " image://images/green-check"
10
+ size: 26
11
+ }
Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ import QtQuick.Controls 2.15
7
7
8
8
Control {
9
9
property real progress: 0
10
+ property color progressColor: Theme .color .orange
11
+
10
12
Behavior on progress {
11
13
NumberAnimation {
12
14
easing .type : Easing .Bezier
@@ -26,7 +28,7 @@ Control {
26
28
width: contentItem .width
27
29
height: contentItem .height
28
30
radius: contentItem .radius
29
- color: Theme . color . orange
31
+ color: progressColor
30
32
}
31
33
}
32
34
}
Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ Control {
27
27
required property color blue
28
28
required property color amber
29
29
required property color purple
30
+ required property color transparent
30
31
required property color neutral0
31
32
required property color neutral1
32
33
required property color neutral2
@@ -59,6 +60,7 @@ Control {
59
60
blue: " #3CA3DE"
60
61
amber: " #C9B500"
61
62
purple: " #C075DC"
63
+ transparent: " #00000000"
62
64
neutral0: " #000000"
63
65
neutral1: " #1A1A1A"
64
66
neutral2: " #2D2D2D"
@@ -91,6 +93,7 @@ Control {
91
93
blue: " #2D9CDB"
92
94
amber: " #C9B500"
93
95
purple: " #BB6BD9"
96
+ transparent: " #00000000"
94
97
neutral0: " #FFFFFF"
95
98
neutral1: " #F8F8F8"
96
99
neutral2: " #F4F4F4"
You can’t perform that action at this time.
0 commit comments