Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#1740 fix Luminosity on dialog link color #1787

Merged
merged 2 commits into from
Aug 28, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [1782](https://github.com/microsoft/BotFramework-Emulator/pull/1782)
- [1783](https://github.com/microsoft/BotFramework-Emulator/pull/1783)
- [1784](https://github.com/microsoft/BotFramework-Emulator/pull/1784)
- [1787](https://github.com/microsoft/BotFramework-Emulator/pull/1787)

## v4.5.2 - 2019 - 07 - 17
## Fixed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export class AzureLoginPromptDialog extends Component<AzureLoginPromptDialogProp
<Dialog cancel={this.props.cancel} title="Sign in with an Azure account" className={styles.dialogMedium}>
<p>
{'Use your Azure account to sign in to all your Azure services, ' +
'such as Azure Bot Service, Dispatch, LUIS, and QnA Maker.'}
'such as Azure Bot Service, Dispatch, LUIS, and QnA Maker. '}
<a href="https://azure.microsoft.com/en-us/services/bot-service">{"Don't have an Azure Account? Sign up."}</a>
</p>
<p>
Expand Down
2 changes: 1 addition & 1 deletion packages/app/client/src/ui/styles/themes/dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ html {
--status-bar-color: #FFFFFF;

/* Links */
--link-color: #4080D0;
--link-color: #3062D6;
--link-color-disabled: #C8C8C8;

/* Split Button */
Expand Down
2 changes: 1 addition & 1 deletion packages/app/client/src/ui/styles/themes/light.css
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ html {
--status-bar-color: #FFFFFF;

/* Links */
--link-color: #4080D0;
--link-color: #3062D6;
--link-color-disabled: #C8C8C8;

/* Split Button */
Expand Down