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 bdc9023
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 12 deletions.
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 bdc9023

Please sign in to comment.