Skip to content

Commit

Permalink
Merge branch 'master' into srravich/bugfix/2031-entry-key
Browse files Browse the repository at this point in the history
  • Loading branch information
srinaath committed Jan 31, 2020
2 parents 06b6daf + 8201114 commit 0d9cc37
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [client] Fixed an issue where trying to add a QnA KB manually after signing into Azure was causing the app to crash in PR [2066](https://github.com/microsoft/BotFramework-Emulator/pull/2066)
- [client] Removed buble background on attachments [2067](https://github.com/microsoft/BotFramework-Emulator/pull/2067)
- [client] Fixed an issue where the themes menu was empty on Windows & Linux in PR [2069](https://github.com/microsoft/BotFramework-Emulator/pull/2069)
- [client] Fixed Web Chat suggestedActionBorder deprecation warning in PR [2070](https://github.com/microsoft/BotFramework-Emulator/pull/2070)

- [client] Fixed an issue where pressing enter opens the Azure government website instead of connecting to the bot [2073](https://github.com/microsoft/BotFramework-Emulator/pull/2073)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,9 @@ export default {
timestampColor: 'var(--webchat-timestamp-text)',

suggestedActionBackground: 'var(--webchat-sa-bg)',
suggestedActionBorder: 'var(--webchat-sa-border)',
suggestedActionBorderColor: 'var(--webchat-sa-border-color)',
suggestedActionBorderStyle: 'var(--webchat-sa-border-style)',
suggestedActionBorderWidth: 'var(--webchat-sa-border-width)',
suggestedActionTextColor: 'var(--webchat-sa-text)',

transcriptOverlayButtonBackground: 'var(--webchat-transcript-overlay-bg)',
Expand Down
4 changes: 3 additions & 1 deletion packages/app/client/src/ui/styles/themes/dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@ html {

/* suggested actions */
--webchat-sa-bg: var(--webchat-bubble-bg);
--webchat-sa-border: solid 1px var(--neutral-4);
--webchat-sa-border-color: var(--neutral-4);
--webchat-sa-border-style: solid;
--webchat-sa-border-width: 1px;
--webchat-sa-text: #3794FF;

/* bot state button */
Expand Down
4 changes: 3 additions & 1 deletion packages/app/client/src/ui/styles/themes/high-contrast.css
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,9 @@ html {

/* suggested actions */
--webchat-sa-bg: var(--webchat-bubble-bg);
--webchat-sa-border: solid 1px var(--neutral-4);
--webchat-sa-border-color: var(--neutral-4);
--webchat-sa-border-style: solid;
--webchat-sa-border-width: 1px;
--webchat-sa-text: #3794FF;

/* bot state button */
Expand Down
4 changes: 3 additions & 1 deletion packages/app/client/src/ui/styles/themes/light.css
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,9 @@ html {

/* suggested actions */
--webchat-sa-bg: var(--webchat-bubble-bg);
--webchat-sa-border: none;
--webchat-sa-border-color: transparent;
--webchat-sa-border-style: solid;
--webchat-sa-border-width: 0;
--webchat-sa-text: #3794FF;

/* bot state button */
Expand Down

0 comments on commit 0d9cc37

Please sign in to comment.