mirror of
https://github.com/dashpay/dash.git
synced 2024-12-28 21:42:47 +01:00
Merge pull request #258 from snogcel/v0.11.2.x
button click css, fix for EditAddressDialog
This commit is contained in:
commit
32fcbf0932
@ -122,6 +122,10 @@ border:none;
|
|||||||
outline:none;
|
outline:none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QPushButton:pressed {
|
||||||
|
border:1px solid #333;
|
||||||
|
}
|
||||||
|
|
||||||
QComboBox { /* Dropdown Menus */
|
QComboBox { /* Dropdown Menus */
|
||||||
border:1px solid #82C3E6;
|
border:1px solid #82C3E6;
|
||||||
padding: 3px 5px 3px 5px;
|
padding: 3px 5px 3px 5px;
|
||||||
@ -396,6 +400,10 @@ background-color:qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: .01 #f6f6f6,
|
|||||||
color:#333;
|
color:#333;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QDialog#OpenURIDialog QPushButton#selectFileButton:pressed {
|
||||||
|
border:1px solid #9e9e9e;
|
||||||
|
}
|
||||||
|
|
||||||
/* Dialog: Sign / Verify Message */
|
/* Dialog: Sign / Verify Message */
|
||||||
QDialog#SignVerifyMessageDialog {
|
QDialog#SignVerifyMessageDialog {
|
||||||
background-color:#F8F6F6;
|
background-color:#F8F6F6;
|
||||||
@ -442,6 +450,10 @@ background-color:qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: .01 #f6f6f6,
|
|||||||
color:#333;
|
color:#333;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QDialog#SignVerifyMessageDialog QPushButton#clearButton_SM:pressed {
|
||||||
|
border:1px solid #9e9e9e;
|
||||||
|
}
|
||||||
|
|
||||||
QDialog#SignVerifyMessageDialog QPushButton#addressBookButton_VM { /* Verify Message - Address Book Button */
|
QDialog#SignVerifyMessageDialog QPushButton#addressBookButton_VM { /* Verify Message - Address Book Button */
|
||||||
background-color:transparent;
|
background-color:transparent;
|
||||||
border:0;
|
border:0;
|
||||||
@ -462,6 +474,10 @@ background-color:qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: .01 #f6f6f6,
|
|||||||
color:#333;
|
color:#333;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QDialog#SignVerifyMessageDialog QPushButton#clearButton_VM:pressed {
|
||||||
|
border:1px solid #9e9e9e;
|
||||||
|
}
|
||||||
|
|
||||||
/* Dialog: Send and Receive */
|
/* Dialog: Send and Receive */
|
||||||
QWidget#AddressBookPage {
|
QWidget#AddressBookPage {
|
||||||
background-color:#F8F6F6;
|
background-color:#F8F6F6;
|
||||||
@ -480,6 +496,10 @@ background-color:qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: .01 #f6f6f6,
|
|||||||
color:#333;
|
color:#333;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QWidget#AddressBookPage QPushButton#newAddress:pressed {
|
||||||
|
border:1px solid #9e9e9e;
|
||||||
|
}
|
||||||
|
|
||||||
QWidget#AddressBookPage QPushButton#copyAddress { /* Copy Address Button */
|
QWidget#AddressBookPage QPushButton#copyAddress { /* Copy Address Button */
|
||||||
background-color:qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: .01 #f6f6f6, stop: .1 rgba(250, 250, 250, 128), stop: .95 rgba(250, 250, 250, 255), stop: 1 #ebebeb);
|
background-color:qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: .01 #f6f6f6, stop: .1 rgba(250, 250, 250, 128), stop: .95 rgba(250, 250, 250, 255), stop: 1 #ebebeb);
|
||||||
border:1px solid #d2d2d2;
|
border:1px solid #d2d2d2;
|
||||||
@ -493,6 +513,10 @@ background-color:qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: .01 #f6f6f6,
|
|||||||
color:#333;
|
color:#333;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QWidget#AddressBookPage QPushButton#copyAddress:pressed {
|
||||||
|
border:1px solid #9e9e9e;
|
||||||
|
}
|
||||||
|
|
||||||
QWidget#AddressBookPage QPushButton#deleteAddress { /* Delete Address Button */
|
QWidget#AddressBookPage QPushButton#deleteAddress { /* Delete Address Button */
|
||||||
background-color:qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: .01 #f6f6f6, stop: .1 rgba(250, 250, 250, 128), stop: .95 rgba(250, 250, 250, 255), stop: 1 #ebebeb);
|
background-color:qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: .01 #f6f6f6, stop: .1 rgba(250, 250, 250, 128), stop: .95 rgba(250, 250, 250, 255), stop: 1 #ebebeb);
|
||||||
border:1px solid #d2d2d2;
|
border:1px solid #d2d2d2;
|
||||||
@ -506,6 +530,10 @@ background-color:qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: .01 #f6f6f6,
|
|||||||
color:#333;
|
color:#333;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QWidget#AddressBookPage QPushButton#deleteAddress:pressed {
|
||||||
|
border:1px solid #9e9e9e;
|
||||||
|
}
|
||||||
|
|
||||||
QWidget#AddressBookPage QTableView { /* Address Listing */
|
QWidget#AddressBookPage QTableView { /* Address Listing */
|
||||||
font-size:12px;
|
font-size:12px;
|
||||||
}
|
}
|
||||||
@ -634,6 +662,18 @@ QDialog#AboutDialog QLabel#label_2 { /* Margin for About Dash text */
|
|||||||
margin-right:10px;
|
margin-right:10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Edit Address Dialog */
|
||||||
|
QDialog#EditAddressDialog {
|
||||||
|
background-color:#F8F6F6;
|
||||||
|
}
|
||||||
|
|
||||||
|
QDialog#EditAddressDialog QLabel {
|
||||||
|
qproperty-alignment: 'AlignVCenter | AlignRight';
|
||||||
|
min-height:27px;
|
||||||
|
font-weight:normal;
|
||||||
|
padding-right:5px;
|
||||||
|
}
|
||||||
|
|
||||||
/* OVERVIEW SCREEN */
|
/* OVERVIEW SCREEN */
|
||||||
|
|
||||||
QWidget .QFrame#frame { /* Wallet Balance */
|
QWidget .QFrame#frame { /* Wallet Balance */
|
||||||
@ -821,12 +861,8 @@ font-size:11px;
|
|||||||
color:#818181;
|
color:#818181;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* DARKSEND BUTTONS */
|
/* DARKSEND BUTTONS */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
QWidget .QFrame#frameDarksend .QPushButton { /* Darksend Buttons - General Attributes */
|
QWidget .QFrame#frameDarksend .QPushButton { /* Darksend Buttons - General Attributes */
|
||||||
border:0px solid #ffffff;
|
border:0px solid #ffffff;
|
||||||
}
|
}
|
||||||
@ -872,6 +908,9 @@ background-color:qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: .01 #f6f6f6,
|
|||||||
color:#333;
|
color:#333;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QWidget .QFrame#frameDarksend .QPushButton#darksendAuto:pressed {
|
||||||
|
border:1px solid #9e9e9e;
|
||||||
|
}
|
||||||
|
|
||||||
QWidget .QFrame#frameDarksend .QPushButton#darksendReset { /* Reset Button */
|
QWidget .QFrame#frameDarksend .QPushButton#darksendReset { /* Reset Button */
|
||||||
qproperty-geometry: rect(270 301 140 25);
|
qproperty-geometry: rect(270 301 140 25);
|
||||||
@ -888,6 +927,10 @@ background-color:qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: .01 #f6f6f6,
|
|||||||
color:#333;
|
color:#333;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QWidget .QFrame#frameDarksend .QPushButton#darksendReset:pressed {
|
||||||
|
border:1px solid #9e9e9e;
|
||||||
|
}
|
||||||
|
|
||||||
/* RECENT TRANSACTIONS */
|
/* RECENT TRANSACTIONS */
|
||||||
|
|
||||||
QWidget .QFrame#frame_2 { /* Transactions Widget */
|
QWidget .QFrame#frame_2 { /* Transactions Widget */
|
||||||
@ -980,6 +1023,10 @@ background-color:qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: .01 #f6f6f6,
|
|||||||
color:#333;
|
color:#333;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QDialog#SendCoinsDialog .QPushButton#clearButton:pressed {
|
||||||
|
border:1px solid #9e9e9e;
|
||||||
|
}
|
||||||
|
|
||||||
QDialog#SendCoinsDialog .QPushButton#addButton { /* Add Button */
|
QDialog#SendCoinsDialog .QPushButton#addButton { /* Add Button */
|
||||||
background-color:qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: .01 #f6f6f6, stop: .1 rgba(250, 250, 250, 128), stop: .95 rgba(250, 250, 250, 255), stop: 1 #ebebeb);
|
background-color:qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: .01 #f6f6f6, stop: .1 rgba(250, 250, 250, 128), stop: .95 rgba(250, 250, 250, 255), stop: 1 #ebebeb);
|
||||||
border:1px solid #d2d2d2;
|
border:1px solid #d2d2d2;
|
||||||
@ -993,6 +1040,10 @@ background-color:qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: .01 #f6f6f6,
|
|||||||
color:#333;
|
color:#333;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QDialog#SendCoinsDialog .QPushButton#addButton:pressed {
|
||||||
|
border:1px solid #9e9e9e;
|
||||||
|
}
|
||||||
|
|
||||||
QDialog#SendCoinsDialog .QCheckBox#checkUseDarksend { /* Darksend Checkbox */
|
QDialog#SendCoinsDialog .QCheckBox#checkUseDarksend { /* Darksend Checkbox */
|
||||||
color:#616161;
|
color:#616161;
|
||||||
font-weight:bold;
|
font-weight:bold;
|
||||||
@ -1010,10 +1061,14 @@ border-radius:5px;
|
|||||||
padding-top:20px;
|
padding-top:20px;
|
||||||
padding-bottom:20px;
|
padding-bottom:20px;
|
||||||
margin-left:10px;
|
margin-left:10px;
|
||||||
|
margin-right:20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
QDialog#SendCoinsDialog .QLabel#label {
|
/* This QLabel uses name = "label" which conflicts with Address Book -> New Address */
|
||||||
margin-left:20px;
|
/* To maximize backwards compatibility this formatting has been removed */
|
||||||
|
|
||||||
|
QDialog#SendCoinsDialog QLabel#label {
|
||||||
|
/*margin-left:20px;
|
||||||
margin-right:-2px;
|
margin-right:-2px;
|
||||||
padding-right:-2px;
|
padding-right:-2px;
|
||||||
color:#616161;
|
color:#616161;
|
||||||
@ -1021,19 +1076,22 @@ font-size:14px;
|
|||||||
font-weight:bold;
|
font-weight:bold;
|
||||||
border-radius:5px;
|
border-radius:5px;
|
||||||
padding-top:20px;
|
padding-top:20px;
|
||||||
padding-bottom:20px;
|
padding-bottom:20px;*/
|
||||||
|
min-height:27px;
|
||||||
}
|
}
|
||||||
|
|
||||||
QDialog#SendCoinsDialog .QLabel#labelBalance {
|
QDialog#SendCoinsDialog QLabel#labelBalance {
|
||||||
margin-left:0px;
|
margin-left:0px;
|
||||||
padding-left:0px;
|
padding-left:0px;
|
||||||
color:#616161;
|
color:#616161;
|
||||||
font-weight:bold;
|
/* font-weight:bold;
|
||||||
border-radius:5px;
|
border-radius:5px;
|
||||||
padding-top:20px;
|
padding-top:20px;
|
||||||
padding-bottom:20px;
|
padding-bottom:20px; */
|
||||||
|
min-height:27px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* SEND COINS ENTRY */
|
/* SEND COINS ENTRY */
|
||||||
|
|
||||||
QStackedWidget#SendCoinsEntry .QFrame#SendCoins > .QLabel { /* Send Coin Entry Labels */
|
QStackedWidget#SendCoinsEntry .QFrame#SendCoins > .QLabel { /* Send Coin Entry Labels */
|
||||||
@ -1063,16 +1121,16 @@ outline: 0;
|
|||||||
}
|
}
|
||||||
|
|
||||||
QStackedWidget#SendCoinsEntry .QToolButton#addressBookButton { /* Address Book Button */
|
QStackedWidget#SendCoinsEntry .QToolButton#addressBookButton { /* Address Book Button */
|
||||||
/* qproperty-icon: url(":/icons/drkblue_address-book"); on the fence if I want to use this one or not */
|
|
||||||
padding-left:10px;
|
padding-left:10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
QStackedWidget#SendCoinsEntry .QToolButton#pasteButton { /* Paste Button */
|
QStackedWidget#SendCoinsEntry .QToolButton#addressBookButton {
|
||||||
/* qproperty-icon: url(":/icons/drkblue_editpaste"); */
|
|
||||||
}
|
}
|
||||||
|
|
||||||
QStackedWidget#SendCoinsEntry .QToolButton#deleteButton { /* Remove Button */
|
QStackedWidget#SendCoinsEntry .QToolButton#pasteButton {
|
||||||
/* qproperty-icon: url(":/icons/drkblue_remove"); */
|
}
|
||||||
|
|
||||||
|
QStackedWidget#SendCoinsEntry .QToolButton#deleteButton {
|
||||||
}
|
}
|
||||||
|
|
||||||
QStackedWidget#SendCoinsEntry .QLineEdit#addAsLabel { /* Pay To Input Field */
|
QStackedWidget#SendCoinsEntry .QLineEdit#addAsLabel { /* Pay To Input Field */
|
||||||
@ -1257,6 +1315,10 @@ background-color:qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: .01 #f6f6f6,
|
|||||||
color:#333;
|
color:#333;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QWidget#ReceiveCoinsDialog .QFrame#frame2 QPushButton#clearButton:pressed {
|
||||||
|
border:1px solid #9e9e9e;
|
||||||
|
}
|
||||||
|
|
||||||
QWidget#ReceiveCoinsDialog .QFrame#frame QPushButton#showRequestButton { /* Show Button */
|
QWidget#ReceiveCoinsDialog .QFrame#frame QPushButton#showRequestButton { /* Show Button */
|
||||||
background-color:qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: .01 #f6f6f6, stop: .1 rgba(250, 250, 250, 128), stop: .95 rgba(250, 250, 250, 255), stop: 1 #ebebeb);
|
background-color:qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: .01 #f6f6f6, stop: .1 rgba(250, 250, 250, 128), stop: .95 rgba(250, 250, 250, 255), stop: 1 #ebebeb);
|
||||||
border:1px solid #d2d2d2;
|
border:1px solid #d2d2d2;
|
||||||
@ -1270,6 +1332,10 @@ background-color:qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: .01 #f6f6f6,
|
|||||||
color:#333;
|
color:#333;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QWidget#ReceiveCoinsDialog .QFrame#frame QPushButton#showRequestButton:pressed {
|
||||||
|
border:1px solid #9e9e9e;
|
||||||
|
}
|
||||||
|
|
||||||
QWidget#ReceiveCoinsDialog .QFrame#frame QPushButton#removeRequestButton { /* Remove Button */
|
QWidget#ReceiveCoinsDialog .QFrame#frame QPushButton#removeRequestButton { /* Remove Button */
|
||||||
background-color:qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: .01 #f6f6f6, stop: .1 rgba(250, 250, 250, 128), stop: .95 rgba(250, 250, 250, 255), stop: 1 #ebebeb);
|
background-color:qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: .01 #f6f6f6, stop: .1 rgba(250, 250, 250, 128), stop: .95 rgba(250, 250, 250, 255), stop: 1 #ebebeb);
|
||||||
border:1px solid #d2d2d2;
|
border:1px solid #d2d2d2;
|
||||||
@ -1283,6 +1349,10 @@ background-color:qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: .01 #f6f6f6,
|
|||||||
color:#333;
|
color:#333;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QWidget#ReceiveCoinsDialog .QFrame#frame QPushButton#removeRequestButton:pressed {
|
||||||
|
border:1px solid #9e9e9e;
|
||||||
|
}
|
||||||
|
|
||||||
QWidget#ReceiveCoinsDialog .QFrame#frame .QLabel#label_6 { /* Requested Payments History Label */
|
QWidget#ReceiveCoinsDialog .QFrame#frame .QLabel#label_6 { /* Requested Payments History Label */
|
||||||
color:#3398cc;
|
color:#3398cc;
|
||||||
font-weight:bold;
|
font-weight:bold;
|
||||||
|
Loading…
Reference in New Issue
Block a user