Skip to content

Commit

Permalink
Applied theming to <InsetShadow> component.
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyanziano committed Oct 10, 2019
1 parent 4ec726f commit 627ed7b
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
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
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
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
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
@@ -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%);
}

0 comments on commit 627ed7b

Please sign in to comment.