1
0

GUI mockup for lite mode.

This commit is contained in:
Amir Taaki
2012-06-27 22:15:52 +02:00
parent 354f1e2177
commit 820985dd68
8 changed files with 171 additions and 0 deletions

BIN
data/background.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

BIN
data/icons/accounts.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 921 B

BIN
data/icons/confirmed.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

BIN
data/icons/expand.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 657 B

BIN
data/icons/interact.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 968 B

BIN
data/icons/unconfirmed.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

35
data/style.css Normal file
View File

@@ -0,0 +1,35 @@
QDialog
{
background-image: url(data/background.png);
}
#address_input[readOnly=true], #amount_input[readOnly=true]
{
font: italic;
color: gray;
}
#address_input[readOnly=false], #amount_input[readOnly=false]
{
font: normal;
color: black;
}
#valid_address::indicator
{
width: 24px;
height: 24px;
}
#valid_address::indicator:checked
{
image: url(data/icons/confirmed.png);
}
#valid_address::indicator:unchecked
{
image: url(data/icons/unconfirmed.png);
}
#balance_label
{
color: white;
}