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

Applied theming to <InsetShadow> component. #1922

Merged
merged 1 commit into from
Oct 10, 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 @@ -73,6 +73,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [client] Implemented HTML app menu for Windows in PR [1893](https://github.com/microsoft/BotFramework-Emulator/pull/1893)
- [client/main] Migrated from Bing Speech API to Cognitive Services Speech API in PR [1878](https://github.com/microsoft/BotFramework-Emulator/pull/1878)
- [client] Fixed issue with certain native browser functions (cut, copy, paste, etc.) firing twice in PR [1920](https://github.com/microsoft/BotFramework-Emulator/pull/1920)
- [client] Applied theming to InsetShadow component in PR [1922](https://github.com/microsoft/BotFramework-Emulator/pull/1922)


## v4.5.2 - 2019 - 07 - 17
Expand Down
1 change: 1 addition & 0 deletions packages/app/client/src/ui/styles/themes/dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ html {
--global-focus-outline-width: 1px;
--global-focus-outline-style: solid;
--global-focus-outline-color: #75BEFF;
--box-shadow-color: var(--neutral-13);

/* Highlight colors */
--list-item-color: var(--neutral-3);
Expand Down
1 change: 1 addition & 0 deletions packages/app/client/src/ui/styles/themes/high-contrast.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ html {
--global-focus-outline-width: 1px;
--global-focus-outline-style: solid;
--global-focus-outline-color: #F38518;
--box-shadow-color: #72C3DF;

/* Highlight colors */
--list-item-color: var(--neutral-1);
Expand Down
1 change: 1 addition & 0 deletions packages/app/client/src/ui/styles/themes/light.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ html {
--global-focus-outline-width: 1px;
--global-focus-outline-style: solid;
--global-focus-outline-color: #1177BB;
--box-shadow-color: var(--neutral-6);

/* Highlight colors */
--list-item-color: var(--neutral-9);
Expand Down
8 changes: 4 additions & 4 deletions packages/app/client/src/ui/styles/themes/redline.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
html {
--blur-radius: 6px;
--spread-radius: -3px;
--box-shadow-top: inset 0 3px var(--blur-radius) var(--spread-radius) var(--neutral-6);
--box-shadow-left: inset 3px 0 var(--blur-radius) var(--spread-radius) var(--neutral-6);
--box-shadow-bottom: inset 0 -3px var(--blur-radius) var(--spread-radius) var(--neutral-6);
--box-shadow-right: inset -3px 0px var(--blur-radius) var(--spread-radius) var(--neutral-6);
--box-shadow-top: inset 0 3px var(--blur-radius) var(--spread-radius) var(--box-shadow-color);
--box-shadow-left: inset 3px 0 var(--blur-radius) var(--spread-radius) var(--box-shadow-color);
--box-shadow-bottom: inset 0 -3px var(--blur-radius) var(--spread-radius) var(--box-shadow-color);
--box-shadow-right: inset -3px 0px var(--blur-radius) var(--spread-radius) var(--box-shadow-color);
--border-window-clip-path: polygon(0 0, 0% 100%, 3px 100%, 3px 3px, calc(100% - 3px) 3px, calc(100% - 3px) calc(100% - 3px), 3px calc(100% - 3px), 0px 100%, 100% 100%, 100% 0%);
}