diff --git a/src/Makefile.qt.include b/src/Makefile.qt.include index 65096e0bc..ce1acdd4d 100644 --- a/src/Makefile.qt.include +++ b/src/Makefile.qt.include @@ -506,7 +506,8 @@ RES_CSS = \ qt/res/css/drkblue.css \ qt/res/css/crownium.css \ qt/res/css/light.css \ - qt/res/css/light-hires.css + qt/res/css/light-hires.css \ + qt/res/css/trad.css RES_MOVIES = $(wildcard qt/res/movies/spinner-*.png) diff --git a/src/qt/dash.qrc b/src/qt/dash.qrc index e3b2ef2e8..65560fadd 100644 --- a/src/qt/dash.qrc +++ b/src/qt/dash.qrc @@ -233,6 +233,7 @@ res/css/crownium.css res/css/light.css res/css/light-hires.css + res/css/trad.css res/images/drkblue/about.png diff --git a/src/qt/res/css/trad.css b/src/qt/res/css/trad.css new file mode 100644 index 000000000..0937a3f00 --- /dev/null +++ b/src/qt/res/css/trad.css @@ -0,0 +1,22 @@ +/* MODAL OVERLAY */ + +QWidget#bgWidget { /* The 'frame' overlaying the overview-page */ + background: rgba(0,0,0,220); +} + +QWidget#contentWidget { /* The actual content with the text/buttons/etc... */ + background: rgba(255,255,255,240); + border-radius: 6px; +} + +/* SEND DIALOG */ + +QDialog#SendCoinsDialog .QCheckBox#checkUseInstantSend { /* InstantSend Checkbox */ +margin-left:10px; +margin-right:20px; +} + +QDialog#SendCoinsDialog QLabel#labelBalance { +margin-left:0px; +padding-left:0px; +}