Removed the valid icon and make the text green or red instead
[electrum-nvc.git] / data / style.css
index 61a86e6..2ce441d 100644 (file)
@@ -1,35 +1,72 @@
 #main_window
 {
-    background-image: url(background.png);
+  background: qlineargradient(x1: 0, y1: 0, x2:0,y2:1, stop: 0 white , stop: 1 #E8E8E8);
+}
+
+MiniWindow QPushButton {
+  color: #777;
+  border: 1px solid #CCC;
+  border-radius: 0px;
+  background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
+  stop: 0 white, stop: 1 #E6E6E6);
+  min-height: 25px;
+  min-width: 30px;
+}
+
+
+#send_button{
+  color: #E5F2FF;
+  border: 1px solid #3786E6;
+  border-radius: 4px;
+  background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
+  stop: 0 #72B2F8, stop: 1 #3484E6);
+  min-width: 80px;
+  min-height: 23px;
+  padding: 2px;
+}
+
+#send_button:disabled{
+  color: #D3E8FE;
+  border: 1px solid #6DAEF7;
+  border-radius: 4px;
+  background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
+  stop: 0 #A5CFFA, stop: 1 #72B2F8);
+  min-width: 80px;
+  min-height: 23px;
+  padding: 2px;
 }
 
 #address_input[readOnly=true], #amount_input[readOnly=true]
 {
-    font: italic;
-    color: gray;
+    color: #ABABAB;
+    padding: 5px;
+    border-radius: 4px;
+    border: 1px solid #AAA9A9;
+    width: 225px;
+    margin-top: 4px;
 }
 #address_input[readOnly=false], #amount_input[readOnly=false]
 {
+    padding: 2px;
+    border: 1px solid #AAA9A9;
     font: normal;
-    color: black;
-}
-
-#valid_address::indicator
-{
-    width: 24px;
-    height: 24px;
+    color: #424242;
+    border-radius: 4px;
+    font-size: 95%;
+    width: 225px;
+    margin-top: 4px;
 }
-#valid_address::indicator:checked
+#address_input[isValid=true]
 {
-    image: url(icons/confirmed.png);
+  color: #4D9948
 }
-#valid_address::indicator:unchecked
+
+#address_input[isValid=false]
 {
-    image: url(icons/unconfirmed.png);
+  color: #CE4141
 }
 
 #balance_label
 {
-    color: white;
+    color: #333;
 }
-