Removed the valid icon and make the text green or red instead
[electrum-nvc.git] / data / style.css
1 #main_window
2 {
3   background: qlineargradient(x1: 0, y1: 0, x2:0,y2:1, stop: 0 white , stop: 1 #E8E8E8);
4 }
5
6 MiniWindow QPushButton {
7   color: #777;
8   border: 1px solid #CCC;
9   border-radius: 0px;
10   background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
11   stop: 0 white, stop: 1 #E6E6E6);
12   min-height: 25px;
13   min-width: 30px;
14 }
15
16
17 #send_button{
18   color: #E5F2FF;
19   border: 1px solid #3786E6;
20   border-radius: 4px;
21   background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
22   stop: 0 #72B2F8, stop: 1 #3484E6);
23   min-width: 80px;
24   min-height: 23px;
25   padding: 2px;
26 }
27
28 #send_button:disabled{
29   color: #D3E8FE;
30   border: 1px solid #6DAEF7;
31   border-radius: 4px;
32   background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
33   stop: 0 #A5CFFA, stop: 1 #72B2F8);
34   min-width: 80px;
35   min-height: 23px;
36   padding: 2px;
37 }
38
39 #address_input[readOnly=true], #amount_input[readOnly=true]
40 {
41     color: #ABABAB;
42     padding: 5px;
43     border-radius: 4px;
44     border: 1px solid #AAA9A9;
45     width: 225px;
46     margin-top: 4px;
47 }
48 #address_input[readOnly=false], #amount_input[readOnly=false]
49 {
50     padding: 2px;
51     border: 1px solid #AAA9A9;
52     font: normal;
53     color: #424242;
54     border-radius: 4px;
55     font-size: 95%;
56     width: 225px;
57     margin-top: 4px;
58 }
59 #address_input[isValid=true]
60 {
61   color: #4D9948
62 }
63
64 #address_input[isValid=false]
65 {
66   color: #CE4141
67 }
68
69 #balance_label
70 {
71     color: #333;
72 }