mirror of
https://github.com/dashpay/dash.git
synced 2024-12-27 21:12:48 +01:00
qt: General CSS related redesigns (#3563)
* qt: User border-image in place of image For some reason image produced weird outputs on some resolution screens. * qt: Fix layout issues in TransactionView * qt: Fix layout issues in OverviewPage * qt: Replace transparent with #00000000 in stylesheets * qt: Use #a84832 as red where possible. This includes css files and any color usage in code. * qt: Finetune QPushButton style * qt: Customized QSlider (used in the Debug window -> NetworkTraffic) * qt: Finetune QToolbar style * qt: Customized QProgressBar * qt: Customized QCalendarWidget * qt: Finetune QStatusBar style - Give the progress label a name as css reference - Set min height and margins * qt: Finetune QMenu style - Set a light rounded border - Color for disabled items - Color/Style for seperator - Give the items padding * qt: Customized QGroupBox * qt: Customized QToolTip * qt: Give inputs widgets a proper hover/focus/selected/disabled style * qt: Finetune SendCoinsDialog - Add light line below the coincontrol frame - Add light line above fee frame - Increase header font size - Remove button layout changes of CoinControl button - Fix Layout/Alignment of balance labels * qt: Customized RPC console's autocompletition popup * qt: Add stylesheets to Intro This is the datadir selection dialog. * qt: OptionsDialog - Give the reset button the "light button" style * qt: Finetune shared styles in general.css * qt: Finetune coloring in dark.css * qt: Finetune coloring in light.css * More fixes for traditional.css No text colors, s/transparent/#00000000/ * qt: Run update-css-files.py Co-authored-by: UdjinM6 <UdjinM6@users.noreply.github.com>
This commit is contained in:
parent
1dea248d0d
commit
b3738648d6
@ -17,21 +17,21 @@ Loaded in GUIUtil::loadStyleSheet() in guitil.cpp.
|
|||||||
/* do not modify! section updated by update-css-files.py
|
/* do not modify! section updated by update-css-files.py
|
||||||
<colors>
|
<colors>
|
||||||
|
|
||||||
# Used colors in dark.css for commit 3bebd1a5c
|
# Used colors in dark.css for commit a50bd2371b
|
||||||
|
|
||||||
|
#00000000
|
||||||
#333
|
#333
|
||||||
#444
|
#00599a
|
||||||
#555
|
#27507a
|
||||||
#666
|
#2d2d2e
|
||||||
#999
|
#323233
|
||||||
#aaa
|
#363637
|
||||||
#ccc
|
#39393b
|
||||||
#ddd
|
#4a4a4b
|
||||||
#1c75bc
|
|
||||||
#3e3e3e
|
|
||||||
#585858
|
#585858
|
||||||
#616161
|
#818181
|
||||||
#787878
|
#c7c7c7
|
||||||
|
#f6f6f6
|
||||||
#cc323232
|
#cc323232
|
||||||
|
|
||||||
</colors>
|
</colors>
|
||||||
@ -43,20 +43,16 @@ Common stuff
|
|||||||
|
|
||||||
WalletFrame,
|
WalletFrame,
|
||||||
QDialog {
|
QDialog {
|
||||||
background-color: #444;
|
background-color: #323233;
|
||||||
}
|
|
||||||
|
|
||||||
QStatusBar {
|
|
||||||
background-color: #555;
|
|
||||||
color: #ccc;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
QMessageBox {
|
QMessageBox {
|
||||||
background-color: #444;
|
background-color: #323233;
|
||||||
}
|
}
|
||||||
|
|
||||||
QWidget { /* override text selection background color for all text widgets */
|
QWidget { /* override text selection background color for all text widgets */
|
||||||
selection-background-color: #999;
|
selection-color: #363637;
|
||||||
|
selection-background-color: #c7c7c7;
|
||||||
}
|
}
|
||||||
|
|
||||||
QCheckBox,
|
QCheckBox,
|
||||||
@ -64,56 +60,143 @@ QLabel,
|
|||||||
QListView,
|
QListView,
|
||||||
QRadioButton,
|
QRadioButton,
|
||||||
QTreeWidget { /* Base Text Size & Color */
|
QTreeWidget { /* Base Text Size & Color */
|
||||||
color: #ccc;
|
color: #c7c7c7;
|
||||||
|
}
|
||||||
|
|
||||||
|
QCheckBox:disabled,
|
||||||
|
QLabel:disabled,
|
||||||
|
QListView:disabled,
|
||||||
|
QRadioButton:disabled {
|
||||||
|
color: #585858;
|
||||||
|
}
|
||||||
|
|
||||||
|
/******************************************************
|
||||||
|
User-input widget style
|
||||||
|
******************************************************/
|
||||||
|
|
||||||
|
BitcoinAmountField,
|
||||||
|
QAbstractSpinBox,
|
||||||
|
QComboBox,
|
||||||
|
QPlainTextEdit,
|
||||||
|
QLineEdit {
|
||||||
|
background-color: #2d2d2e;
|
||||||
|
border-color: #00599a;
|
||||||
|
color: #c7c7c7;
|
||||||
|
}
|
||||||
|
|
||||||
|
BitcoinAmountField:hover:!focus,
|
||||||
|
QAbstractSpinBox:hover:!focus,
|
||||||
|
QComboBox:hover:!focus,
|
||||||
|
QPlainTextEdit:hover:!focus,
|
||||||
|
QLineEdit:hover:!focus {
|
||||||
|
background-color: #2d2d2e;
|
||||||
|
border-color: #27507a;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
BitcoinAmountField:focus,
|
||||||
|
QAbstractSpinBox:focus,
|
||||||
|
QComboBox:checked,
|
||||||
|
QComboBox:focus,
|
||||||
|
QPlainTextEdit:focus,
|
||||||
|
QLineEdit:focus {
|
||||||
|
background-color: #39393b;
|
||||||
|
border-color: #27507a;
|
||||||
|
}
|
||||||
|
|
||||||
|
BitcoinAmountField:disabled,
|
||||||
|
QAbstractSpinBox:disabled,
|
||||||
|
QComboBox:disabled,
|
||||||
|
QPlainTextEdit:disabled,
|
||||||
|
QLineEdit:disabled {
|
||||||
|
background-color: #363637;
|
||||||
|
border-color: #585858;
|
||||||
|
color: #585858;
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
QAbstractSpinBox
|
QAbstractSpinBox
|
||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
QAbstractSpinBox,
|
/***** No dark.css specific coloring here yet *****/
|
||||||
QAbstractSpinBox::up-button,
|
|
||||||
QAbstractSpinBox::down-button {
|
/******************************************************
|
||||||
background-color: #333;
|
QCalendarWidget
|
||||||
border-color: #1c75bc;
|
******************************************************/
|
||||||
color: #aaa;
|
|
||||||
|
QCalendarWidget,
|
||||||
|
#qt_calendar_calendarview,
|
||||||
|
#qt_calendar_navigationbar,
|
||||||
|
#qt_calendar_prevmonth,
|
||||||
|
#qt_calendar_nextmonth,
|
||||||
|
#qt_calendar_monthbutton,
|
||||||
|
#qt_calendar_yearbutton {
|
||||||
|
background-color: #2d2d2e;
|
||||||
|
}
|
||||||
|
|
||||||
|
#qt_calendar_calendarview,
|
||||||
|
#qt_calendar_navigationbar,
|
||||||
|
#qt_calendar_prevmonth,
|
||||||
|
#qt_calendar_nextmonth,
|
||||||
|
#qt_calendar_monthbutton,
|
||||||
|
#qt_calendar_yearbutton {
|
||||||
|
border-color: #4a4a4b;
|
||||||
|
}
|
||||||
|
|
||||||
|
#qt_calendar_prevmonth:hover,
|
||||||
|
#qt_calendar_nextmonth:hover,
|
||||||
|
#qt_calendar_monthbutton:hover,
|
||||||
|
#qt_calendar_yearbutton:hover {
|
||||||
|
background-color: #39393b;
|
||||||
|
}
|
||||||
|
|
||||||
|
QCalendarWidget QToolButton {
|
||||||
|
color: #c7c7c7;
|
||||||
|
}
|
||||||
|
|
||||||
|
QCalendarWidget QWidget {
|
||||||
|
alternate-background-color: #585858;
|
||||||
|
}
|
||||||
|
|
||||||
|
QCalendarWidget QAbstractItemView:enabled {
|
||||||
|
color: #c7c7c7;
|
||||||
|
selection-background-color: #4a4a4b;
|
||||||
|
selection-color: #c7c7c7;
|
||||||
|
}
|
||||||
|
|
||||||
|
QCalendarWidget QAbstractItemView:disabled {
|
||||||
|
color: #818181;
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
QComboBox
|
QComboBox
|
||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
QComboBox { /* Dropdown Menus */
|
|
||||||
background-color: #333;
|
|
||||||
border-color: #1c75bc;
|
|
||||||
color: #aaa;
|
|
||||||
}
|
|
||||||
|
|
||||||
QComboBox:checked {
|
|
||||||
background-color: #3e3e3e;
|
|
||||||
}
|
|
||||||
|
|
||||||
QComboBox:editable {
|
|
||||||
background-color: #1c75bc;
|
|
||||||
color: #616161;
|
|
||||||
}
|
|
||||||
|
|
||||||
QComboBox QListView {
|
QComboBox QListView {
|
||||||
background-color: #555;
|
background-color: #39393b;
|
||||||
color: #aaa;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
QComboBox::item {
|
QComboBox::item {
|
||||||
color: #aaa;
|
color: #c7c7c7;
|
||||||
}
|
}
|
||||||
|
|
||||||
QComboBox::item:alternate {
|
QComboBox::item:alternate {
|
||||||
background-color: #444;
|
background-color: #4a4a4b;
|
||||||
}
|
}
|
||||||
|
|
||||||
QComboBox::item:selected {
|
QComboBox::item:selected {
|
||||||
background-color: #666;
|
background-color: #585858;
|
||||||
color: #ccc;
|
color: #c7c7c7;
|
||||||
|
}
|
||||||
|
|
||||||
|
/******************************************************
|
||||||
|
QGroupBox
|
||||||
|
******************************************************/
|
||||||
|
|
||||||
|
QGroupBox {
|
||||||
|
background-color: #39393b;
|
||||||
|
color: #c7c7c7;
|
||||||
|
font-size: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
@ -121,42 +204,43 @@ QHeaderView
|
|||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
QHeaderView::section { /* Table Header Sections */
|
QHeaderView::section { /* Table Header Sections */
|
||||||
background-color: #1c75bc;
|
background-color: #00599a;
|
||||||
border-color: #ccc;
|
color: #c7c7c7;
|
||||||
color: #ccc;
|
}
|
||||||
|
|
||||||
|
QHeaderView::section:hover { /* Table Header Sections */
|
||||||
|
background-color: #27507a;
|
||||||
|
color: #c7c7c7;
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
QLineEdit / QValidatedLineEdit / QPlainTextEdit
|
QLineEdit / QValidatedLineEdit / QPlainTextEdit
|
||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
.QValidatedLineEdit,
|
/***** No dark.css specific coloring here yet *****/
|
||||||
.QLineEdit,
|
|
||||||
QPlainTextEdit { /* Text Entry Fields */
|
|
||||||
background-color: #333;
|
|
||||||
border-color: #1c75bc;
|
|
||||||
color: #aaa;
|
|
||||||
}
|
|
||||||
|
|
||||||
.QValidatedLineEdit:disabled,
|
|
||||||
.QLineEdit:disabled {
|
|
||||||
background-color: #3e3e3e;
|
|
||||||
}
|
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
QMenu
|
QMenu
|
||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
QMenu {
|
QMenu {
|
||||||
background-color: #555;
|
background-color: #39393b;
|
||||||
|
border-color: #4a4a4b;
|
||||||
}
|
}
|
||||||
|
|
||||||
QMenu::item {
|
QMenu::item {
|
||||||
color: #ccc;
|
color: #c7c7c7;
|
||||||
}
|
}
|
||||||
QMenu::item:selected {
|
QMenu::item:selected:!disabled {
|
||||||
background-color: #666;
|
background-color: #585858;
|
||||||
color: #ddd;
|
color: #c7c7c7;
|
||||||
|
}
|
||||||
|
QMenu::item:disabled {
|
||||||
|
color: #585858;
|
||||||
|
}
|
||||||
|
|
||||||
|
QMenu::separator {
|
||||||
|
background-color: #585858;
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
@ -164,12 +248,32 @@ QMenuBar
|
|||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
QMenuBar {
|
QMenuBar {
|
||||||
background-color: #333;
|
background-color: #39393b;
|
||||||
|
color: #c7c7c7;
|
||||||
|
border-bottom: 1px solid;
|
||||||
|
border-color: #4a4a4b;
|
||||||
|
}
|
||||||
|
|
||||||
|
QMenu::item {
|
||||||
|
color: #c7c7c7;
|
||||||
}
|
}
|
||||||
|
|
||||||
QMenuBar::item:selected {
|
QMenuBar::item:selected {
|
||||||
background-color: #333;
|
background-color: #585858;
|
||||||
color: #1c75bc;
|
color: #c7c7c7;
|
||||||
|
}
|
||||||
|
|
||||||
|
/******************************************************
|
||||||
|
QProgressBar
|
||||||
|
******************************************************/
|
||||||
|
|
||||||
|
QProgressBar {
|
||||||
|
background-color: #c7c7c7;
|
||||||
|
color: #00000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
QProgressBar::chunk {
|
||||||
|
background-color: #00599a;
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
@ -177,19 +281,99 @@ QProgressDialog
|
|||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
.QProgressDialog {
|
.QProgressDialog {
|
||||||
background-color: #444;
|
background-color: #4a4a4b;
|
||||||
color: #ccc;
|
color: #c7c7c7;
|
||||||
|
}
|
||||||
|
|
||||||
|
/******************************************************
|
||||||
|
QPushButton
|
||||||
|
******************************************************/
|
||||||
|
|
||||||
|
QPushButton {
|
||||||
|
background-color: #00599a;
|
||||||
|
color: #c7c7c7;
|
||||||
|
}
|
||||||
|
|
||||||
|
QPushButton:hover {
|
||||||
|
background-color: #27507a;
|
||||||
|
}
|
||||||
|
|
||||||
|
QPushButton:focus {
|
||||||
|
border: none;
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
QPushButton:pressed {
|
||||||
|
background-color: #00599a;
|
||||||
|
}
|
||||||
|
|
||||||
|
QPushButton:disabled {
|
||||||
|
background-color: #39393b;
|
||||||
|
border-color: #585858;
|
||||||
|
color: #585858;
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
QPushButton - Special case, light buttons
|
QPushButton - Special case, light buttons
|
||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
|
QWidget#AddressBookPage QPushButton#newAddress,
|
||||||
|
QWidget#AddressBookPage QPushButton#copyAddress,
|
||||||
|
QWidget#AddressBookPage QPushButton#showAddressQRCode,
|
||||||
|
QWidget#AddressBookPage QPushButton#deleteAddress,
|
||||||
|
QDialog#OpenURIDialog QPushButton#selectFileButton,
|
||||||
|
QDialog#OptionsDialog QPushButton#resetButton,
|
||||||
|
QDialog#SendCoinsDialog .QPushButton#addButton,
|
||||||
|
QDialog#SendCoinsDialog .QPushButton#clearButton,
|
||||||
|
QWidget#ReceiveCoinsDialog .QFrame#frame QPushButton#removeRequestButton,
|
||||||
|
QWidget#ReceiveCoinsDialog .QFrame#frame2 QPushButton#clearButton,
|
||||||
|
QWidget#ReceiveCoinsDialog .QFrame#frame QPushButton#showRequestButton,
|
||||||
|
QDialog#SignVerifyMessageDialog QPushButton#clearButton_SM,
|
||||||
|
QDialog#SignVerifyMessageDialog QPushButton#clearButton_VM {
|
||||||
|
background-color: #c7c7c7;
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
|
|
||||||
|
QWidget#AddressBookPage QPushButton#newAddress:hover,
|
||||||
|
QWidget#AddressBookPage QPushButton#copyAddress:hover,
|
||||||
|
QWidget#AddressBookPage QPushButton#showAddressQRCode:hover,
|
||||||
|
QWidget#AddressBookPage QPushButton#deleteAddress:hover,
|
||||||
|
QDialog#OpenURIDialog QPushButton#selectFileButton:hover,
|
||||||
|
QDialog#OptionsDialog QPushButton#resetButton:hover,
|
||||||
|
QDialog#SendCoinsDialog .QPushButton#addButton:hover,
|
||||||
|
QDialog#SendCoinsDialog .QPushButton#clearButton:hover,
|
||||||
|
QWidget#ReceiveCoinsDialog .QFrame#frame QPushButton#removeRequestButton:hover,
|
||||||
|
QWidget#ReceiveCoinsDialog .QFrame#frame2 QPushButton#clearButton:hover,
|
||||||
|
QWidget#ReceiveCoinsDialog .QFrame#frame QPushButton#showRequestButton:hover,
|
||||||
|
QDialog#SignVerifyMessageDialog QPushButton#clearButton_SM:hover,
|
||||||
|
QDialog#SignVerifyMessageDialog QPushButton#clearButton_VM:hover {
|
||||||
|
background-color: #818181;
|
||||||
|
color: #2d2d2e;
|
||||||
|
}
|
||||||
|
|
||||||
|
QWidget#AddressBookPage QPushButton#newAddress:pressed,
|
||||||
|
QWidget#AddressBookPage QPushButton#copyAddress:pressed,
|
||||||
|
QWidget#AddressBookPage QPushButton#showAddressQRCode:pressed,
|
||||||
|
QWidget#AddressBookPage QPushButton#deleteAddress:pressed,
|
||||||
|
QDialog#OpenURIDialog QPushButton#selectFileButton:pressed,
|
||||||
|
QDialog#OptionsDialog QPushButton#resetButton:pressed,
|
||||||
|
QDialog#SendCoinsDialog .QPushButton#addButton:pressed,
|
||||||
|
QDialog#SendCoinsDialog .QPushButton#clearButton:pressed,
|
||||||
|
QWidget#ReceiveCoinsDialog .QFrame#frame QPushButton#removeRequestButton:pressed,
|
||||||
|
QWidget#ReceiveCoinsDialog .QFrame#frame2 QPushButton#clearButton:pressed,
|
||||||
|
QWidget#ReceiveCoinsDialog .QFrame#frame QPushButton#showRequestButton:pressed,
|
||||||
|
QDialog#SignVerifyMessageDialog QPushButton#clearButton_SM:pressed,
|
||||||
|
QDialog#SignVerifyMessageDialog QPushButton#clearButton_VM:pressed {
|
||||||
|
background-color: #f6f6f6;
|
||||||
|
color: #585858;
|
||||||
|
}
|
||||||
|
|
||||||
QWidget#AddressBookPage QPushButton#newAddress:disabled,
|
QWidget#AddressBookPage QPushButton#newAddress:disabled,
|
||||||
QWidget#AddressBookPage QPushButton#copyAddress:disabled,
|
QWidget#AddressBookPage QPushButton#copyAddress:disabled,
|
||||||
QWidget#AddressBookPage QPushButton#showAddressQRCode:disabled,
|
QWidget#AddressBookPage QPushButton#showAddressQRCode:disabled,
|
||||||
QWidget#AddressBookPage QPushButton#deleteAddress:disabled,
|
QWidget#AddressBookPage QPushButton#deleteAddress:disabled,
|
||||||
QDialog#OpenURIDialog QPushButton#selectFileButton:disabled,
|
QDialog#OpenURIDialog QPushButton#selectFileButton:disabled,
|
||||||
|
QDialog#OptionsDialog QPushButton#resetButton:disabled,
|
||||||
QDialog#SendCoinsDialog .QPushButton#addButton:disabled,
|
QDialog#SendCoinsDialog .QPushButton#addButton:disabled,
|
||||||
QDialog#SendCoinsDialog .QPushButton#clearButton:disabled,
|
QDialog#SendCoinsDialog .QPushButton#clearButton:disabled,
|
||||||
QWidget#ReceiveCoinsDialog .QFrame#frame QPushButton#removeRequestButton:disabled,
|
QWidget#ReceiveCoinsDialog .QFrame#frame QPushButton#removeRequestButton:disabled,
|
||||||
@ -197,9 +381,9 @@ QWidget#ReceiveCoinsDialog .QFrame#frame2 QPushButton#clearButton:disabled,
|
|||||||
QWidget#ReceiveCoinsDialog .QFrame#frame QPushButton#showRequestButton:disabled,
|
QWidget#ReceiveCoinsDialog .QFrame#frame QPushButton#showRequestButton:disabled,
|
||||||
QDialog#SignVerifyMessageDialog QPushButton#clearButton_SM:disabled,
|
QDialog#SignVerifyMessageDialog QPushButton#clearButton_SM:disabled,
|
||||||
QDialog#SignVerifyMessageDialog QPushButton#clearButton_VM:disabled {
|
QDialog#SignVerifyMessageDialog QPushButton#clearButton_VM:disabled {
|
||||||
background-color: #666;
|
background-color: #39393b;
|
||||||
border-color: #585858;
|
border-color: #585858;
|
||||||
color: #787878;
|
color: #585858;
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
@ -221,7 +405,7 @@ QPushButton - Special case, tabbar replacement buttons
|
|||||||
/* Sign/Verify dialog buttons */
|
/* Sign/Verify dialog buttons */
|
||||||
#btnSignMessage,
|
#btnSignMessage,
|
||||||
#btnVerifyMessage {
|
#btnVerifyMessage {
|
||||||
border-color: #205a96;
|
border-color: #00599a;
|
||||||
color: #818181;
|
color: #818181;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -259,7 +443,7 @@ QPushButton - Special case, tabbar replacement buttons
|
|||||||
/* Sign/Verify dialog buttons */
|
/* Sign/Verify dialog buttons */
|
||||||
#btnSignMessage:hover:!checked,
|
#btnSignMessage:hover:!checked,
|
||||||
#btnVerifyMessage:hover:!checked {
|
#btnVerifyMessage:hover:!checked {
|
||||||
border-color: #205a96;
|
border-color: #00599a;
|
||||||
color: #c7c7c7;
|
color: #c7c7c7;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -292,7 +476,7 @@ QRadioButton
|
|||||||
QScrollArea
|
QScrollArea
|
||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
/***** No light.css specific coloring here yet *****/
|
/***** No dark.css specific coloring here yet *****/
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
QScrollBar
|
QScrollBar
|
||||||
@ -302,21 +486,49 @@ QScrollBar
|
|||||||
* it's OS dependent and should be handled via platform specific code.
|
* it's OS dependent and should be handled via platform specific code.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/******************************************************
|
||||||
|
QSlider
|
||||||
|
******************************************************/
|
||||||
|
|
||||||
|
QSlider::handle:horizontal {
|
||||||
|
background-color: #00599a;
|
||||||
|
}
|
||||||
|
QSlider::handle:horizontal:hover {
|
||||||
|
background-color: #27507a;
|
||||||
|
}
|
||||||
|
QSlider::sub-page:horizontal {
|
||||||
|
background-color: #c7c7c7;
|
||||||
|
}
|
||||||
|
QSlider::add-page:horizontal {
|
||||||
|
background-color: #c7c7c7;
|
||||||
|
}
|
||||||
|
|
||||||
|
/******************************************************
|
||||||
|
QStatusBar
|
||||||
|
******************************************************/
|
||||||
|
|
||||||
|
QStatusBar {
|
||||||
|
background-color: #323233;
|
||||||
|
color: #c7c7c7;
|
||||||
|
}
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
QTableView
|
QTableView
|
||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
.QTableView { /* Table - has to be selected as a class otherwise it throws off QCalendarWidget */
|
.QTableView { /* Table - has to be selected as a class otherwise it throws off QCalendarWidget */
|
||||||
background-color: #333;
|
background-color: #2d2d2e;
|
||||||
|
border-color: #4a4a4b;
|
||||||
}
|
}
|
||||||
|
|
||||||
QTableView::item { /* Table Item */
|
QTableView::item { /* Table Item */
|
||||||
background-color: #333;
|
background-color: #2d2d2e;
|
||||||
|
border-color: #4a4a4b;
|
||||||
}
|
}
|
||||||
|
|
||||||
QTableView::item:selected { /* Table Item Selected */
|
QTableView::item:selected { /* Table Item Selected */
|
||||||
background-color: #555;
|
background-color: #39393b;
|
||||||
color: #ccc;
|
color: #c7c7c7;
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
@ -324,60 +536,58 @@ QTableWidget
|
|||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
.QTableWidget {
|
.QTableWidget {
|
||||||
background-color: #333;
|
background-color: #4a4a4b;
|
||||||
|
border-color: #4a4a4b;
|
||||||
|
color: #c7c7c7;
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
QTabWidget
|
QTabWidget
|
||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
.QTabWidget {
|
/***** No dark.css specific coloring here yet *****/
|
||||||
border-color: #444;
|
|
||||||
}
|
|
||||||
|
|
||||||
.QTabWidget::pane {
|
|
||||||
background-color: #444;
|
|
||||||
border-color: #333;
|
|
||||||
}
|
|
||||||
|
|
||||||
.QTabWidget QTabBar::tab {
|
|
||||||
background-color: #ccc;
|
|
||||||
border-color: #333;
|
|
||||||
color: #444;
|
|
||||||
}
|
|
||||||
|
|
||||||
.QTabWidget QTabBar::tab:first,
|
|
||||||
.QTabWidget QTabBar::tab:last {
|
|
||||||
border-color: #333;
|
|
||||||
}
|
|
||||||
|
|
||||||
.QTabWidget QTabBar::tab:selected,
|
|
||||||
.QTabWidget QTabBar::tab:hover {
|
|
||||||
background-color: #555;
|
|
||||||
color: #ccc;
|
|
||||||
}
|
|
||||||
|
|
||||||
.QTabWidget .QWidget {
|
|
||||||
color: #444;
|
|
||||||
}
|
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
QTextEdit
|
QTextEdit
|
||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
QTextEdit {
|
QTextEdit {
|
||||||
border-color: #333;
|
background-color: #2d2d2e;
|
||||||
background-color: #555;
|
border-color: #4a4a4b;
|
||||||
color: #ccc;
|
color: #c7c7c7;
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
QToolBar / QToolButton
|
QToolBar / QToolButton
|
||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
|
QToolBar {
|
||||||
|
background-color: #00599a;
|
||||||
|
}
|
||||||
|
|
||||||
|
QToolBar > QToolButton {
|
||||||
|
background-color: #00000000;
|
||||||
|
color: #c7c7c7;
|
||||||
|
}
|
||||||
|
|
||||||
|
QToolBar > QToolButton:hover:!checked {
|
||||||
|
background-color: #27507a;
|
||||||
|
color: #c7c7c7;
|
||||||
|
}
|
||||||
|
|
||||||
QToolBar > QToolButton:checked {
|
QToolBar > QToolButton:checked {
|
||||||
background-color: #444;
|
background-color: #323233;
|
||||||
color: #ccc;
|
color: #c7c7c7;
|
||||||
|
}
|
||||||
|
|
||||||
|
/******************************************************
|
||||||
|
QToolTip
|
||||||
|
******************************************************/
|
||||||
|
|
||||||
|
QToolTip {
|
||||||
|
background-color: #2d2d2e;
|
||||||
|
border-color: #4a4a4b;
|
||||||
|
color: #c7c7c7;
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
@ -385,7 +595,9 @@ QTreeWidget
|
|||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
QTreeWidget {
|
QTreeWidget {
|
||||||
background-color: #333;
|
alternate-background-color: #2d2d2e;
|
||||||
|
background-color: #2d2d2e;
|
||||||
|
border-color: #4a4a4b;
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
@ -414,44 +626,26 @@ AboutDialog
|
|||||||
AddressBookPage
|
AddressBookPage
|
||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
QWidget#AddressBookPage {
|
AddressBookPage QTableView {
|
||||||
background-color: #555;
|
color: #c7c7c7;
|
||||||
}
|
|
||||||
|
|
||||||
QWidget#AddressBookPage QTableView::item {
|
|
||||||
color: #aaa;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
AskPassphraseDialog
|
AskPassphraseDialog
|
||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
QDialog#AskPassphraseDialog {
|
/***** No dark.css specific coloring here yet *****/
|
||||||
background-color: #555;
|
|
||||||
}
|
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
CoinControlDialog
|
CoinControlDialog
|
||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
QDialog#CoinControlDialog .CoinControlTreeWidget#treeWidget::item:selected { /* Coin Control Item (selected) */
|
QDialog#CoinControlDialog .CoinControlTreeWidget#treeWidget::item:selected,
|
||||||
background-color: #666;
|
QDialog#CoinControlDialog .CoinControlTreeWidget#treeWidget::item:checked,
|
||||||
color: #ccc;
|
QDialog#CoinControlDialog .CoinControlTreeWidget#treeWidget::branch:selected,
|
||||||
}
|
QDialog#CoinControlDialog .CoinControlTreeWidget#treeWidget::branch:checked {
|
||||||
|
background-color: #39393b;
|
||||||
QDialog#CoinControlDialog .CoinControlTreeWidget#treeWidget::item:checked { /* Coin Control Item (checked) */
|
color: #c7c7c7;
|
||||||
background-color: #333;
|
|
||||||
color: #ccc;
|
|
||||||
}
|
|
||||||
|
|
||||||
QDialog#CoinControlDialog .CoinControlTreeWidget#treeWidget::branch:selected { /* Coin Control Branch Icon */
|
|
||||||
background-color: #666;
|
|
||||||
color: #ccc;
|
|
||||||
}
|
|
||||||
|
|
||||||
QDialog#CoinControlDialog .CoinControlTreeWidget#treeWidget::branch:checked { /* Coin Control Branch Icon */
|
|
||||||
background-color: #333;
|
|
||||||
color: #ccc;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
@ -464,17 +658,16 @@ EditAddressDialog
|
|||||||
HelpMessageDialog
|
HelpMessageDialog
|
||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
QDialog#HelpMessageDialog QScrollArea * {
|
HelpMessageDialog QWidget#scrollAreaWidgetContents {
|
||||||
background-color: #555;
|
background-color: #2d2d2e;
|
||||||
|
border-color: #4a4a4b;
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
MasternodeList
|
MasternodeList
|
||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
QWidget#MasternodeList QTableWidget#tableWidgetMasternodesDIP3 {
|
/***** No dark.css specific coloring here yet *****/
|
||||||
color: #aaa;
|
|
||||||
}
|
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
ModalOverlay
|
ModalOverlay
|
||||||
@ -482,32 +675,27 @@ ModalOverlay
|
|||||||
|
|
||||||
QWidget#bgWidget { /* The frame overlaying the overview-page */
|
QWidget#bgWidget { /* The frame overlaying the overview-page */
|
||||||
background-color: #cc323232;
|
background-color: #cc323232;
|
||||||
color: #616161;
|
color: #585858;
|
||||||
}
|
}
|
||||||
|
|
||||||
QWidget#contentWidget { /* The actual content with the text/buttons/etc... */
|
QWidget#contentWidget { /* The actual content with the text/buttons/etc... */
|
||||||
background-color: #444;
|
background-color: #4a4a4b;
|
||||||
border-color: #555;
|
border-color: #585858;
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
OpenURIDialog
|
OpenURIDialog
|
||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
QDialog#OpenURIDialog {
|
/***** No dark.css specific coloring here yet *****/
|
||||||
background-color: #555;
|
|
||||||
}
|
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
OptionsDialog
|
OptionsDialog
|
||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
QDialog#OptionsDialog {
|
QDialog#OptionsDialog #line,
|
||||||
background-color: #555;
|
QDialog#OptionsDialog #frame {
|
||||||
}
|
border-color: #4a4a4b;
|
||||||
|
|
||||||
QDialog#OptionsDialog QGroupBox {
|
|
||||||
color: #ccc;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
@ -532,8 +720,8 @@ OverviewPage RecentTransactions
|
|||||||
ReceiveCoinsDialog
|
ReceiveCoinsDialog
|
||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
QWidget#ReceiveCoinsDialog .QFrame#frame QTableView#recentRequestsView::item { /* Recent Requests Table */
|
ReceiveCoinsDialog QTableView {
|
||||||
color: #aaa;
|
color: #c7c7c7;
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
@ -541,43 +729,54 @@ RPCConsole
|
|||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
QWidget#RPCConsole { /* RPC Console Dialog Box */
|
QWidget#RPCConsole { /* RPC Console Dialog Box */
|
||||||
background-color: #333;
|
background-color: #323233;
|
||||||
}
|
}
|
||||||
|
|
||||||
QWidget#RPCConsole QWidget#tab_peers QTableView { /* Peers Tables */
|
RPCConsole QTableView {
|
||||||
color: #aaa;
|
color: #c7c7c7;
|
||||||
|
}
|
||||||
|
|
||||||
|
#rpcAutoCompleter {
|
||||||
|
background-color: #39393b;
|
||||||
|
border-color: #4a4a4b;
|
||||||
|
}
|
||||||
|
|
||||||
|
#rpcAutoCompleter::item {
|
||||||
|
color: #c7c7c7;
|
||||||
|
}
|
||||||
|
|
||||||
|
#rpcAutoCompleter::item:selected {
|
||||||
|
background-color: #4a4a4b;
|
||||||
|
color: #c7c7c7;
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
SendCoinsDialog
|
SendCoinsDialog
|
||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
QDialog#SendCoinsDialog QLabel#labelBalance {
|
QDialog#SendCoinsDialog .QFrame#frameCoinControl,
|
||||||
color: #ccc;
|
QDialog#SendCoinsDialog #scrollArea {
|
||||||
|
border-color: #39393b;
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
SendCoinsEntry
|
SendCoinsEntry
|
||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
QStackedWidget#SendCoinsEntry .QFrame#SendCoins > .QLabel { /* Send Coin Entry Labels */
|
/***** No dark.css specific coloring here yet *****/
|
||||||
color: #ccc;
|
|
||||||
}
|
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
SignVerifyMessageDialog
|
SignVerifyMessageDialog
|
||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
QDialog#SignVerifyMessageDialog {
|
/***** No dark.css specific coloring here yet *****/
|
||||||
background-color: #555;
|
|
||||||
}
|
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
ShutdownWindow
|
ShutdownWindow
|
||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
QWidget#ShutdownWindow {
|
QWidget#ShutdownWindow {
|
||||||
background-color: #444;
|
background-color: #323233;
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -17,28 +17,18 @@ Loaded in GUIUtil::loadStyleSheet() in guitil.cpp.
|
|||||||
/* do not modify! section updated by update-css-files.py
|
/* do not modify! section updated by update-css-files.py
|
||||||
<colors>
|
<colors>
|
||||||
|
|
||||||
# Used colors in light.css for commit 3bebd1a5c
|
# Used colors in light.css for commit a50bd2371b
|
||||||
|
|
||||||
#333
|
#00000000
|
||||||
#999
|
#555
|
||||||
#ccc
|
|
||||||
#fff
|
|
||||||
#008de4
|
#008de4
|
||||||
#1c75bc
|
#0f75b5
|
||||||
#333333
|
#a7a7a7
|
||||||
#616161
|
#c7c7c7
|
||||||
#818181
|
|
||||||
#82C3E6
|
|
||||||
#d2d2d2
|
#d2d2d2
|
||||||
#d7d7d7
|
#dcdcdc
|
||||||
#e2e2e2
|
#eaeaec
|
||||||
#f0f0f0
|
#f2f2f4
|
||||||
#f2f0f0
|
|
||||||
#f2f2f2
|
|
||||||
#f6f6f6
|
|
||||||
#f7f7f7
|
|
||||||
#fcfcfc
|
|
||||||
#ffffff
|
|
||||||
#ccfafafa
|
#ccfafafa
|
||||||
|
|
||||||
</colors>
|
</colors>
|
||||||
@ -50,19 +40,16 @@ Common stuff
|
|||||||
|
|
||||||
WalletFrame,
|
WalletFrame,
|
||||||
QDialog {
|
QDialog {
|
||||||
background-color: #f6f6f6;
|
background-color: #f2f2f4;
|
||||||
}
|
|
||||||
|
|
||||||
QStatusBar {
|
|
||||||
background-color: #ffffff;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
QMessageBox {
|
QMessageBox {
|
||||||
background-color: #f6f6f6;
|
background-color: #f2f2f4;
|
||||||
}
|
}
|
||||||
|
|
||||||
QWidget { /* override text selection background color for all text widgets */
|
QWidget { /* override text selection background color for all text widgets */
|
||||||
selection-background-color: #999;
|
selection-color: #eaeaec;
|
||||||
|
selection-background-color: #555;
|
||||||
}
|
}
|
||||||
|
|
||||||
QCheckBox,
|
QCheckBox,
|
||||||
@ -70,54 +57,142 @@ QLabel,
|
|||||||
QListView,
|
QListView,
|
||||||
QRadioButton,
|
QRadioButton,
|
||||||
QTreeWidget {
|
QTreeWidget {
|
||||||
color: #333333;
|
color: #555;
|
||||||
|
}
|
||||||
|
|
||||||
|
QCheckBox:disabled,
|
||||||
|
QLabel:disabled,
|
||||||
|
QListView:disabled,
|
||||||
|
QRadioButton:disabled {
|
||||||
|
color: #c7c7c7;
|
||||||
|
}
|
||||||
|
|
||||||
|
/******************************************************
|
||||||
|
User-input widget style
|
||||||
|
******************************************************/
|
||||||
|
|
||||||
|
BitcoinAmountField,
|
||||||
|
QAbstractSpinBox,
|
||||||
|
QComboBox,
|
||||||
|
QPlainTextEdit,
|
||||||
|
QLineEdit {
|
||||||
|
background-color: #eaeaec;
|
||||||
|
border-color: #008de4;
|
||||||
|
color: #555;
|
||||||
|
}
|
||||||
|
|
||||||
|
BitcoinAmountField:hover:!focus,
|
||||||
|
QAbstractSpinBox:hover:!focus,
|
||||||
|
QComboBox:hover:!focus,
|
||||||
|
QPlainTextEdit:hover:!focus,
|
||||||
|
QLineEdit:hover:!focus {
|
||||||
|
background-color: #eaeaec;
|
||||||
|
border-color: #0f75b5;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
BitcoinAmountField:focus,
|
||||||
|
QAbstractSpinBox:focus,
|
||||||
|
QComboBox:checked,
|
||||||
|
QComboBox:focus,
|
||||||
|
QPlainTextEdit:focus,
|
||||||
|
QLineEdit:focus {
|
||||||
|
background-color: #d2d2d2;
|
||||||
|
border-color: #0f75b5;
|
||||||
|
}
|
||||||
|
|
||||||
|
BitcoinAmountField:disabled,
|
||||||
|
QAbstractSpinBox:disabled,
|
||||||
|
QComboBox:disabled,
|
||||||
|
QPlainTextEdit:disabled,
|
||||||
|
QLineEdit:disabled {
|
||||||
|
background-color: #eaeaec;
|
||||||
|
border-color: #d2d2d2;
|
||||||
|
color: #c7c7c7;
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
QAbstractSpinBox
|
QAbstractSpinBox
|
||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
QAbstractSpinBox,
|
/***** No light.css specific coloring here yet *****/
|
||||||
QAbstractSpinBox::up-button,
|
|
||||||
QAbstractSpinBox::down-button {
|
/******************************************************
|
||||||
background-color: #fcfcfc;
|
QCalendarWidget
|
||||||
border-color: #82C3E6;
|
******************************************************/
|
||||||
color: #818181;
|
|
||||||
|
QCalendarWidget,
|
||||||
|
#qt_calendar_calendarview,
|
||||||
|
#qt_calendar_navigationbar,
|
||||||
|
#qt_calendar_prevmonth,
|
||||||
|
#qt_calendar_nextmonth,
|
||||||
|
#qt_calendar_monthbutton,
|
||||||
|
#qt_calendar_yearbutton {
|
||||||
|
background-color: #eaeaec;
|
||||||
|
}
|
||||||
|
|
||||||
|
#qt_calendar_calendarview,
|
||||||
|
#qt_calendar_navigationbar,
|
||||||
|
#qt_calendar_prevmonth,
|
||||||
|
#qt_calendar_nextmonth,
|
||||||
|
#qt_calendar_monthbutton,
|
||||||
|
#qt_calendar_yearbutton {
|
||||||
|
border-color: #dcdcdc;
|
||||||
|
}
|
||||||
|
|
||||||
|
#qt_calendar_prevmonth:hover,
|
||||||
|
#qt_calendar_nextmonth:hover,
|
||||||
|
#qt_calendar_monthbutton:hover,
|
||||||
|
#qt_calendar_yearbutton:hover {
|
||||||
|
background-color: #d2d2d2;
|
||||||
|
}
|
||||||
|
|
||||||
|
QCalendarWidget QToolButton {
|
||||||
|
color: #555;
|
||||||
|
}
|
||||||
|
|
||||||
|
QCalendarWidget QWidget {
|
||||||
|
alternate-background-color: #c7c7c7;
|
||||||
|
}
|
||||||
|
|
||||||
|
QCalendarWidget QAbstractItemView:enabled {
|
||||||
|
color: #555;
|
||||||
|
selection-background-color: #d2d2d2;
|
||||||
|
selection-color: #555;
|
||||||
|
}
|
||||||
|
|
||||||
|
QCalendarWidget QAbstractItemView:disabled {
|
||||||
|
color: #a7a7a7;
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
QComboBox
|
QComboBox
|
||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
QComboBox { /* Dropdown Menus */
|
|
||||||
background-color: #fcfcfc;
|
|
||||||
border-color: #82C3E6;
|
|
||||||
color: #818181;
|
|
||||||
}
|
|
||||||
|
|
||||||
QComboBox:checked {
|
|
||||||
background-color: #f2f2f2;
|
|
||||||
}
|
|
||||||
|
|
||||||
QComboBox:editable {
|
|
||||||
background-color: #1c75bc;
|
|
||||||
color: #616161;
|
|
||||||
}
|
|
||||||
|
|
||||||
QComboBox QListView {
|
QComboBox QListView {
|
||||||
background-color: #fff;
|
background-color: #f2f2f4;
|
||||||
|
color: #555;
|
||||||
}
|
}
|
||||||
|
|
||||||
QComboBox::item {
|
QComboBox::item {
|
||||||
color: #818181;
|
color: #555;
|
||||||
}
|
}
|
||||||
|
|
||||||
QComboBox::item:alternate {
|
QComboBox::item:alternate {
|
||||||
background-color: #fff;
|
background-color: #f2f2f4;
|
||||||
}
|
}
|
||||||
|
|
||||||
QComboBox::item:selected {
|
QComboBox::item:selected {
|
||||||
background-color: #f2f2f2;
|
background-color: #d2d2d2;
|
||||||
|
}
|
||||||
|
|
||||||
|
/******************************************************
|
||||||
|
QGroupBox
|
||||||
|
******************************************************/
|
||||||
|
|
||||||
|
QGroupBox {
|
||||||
|
background-color: #f2f2f4;
|
||||||
|
color: #555;
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
@ -126,41 +201,44 @@ QHeaderView
|
|||||||
|
|
||||||
QHeaderView::section { /* Table Header Sections */
|
QHeaderView::section { /* Table Header Sections */
|
||||||
background-color: #008de4;
|
background-color: #008de4;
|
||||||
border-color: #fff;
|
border-color: #f2f2f4;
|
||||||
color: #fff;
|
color: #f2f2f4;
|
||||||
|
}
|
||||||
|
|
||||||
|
QHeaderView::section:hover { /* Table Header Sections */
|
||||||
|
background-color: #0f75b5;
|
||||||
|
color: #f2f2f4;
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
QLineEdit / QValidatedLineEdit / QPlainTextEdit
|
QLineEdit / QValidatedLineEdit / QPlainTextEdit
|
||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
.QValidatedLineEdit,
|
/***** No light.css specific coloring here yet *****/
|
||||||
.QLineEdit,
|
|
||||||
QPlainTextEdit { /* Text Entry Fields */
|
|
||||||
background-color: #fcfcfc;
|
|
||||||
border-color: #82C3E6;
|
|
||||||
}
|
|
||||||
|
|
||||||
.QValidatedLineEdit:disabled,
|
|
||||||
.QLineEdit:disabled {
|
|
||||||
background-color: #f2f2f2;
|
|
||||||
}
|
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
QMenu
|
QMenu
|
||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
QMenu {
|
QMenu {
|
||||||
background-color: #f6f6f6;
|
background-color: #eaeaec;
|
||||||
|
border-color: #dcdcdc;
|
||||||
}
|
}
|
||||||
|
|
||||||
QMenu::item {
|
QMenu::item {
|
||||||
color: #333;
|
color: #555;
|
||||||
}
|
}
|
||||||
|
|
||||||
QMenu::item:selected {
|
QMenu::item:selected:!disabled {
|
||||||
background-color: #ffffff;
|
background-color: #d2d2d2;
|
||||||
color: #008de4;
|
}
|
||||||
|
|
||||||
|
QMenu::item:disabled {
|
||||||
|
color: #a7a7a7;
|
||||||
|
}
|
||||||
|
|
||||||
|
QMenu::separator {
|
||||||
|
background-color: #c7c7c7;
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
@ -168,7 +246,21 @@ QMenuBar
|
|||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
QMenuBar {
|
QMenuBar {
|
||||||
background-color: #fff;
|
background-color: #f2f2f4;
|
||||||
|
}
|
||||||
|
|
||||||
|
/******************************************************
|
||||||
|
QProgressBar
|
||||||
|
******************************************************/
|
||||||
|
|
||||||
|
QProgressBar {
|
||||||
|
background-color: #c7c7c7;
|
||||||
|
border-color: #00000000;
|
||||||
|
color: #00000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
QProgressBar::chunk {
|
||||||
|
background-color: #008de4;
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
@ -176,18 +268,93 @@ QProgressDialog
|
|||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
.QProgressDialog {
|
.QProgressDialog {
|
||||||
background-color: #f6f6f6;
|
background-color: #f2f2f4;
|
||||||
|
}
|
||||||
|
|
||||||
|
/******************************************************
|
||||||
|
QPushButton
|
||||||
|
******************************************************/
|
||||||
|
|
||||||
|
QPushButton {
|
||||||
|
background-color: #008de4;
|
||||||
|
color: #f2f2f4;
|
||||||
|
}
|
||||||
|
|
||||||
|
QPushButton:hover {
|
||||||
|
background-color: #0f75b5;
|
||||||
|
}
|
||||||
|
|
||||||
|
QPushButton:pressed {
|
||||||
|
background-color: #008de4;
|
||||||
|
}
|
||||||
|
|
||||||
|
QPushButton:disabled {
|
||||||
|
background-color: #eaeaec;
|
||||||
|
border-color: #d2d2d2;
|
||||||
|
color: #d2d2d2;
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
QPushButton - Special case, light buttons
|
QPushButton - Special case, light buttons
|
||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
|
QWidget#AddressBookPage QPushButton#newAddress,
|
||||||
|
QWidget#AddressBookPage QPushButton#copyAddress,
|
||||||
|
QWidget#AddressBookPage QPushButton#showAddressQRCode,
|
||||||
|
QWidget#AddressBookPage QPushButton#deleteAddress,
|
||||||
|
QDialog#OpenURIDialog QPushButton#selectFileButton,
|
||||||
|
QDialog#OptionsDialog QPushButton#resetButton,
|
||||||
|
QDialog#SendCoinsDialog .QPushButton#addButton,
|
||||||
|
QDialog#SendCoinsDialog .QPushButton#clearButton,
|
||||||
|
QWidget#ReceiveCoinsDialog .QFrame#frame QPushButton#removeRequestButton,
|
||||||
|
QWidget#ReceiveCoinsDialog .QFrame#frame2 QPushButton#clearButton,
|
||||||
|
QWidget#ReceiveCoinsDialog .QFrame#frame QPushButton#showRequestButton,
|
||||||
|
QDialog#SignVerifyMessageDialog QPushButton#clearButton_SM,
|
||||||
|
QDialog#SignVerifyMessageDialog QPushButton#clearButton_VM {
|
||||||
|
background-color: #c7c7c7;
|
||||||
|
color: #555;
|
||||||
|
}
|
||||||
|
|
||||||
|
QWidget#AddressBookPage QPushButton#newAddress:hover,
|
||||||
|
QWidget#AddressBookPage QPushButton#copyAddress:hover,
|
||||||
|
QWidget#AddressBookPage QPushButton#showAddressQRCode:hover,
|
||||||
|
QWidget#AddressBookPage QPushButton#deleteAddress:hover,
|
||||||
|
QDialog#OpenURIDialog QPushButton#selectFileButton:hover,
|
||||||
|
QDialog#OptionsDialog QPushButton#resetButton:hover,
|
||||||
|
QDialog#SendCoinsDialog .QPushButton#addButton:hover,
|
||||||
|
QDialog#SendCoinsDialog .QPushButton#clearButton:hover,
|
||||||
|
QWidget#ReceiveCoinsDialog .QFrame#frame QPushButton#removeRequestButton:hover,
|
||||||
|
QWidget#ReceiveCoinsDialog .QFrame#frame2 QPushButton#clearButton:hover,
|
||||||
|
QWidget#ReceiveCoinsDialog .QFrame#frame QPushButton#showRequestButton:hover,
|
||||||
|
QDialog#SignVerifyMessageDialog QPushButton#clearButton_SM:hover,
|
||||||
|
QDialog#SignVerifyMessageDialog QPushButton#clearButton_VM:hover {
|
||||||
|
background-color: #a7a7a7;
|
||||||
|
color: #555;
|
||||||
|
}
|
||||||
|
|
||||||
|
QWidget#AddressBookPage QPushButton#newAddress:pressed,
|
||||||
|
QWidget#AddressBookPage QPushButton#copyAddress:pressed,
|
||||||
|
QWidget#AddressBookPage QPushButton#showAddressQRCode:pressed,
|
||||||
|
QWidget#AddressBookPage QPushButton#deleteAddress:pressed,
|
||||||
|
QDialog#OpenURIDialog QPushButton#selectFileButton:pressed,
|
||||||
|
QDialog#OptionsDialog QPushButton#resetButton:pressed,
|
||||||
|
QDialog#SendCoinsDialog .QPushButton#addButton:pressed,
|
||||||
|
QDialog#SendCoinsDialog .QPushButton#clearButton:pressed,
|
||||||
|
QWidget#ReceiveCoinsDialog .QFrame#frame QPushButton#removeRequestButton:pressed,
|
||||||
|
QWidget#ReceiveCoinsDialog .QFrame#frame2 QPushButton#clearButton:pressed,
|
||||||
|
QWidget#ReceiveCoinsDialog .QFrame#frame QPushButton#showRequestButton:pressed,
|
||||||
|
QDialog#SignVerifyMessageDialog QPushButton#clearButton_SM:pressed,
|
||||||
|
QDialog#SignVerifyMessageDialog QPushButton#clearButton_VM:pressed {
|
||||||
|
background-color: #c7c7c7;
|
||||||
|
color: #555;
|
||||||
|
}
|
||||||
|
|
||||||
QWidget#AddressBookPage QPushButton#newAddress:disabled,
|
QWidget#AddressBookPage QPushButton#newAddress:disabled,
|
||||||
QWidget#AddressBookPage QPushButton#copyAddress:disabled,
|
QWidget#AddressBookPage QPushButton#copyAddress:disabled,
|
||||||
QWidget#AddressBookPage QPushButton#showAddressQRCode:disabled,
|
QWidget#AddressBookPage QPushButton#showAddressQRCode:disabled,
|
||||||
QWidget#AddressBookPage QPushButton#deleteAddress:disabled,
|
QWidget#AddressBookPage QPushButton#deleteAddress:disabled,
|
||||||
QDialog#OpenURIDialog QPushButton#selectFileButton:disabled,
|
QDialog#OpenURIDialog QPushButton#selectFileButton:disabled,
|
||||||
|
QDialog#OptionsDialog QPushButton#resetButton:disabled,
|
||||||
QDialog#SendCoinsDialog .QPushButton#addButton:disabled,
|
QDialog#SendCoinsDialog .QPushButton#addButton:disabled,
|
||||||
QDialog#SendCoinsDialog .QPushButton#clearButton:disabled,
|
QDialog#SendCoinsDialog .QPushButton#clearButton:disabled,
|
||||||
QWidget#ReceiveCoinsDialog .QFrame#frame QPushButton#removeRequestButton:disabled,
|
QWidget#ReceiveCoinsDialog .QFrame#frame QPushButton#removeRequestButton:disabled,
|
||||||
@ -195,7 +362,7 @@ QWidget#ReceiveCoinsDialog .QFrame#frame2 QPushButton#clearButton:disabled,
|
|||||||
QWidget#ReceiveCoinsDialog .QFrame#frame QPushButton#showRequestButton:disabled,
|
QWidget#ReceiveCoinsDialog .QFrame#frame QPushButton#showRequestButton:disabled,
|
||||||
QDialog#SignVerifyMessageDialog QPushButton#clearButton_SM:disabled,
|
QDialog#SignVerifyMessageDialog QPushButton#clearButton_SM:disabled,
|
||||||
QDialog#SignVerifyMessageDialog QPushButton#clearButton_VM:disabled {
|
QDialog#SignVerifyMessageDialog QPushButton#clearButton_VM:disabled {
|
||||||
background-color: #e2e2e2;
|
background-color: #eaeaec;
|
||||||
border-color: #d2d2d2;
|
border-color: #d2d2d2;
|
||||||
color: #d2d2d2;
|
color: #d2d2d2;
|
||||||
}
|
}
|
||||||
@ -238,7 +405,7 @@ QPushButton - Special case, tabbar replacement buttons
|
|||||||
/* Sign/Verify dialog buttons */
|
/* Sign/Verify dialog buttons */
|
||||||
#btnSignMessage:hover:checked,
|
#btnSignMessage:hover:checked,
|
||||||
#btnVerifyMessage:hover:checked {
|
#btnVerifyMessage:hover:checked {
|
||||||
border-color: #008de4;
|
border-color: #555;
|
||||||
color: #555;
|
color: #555;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -257,7 +424,7 @@ QPushButton - Special case, tabbar replacement buttons
|
|||||||
/* Sign/Verify dialog buttons */
|
/* Sign/Verify dialog buttons */
|
||||||
#btnSignMessage:hover:!checked,
|
#btnSignMessage:hover:!checked,
|
||||||
#btnVerifyMessage:hover:!checked {
|
#btnVerifyMessage:hover:!checked {
|
||||||
border-color: #047ac2;
|
border-color: #0f75b5;
|
||||||
color: #555;
|
color: #555;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -276,7 +443,7 @@ QPushButton - Special case, tabbar replacement buttons
|
|||||||
/* Sign/Verify dialog buttons */
|
/* Sign/Verify dialog buttons */
|
||||||
#btnSignMessage:checked,
|
#btnSignMessage:checked,
|
||||||
#btnVerifyMessage:checked {
|
#btnVerifyMessage:checked {
|
||||||
border-color: #008de4;
|
border-color: #555;
|
||||||
color: #555;
|
color: #555;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -300,80 +467,110 @@ QScrollBar
|
|||||||
* it's OS dependent and should be handled via platform specific code.
|
* it's OS dependent and should be handled via platform specific code.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/******************************************************
|
||||||
|
QSlider
|
||||||
|
******************************************************/
|
||||||
|
|
||||||
|
QSlider::handle:horizontal {
|
||||||
|
background-color: #008de4;
|
||||||
|
}
|
||||||
|
QSlider::handle:horizontal:hover {
|
||||||
|
background-color: #0f75b5;
|
||||||
|
}
|
||||||
|
QSlider::sub-page:horizontal {
|
||||||
|
background-color: #c7c7c7;
|
||||||
|
}
|
||||||
|
QSlider::add-page:horizontal {
|
||||||
|
background-color: #c7c7c7;
|
||||||
|
}
|
||||||
|
|
||||||
|
/******************************************************
|
||||||
|
QStatusBar
|
||||||
|
******************************************************/
|
||||||
|
|
||||||
|
QStatusBar {
|
||||||
|
background-color: #f2f2f4;
|
||||||
|
color: #555;
|
||||||
|
}
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
QTableView
|
QTableView
|
||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
.QTableView { /* Table - has to be selected as a class otherwise it throws off QCalendarWidget */
|
.QTableView { /* Table - has to be selected as a class otherwise it throws off QCalendarWidget */
|
||||||
background-color: #fff;
|
background-color: #eaeaec;
|
||||||
|
border-color: #dcdcdc;
|
||||||
}
|
}
|
||||||
|
|
||||||
QTableView::item { /* Table Item */
|
QTableView::item { /* Table Item */
|
||||||
background-color: #fcfcfc;
|
background-color: #eaeaec;
|
||||||
|
border-color: #c7c7c7;
|
||||||
}
|
}
|
||||||
|
|
||||||
QTableView::item:selected { /* Table Item Selected */
|
QTableView::item:selected { /* Table Item Selected */
|
||||||
background-color: #f0f0f0;
|
background-color: #d2d2d2;
|
||||||
color: #333;
|
border-color: #d2d2d2;
|
||||||
|
color: #555;
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
QTableWidget
|
QTableWidget
|
||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
QTableWidget {
|
.QTableWidget {
|
||||||
background-color: #fff;
|
background-color: #eaeaec;
|
||||||
|
border-color: #dcdcdc;
|
||||||
|
color: #555;
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
QTabWidget
|
QTabWidget
|
||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
.QTabWidget {
|
/***** No light.css specific coloring here yet *****/
|
||||||
border-color: #333;
|
|
||||||
}
|
|
||||||
|
|
||||||
.QTabWidget::pane {
|
|
||||||
background-color: #fff;
|
|
||||||
border-color: #d7d7d7;
|
|
||||||
}
|
|
||||||
|
|
||||||
.QTabWidget QTabBar::tab {
|
|
||||||
background-color: #f2f0f0;
|
|
||||||
border-color: #d7d7d7;
|
|
||||||
color: #333;
|
|
||||||
}
|
|
||||||
|
|
||||||
.QTabWidget QTabBar::tab:first,
|
|
||||||
.QTabWidget QTabBar::tab:last {
|
|
||||||
border-color: #d7d7d7;
|
|
||||||
}
|
|
||||||
|
|
||||||
.QTabWidget QTabBar::tab:selected,
|
|
||||||
.QTabWidget QTabBar::tab:hover {
|
|
||||||
background-color: #ffffff;
|
|
||||||
color: #333;
|
|
||||||
}
|
|
||||||
|
|
||||||
.QTabWidget .QWidget {
|
|
||||||
color: #333;
|
|
||||||
}
|
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
QTextEdit
|
QTextEdit
|
||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
QTextEdit {
|
QTextEdit {
|
||||||
border-color: #d7d7d7;
|
background-color: #eaeaec;
|
||||||
|
border-color: #dcdcdc;
|
||||||
|
color: #555;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
QToolBar / QToolButton
|
QToolBar / QToolButton
|
||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
|
QToolBar {
|
||||||
|
background-color: #008de4;
|
||||||
|
}
|
||||||
|
|
||||||
|
QToolBar > QToolButton {
|
||||||
|
background-color: #00000000;
|
||||||
|
color: #f2f2f4;
|
||||||
|
}
|
||||||
|
|
||||||
|
QToolBar > QToolButton:hover:!checked {
|
||||||
|
background-color: #0f75b5;
|
||||||
|
color: #dcdcdc;
|
||||||
|
}
|
||||||
|
|
||||||
QToolBar > QToolButton:checked {
|
QToolBar > QToolButton:checked {
|
||||||
background-color: #f6f6f6;
|
background-color: #f2f2f4;
|
||||||
color: #333333;
|
color: #555;
|
||||||
|
}
|
||||||
|
|
||||||
|
/******************************************************
|
||||||
|
QToolTip
|
||||||
|
******************************************************/
|
||||||
|
|
||||||
|
QToolTip {
|
||||||
|
background-color: #eaeaec;
|
||||||
|
border-color: #555;
|
||||||
|
color: #555;
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
@ -381,7 +578,9 @@ QTreeWidget
|
|||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
QTreeWidget {
|
QTreeWidget {
|
||||||
background-color: #fff;
|
alternate-background-color: #eaeaec;
|
||||||
|
background-color: #eaeaec;
|
||||||
|
border-color: #dcdcdc;
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
@ -410,40 +609,26 @@ AboutDialog
|
|||||||
AddressBookPage
|
AddressBookPage
|
||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
QWidget#AddressBookPage {
|
AddressBookPage QTableView {
|
||||||
background-color: #f6f6f6;
|
color: #555;
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
AskPassphraseDialog
|
AskPassphraseDialog
|
||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
QDialog#AskPassphraseDialog {
|
/***** No light.css specific coloring here yet *****/
|
||||||
background-color: #f6f6f6;
|
|
||||||
}
|
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
CoinControlDialog
|
CoinControlDialog
|
||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
QDialog#CoinControlDialog .CoinControlTreeWidget#treeWidget::item:selected { /* Coin Control Item (selected) */
|
QDialog#CoinControlDialog .CoinControlTreeWidget#treeWidget::item:selected,
|
||||||
background-color: #f7f7f7;
|
QDialog#CoinControlDialog .CoinControlTreeWidget#treeWidget::item:checked,
|
||||||
color: #333;
|
QDialog#CoinControlDialog .CoinControlTreeWidget#treeWidget::branch:selected,
|
||||||
}
|
QDialog#CoinControlDialog .CoinControlTreeWidget#treeWidget::branch:checked {
|
||||||
|
background-color: #d2d2d2;
|
||||||
QDialog#CoinControlDialog .CoinControlTreeWidget#treeWidget::item:checked { /* Coin Control Item (checked) */
|
color: #555;
|
||||||
background-color: #f7f7f7;
|
|
||||||
color: #333;
|
|
||||||
}
|
|
||||||
|
|
||||||
QDialog#CoinControlDialog .CoinControlTreeWidget#treeWidget::branch:selected { /* Coin Control Branch Icon */
|
|
||||||
background-color: #f7f7f7;
|
|
||||||
color: #333;
|
|
||||||
}
|
|
||||||
|
|
||||||
QDialog#CoinControlDialog .CoinControlTreeWidget#treeWidget::branch:checked { /* Coin Control Branch Icon */
|
|
||||||
background-color: #f7f7f7;
|
|
||||||
color: #333;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
@ -456,8 +641,9 @@ EditAddressDialog
|
|||||||
HelpMessageDialog
|
HelpMessageDialog
|
||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
QDialog#HelpMessageDialog QScrollArea * {
|
HelpMessageDialog QWidget#scrollAreaWidgetContents {
|
||||||
background-color: #ffffff;
|
background-color: #eaeaec;
|
||||||
|
border-color: #dcdcdc;
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
@ -475,24 +661,23 @@ QWidget#bgWidget { /* The frame overlaying the overview-page */
|
|||||||
}
|
}
|
||||||
|
|
||||||
QWidget#contentWidget { /* The actual content with the text/buttons/etc... */
|
QWidget#contentWidget { /* The actual content with the text/buttons/etc... */
|
||||||
background-color: #fff;
|
background-color: #f2f2f4;
|
||||||
border-color: #ccc;
|
border-color: #c7c7c7;
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
OpenURIDialog
|
OpenURIDialog
|
||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
QDialog#OpenURIDialog {
|
/***** No light.css specific coloring here yet *****/
|
||||||
background-color: #f6f6f6;
|
|
||||||
}
|
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
OptionsDialog
|
OptionsDialog
|
||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
QDialog#OptionsDialog {
|
QDialog#OptionsDialog #line,
|
||||||
background-color: #f6f6f6;
|
QDialog#OptionsDialog #frame {
|
||||||
|
border-color: #dcdcdc;
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
@ -517,46 +702,63 @@ OverviewPage RecentTransactions
|
|||||||
ReceiveCoinsDialog
|
ReceiveCoinsDialog
|
||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
/***** No light.css specific coloring here yet *****/
|
ReceiveCoinsDialog QTableView {
|
||||||
|
color: #555;
|
||||||
|
}
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
RPCConsole
|
RPCConsole
|
||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
QWidget#RPCConsole { /* RPC Console Dialog Box */
|
QWidget#RPCConsole { /* RPC Console Dialog Box */
|
||||||
background-color: #f6f6f6;
|
background-color: #f2f2f4;
|
||||||
|
}
|
||||||
|
|
||||||
|
RPCConsole QTableView {
|
||||||
|
color: #555;
|
||||||
|
}
|
||||||
|
|
||||||
|
#rpcAutoCompleter {
|
||||||
|
background-color: #eaeaec;
|
||||||
|
border-color: #dcdcdc;
|
||||||
|
}
|
||||||
|
|
||||||
|
#rpcAutoCompleter::item {
|
||||||
|
color: #555;
|
||||||
|
}
|
||||||
|
|
||||||
|
#rpcAutoCompleter::item:selected {
|
||||||
|
background-color: #d2d2d2;
|
||||||
|
color: #555;
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
SendCoinsDialog
|
SendCoinsDialog
|
||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
QDialog#SendCoinsDialog QLabel#labelBalance {
|
QDialog#SendCoinsDialog .QFrame#frameCoinControl,
|
||||||
color: #333333;
|
QDialog#SendCoinsDialog #scrollArea {
|
||||||
|
border-color: #dcdcdc;
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
SendCoinsEntry
|
SendCoinsEntry
|
||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
QStackedWidget#SendCoinsEntry .QFrame#SendCoins > .QLabel { /* Send Coin Entry Labels */
|
/***** No light.css specific coloring here yet *****/
|
||||||
color: #333;
|
|
||||||
}
|
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
SignVerifyMessageDialog
|
SignVerifyMessageDialog
|
||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
QDialog#SignVerifyMessageDialog {
|
/***** No light.css specific coloring here yet *****/
|
||||||
background-color: #f6f6f6;
|
|
||||||
}
|
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
ShutdownWindow
|
ShutdownWindow
|
||||||
******************************************************/
|
******************************************************/
|
||||||
|
|
||||||
QWidget#ShutdownWindow {
|
QWidget#ShutdownWindow {
|
||||||
background-color: #f6f6f6;
|
background-color: #f2f2f4;
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
|
@ -19,7 +19,7 @@ Loaded in GUIUtil::loadStyleSheet() in guitil.cpp.
|
|||||||
/* do not modify! section updated by update-css-files.py
|
/* do not modify! section updated by update-css-files.py
|
||||||
<colors>
|
<colors>
|
||||||
|
|
||||||
# Used colors in scrollbars.css for commit 3bebd1a5c
|
# Used colors in scrollbars.css for commit a50bd2371b
|
||||||
|
|
||||||
#e0e0e0
|
#e0e0e0
|
||||||
#f2f0f0
|
#f2f0f0
|
||||||
|
@ -17,9 +17,14 @@ Loaded in GUIUtil::loadStyleSheet() in guitil.cpp.
|
|||||||
/* do not modify! section updated by update-css-files.py
|
/* do not modify! section updated by update-css-files.py
|
||||||
<colors>
|
<colors>
|
||||||
|
|
||||||
# Used colors in traditional.css for commit 3bebd1a5c
|
# Used colors in traditional.css for commit a50bd2371b
|
||||||
|
|
||||||
|
#00000000
|
||||||
|
#333
|
||||||
#fff
|
#fff
|
||||||
|
#008de4
|
||||||
|
#047ac2
|
||||||
|
#a84832
|
||||||
#ccfafafa
|
#ccfafafa
|
||||||
|
|
||||||
</colors>
|
</colors>
|
||||||
@ -56,12 +61,10 @@ QPushButton - Special case, tabbar replacement buttons
|
|||||||
#btnVerifyMessage {
|
#btnVerifyMessage {
|
||||||
background: none;
|
background: none;
|
||||||
border-radius: 0px;
|
border-radius: 0px;
|
||||||
color: red;
|
|
||||||
border-bottom: 3px solid red;
|
border-bottom: 3px solid red;
|
||||||
padding-bottom: 5px;
|
padding-bottom: 5px;
|
||||||
background-color: transparent;
|
background-color: #00000000;
|
||||||
border-color: #008de4;
|
border-color: #008de4;
|
||||||
color: #333;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Debug window buttons */
|
/* Debug window buttons */
|
||||||
@ -80,12 +83,10 @@ QPushButton - Special case, tabbar replacement buttons
|
|||||||
#btnSignMessage:hover:checked,
|
#btnSignMessage:hover:checked,
|
||||||
#btnVerifyMessage:hover:checked {
|
#btnVerifyMessage:hover:checked {
|
||||||
border: none;
|
border: none;
|
||||||
color: red;
|
|
||||||
border-radius: 0px;
|
border-radius: 0px;
|
||||||
border-bottom: 3px solid red;
|
border-bottom: 3px solid red;
|
||||||
background-color:transparent;
|
background-color: #00000000;
|
||||||
border-color: #333;
|
border-color: #333;
|
||||||
color: #333;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Debug window buttons */
|
/* Debug window buttons */
|
||||||
@ -104,12 +105,10 @@ QPushButton - Special case, tabbar replacement buttons
|
|||||||
#btnSignMessage:hover:!checked,
|
#btnSignMessage:hover:!checked,
|
||||||
#btnVerifyMessage:hover:!checked {
|
#btnVerifyMessage:hover:!checked {
|
||||||
border: none;
|
border: none;
|
||||||
color: red;
|
|
||||||
border-radius: 0px;
|
border-radius: 0px;
|
||||||
border-bottom: 3px solid red;
|
border-bottom: 3px solid red;
|
||||||
background-color:transparent;
|
background-color: #00000000;
|
||||||
border-color: #047ac2;
|
border-color: #047ac2;
|
||||||
color: #666;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Debug window buttons */
|
/* Debug window buttons */
|
||||||
@ -128,12 +127,10 @@ QPushButton - Special case, tabbar replacement buttons
|
|||||||
#btnSignMessage:checked,
|
#btnSignMessage:checked,
|
||||||
#btnVerifyMessage:checked {
|
#btnVerifyMessage:checked {
|
||||||
border: none;
|
border: none;
|
||||||
color: red;
|
|
||||||
border-radius: 0px;
|
border-radius: 0px;
|
||||||
border-bottom: 3px solid red;
|
border-bottom: 3px solid red;
|
||||||
background-color:transparent;
|
background-color: #00000000;
|
||||||
border-color: #333;
|
border-color: #333;
|
||||||
color: #333;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
@ -162,7 +159,7 @@ OverviewPage
|
|||||||
QWidget .QFrame#frame .QLabel#labelWalletStatus, /* Wallet Sync Status */
|
QWidget .QFrame#frame .QLabel#labelWalletStatus, /* Wallet Sync Status */
|
||||||
QWidget .QFrame#framePrivateSend .QLabel#labelPrivateSendSyncStatus, /* PrivateSend Sync Status */
|
QWidget .QFrame#framePrivateSend .QLabel#labelPrivateSendSyncStatus, /* PrivateSend Sync Status */
|
||||||
QWidget .QFrame#frame_2 .QLabel#labelTransactionsStatus { /* Recent Transactions Sync Status */
|
QWidget .QFrame#frame_2 .QLabel#labelTransactionsStatus { /* Recent Transactions Sync Status */
|
||||||
color: red;
|
color: #a84832;
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************
|
/******************************************************
|
||||||
@ -175,5 +172,5 @@ QDialog#SendCoinsDialog QLabel#labelBalance {
|
|||||||
}
|
}
|
||||||
|
|
||||||
QDialog#SendCoinsDialog .QFrame#frameCoinControl .QLabel#labelCoinControlInsuffFunds { /* Insufficient Funds Label */
|
QDialog#SendCoinsDialog .QFrame#frameCoinControl .QLabel#labelCoinControlInsuffFunds { /* Insufficient Funds Label */
|
||||||
color: red;
|
color: #a84832;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user