Skip to content

Commit

Permalink
Merge pull request input-output-hk#3030 from input-output-hk/fix/ddw-…
Browse files Browse the repository at this point in the history
…1130-blank-screen-when-opening-itn-rewards

[DDW-1130] Fix blank screen when opening ITN rewards
  • Loading branch information
danielmain authored Aug 31, 2022
2 parents 3d07522 + f5160d7 commit 0b49b33
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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))

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ class Step1ConfigurationDialog extends Component<Props, State> {
<div className={styles.recoveryPhrase}>
<MnemonicInput
{...mnemonicInputProps}
label={intl.formatMessage(messages.recoveryPhraseInputLabel)}
label={intl.formatMessage(messages.recoveryPhraseInputHint)}
availableWords={suggestedMnemonics}
wordCount={ITN_WALLET_RECOVERY_PHRASE_WORD_COUNT}
error={recoveryPhraseField.error}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down Expand Up @@ -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);
}

Expand All @@ -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;
}
Expand Down

0 comments on commit 0b49b33

Please sign in to comment.