From 1c126a029cc6d03c20c8e9136edd16e281eef892 Mon Sep 17 00:00:00 2001 From: "przemyslaw.wlodek" Date: Tue, 30 Aug 2022 15:03:48 +0200 Subject: [PATCH 1/3] [DDW-1130] Fix missing translation at ITN rewards dialog --- .../staking/redeem-itn-rewards/Step1ConfigurationDialog.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/renderer/app/components/staking/redeem-itn-rewards/Step1ConfigurationDialog.tsx b/source/renderer/app/components/staking/redeem-itn-rewards/Step1ConfigurationDialog.tsx index cc5c243f1b..fe1a1b7a22 100644 --- a/source/renderer/app/components/staking/redeem-itn-rewards/Step1ConfigurationDialog.tsx +++ b/source/renderer/app/components/staking/redeem-itn-rewards/Step1ConfigurationDialog.tsx @@ -358,7 +358,7 @@ class Step1ConfigurationDialog extends Component {
Date: Tue, 30 Aug 2022 15:04:12 +0200 Subject: [PATCH 2/3] [DDW-1130] Fix MnemonicInput theme at ITN Fullscreen dialog --- .../components/widgets/DialogFullSizeOverride.scss | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/source/renderer/app/components/widgets/DialogFullSizeOverride.scss b/source/renderer/app/components/widgets/DialogFullSizeOverride.scss index b503a0f3eb..0a0518d8c1 100644 --- a/source/renderer/app/components/widgets/DialogFullSizeOverride.scss +++ b/source/renderer/app/components/widgets/DialogFullSizeOverride.scss @@ -22,7 +22,8 @@ .SimpleInput_input:not(.SimpleInput_disabled), .SimpleInput_input:focus:not(.SimpleInput_disabled), .SimpleInput_input:hover:not(.SimpleInput_disabled), - .SimpleLink_root { + .SimpleLink_root, + .MnemonicInput_content { background-color: transparent !important; } @@ -94,7 +95,10 @@ .SimpleInput_input, .SimpleInput_input::placeholder, .SimpleInput_input:focus, - .SimpleInput_input:hover { + .SimpleInput_input:hover, + .MnemonicInput_headerSlot, + .MnemonicAutocompleteLayout_inputLabel, + .MnemonicAutocompleteLayout_root { color: var(--theme-dialog-fullsize-text-color); } @@ -112,7 +116,8 @@ .SimpleInput_input:not(.SimpleInput_disabled), .SimpleInput_input:focus:not(.SimpleInput_errored), .SimpleInput_input:hover:not(.SimpleInput_errored), - .SimpleOptions_option:after { + .SimpleOptions_option:after, + .MnemonicAutocompleteLayout_input { background-color: transparent !important; border-color: var(--theme-dialog-fullsize-text-color) !important; } From f5160d78fef1bcf92568a8ff72ac7683ebf60592 Mon Sep 17 00:00:00 2001 From: "przemyslaw.wlodek" Date: Tue, 30 Aug 2022 15:21:42 +0200 Subject: [PATCH 3/3] [DDW-1130] Update changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index fe01dbe180..e6d3d7de88 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ ### Fixes +- Fixed blank screen when opening ITN rewards ([PR 3030](https://github.com/input-output-hk/daedalus/pull/3030)) - Ensured non-recommended decimal place setting alert is correctly shown ([PR 3007](https://github.com/input-output-hk/daedalus/pull/3007)) - Disabled the possibility to choose a syncing wallet for ITN rewards and delegation ([PR 3015](https://github.com/input-output-hk/daedalus/pull/3015))