Skip to content

Commit

Permalink
Fixed secret prompt dialog's opaque background.
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyanziano committed Apr 2, 2019
1 parent 1c2b589 commit 00dedd3
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 12 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 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Fixed
- [luis / client] Fixed several styling issues within the LUIS inspector, and enabled log deep link to configure missing LUIS service in PR [#1399](https://github.com/Microsoft/BotFramework-Emulator/pull/1399)
- [client] Fixed secret prompt dialog's opaque background so that it is now transparent in PR [1407](https://github.com/Microsoft/BotFramework-Emulator/pull/1407)

## v4.3.3 - 2019 - 03 - 14
## Fixed
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
.secret-prompt-dialog-modal {
background-color: var(--neutral-5);
opacity: 1.0;
}

.button-row {
margin-top: 50px;
float: right;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// This is a generated file. Changes are likely to result in being overwritten
export const secretPromptDialogModal: string;
export const buttonRow: string;
export const saveButton: string;
export const keyContainer: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,7 @@ export class SecretPromptDialog extends React.Component<SecretPromptDialogProps,

public render(): JSX.Element {
return (
<Dialog
title="Your bot file is encrypted"
className={dialogStyles.dialogMedium}
modalStyle={styles.secretPromptDialogModal}
cancel={this.onDismissClick}
>
<Dialog title="Your bot file is encrypted" className={dialogStyles.dialogMedium} cancel={this.onDismissClick}>
<p>
{' If you created your bot through the Azure Bot Service, you can find your bot file secret in the Azure ' +
'portal under Application settings.'}
Expand Down

0 comments on commit 00dedd3

Please sign in to comment.