Skip to content

Commit

Permalink
Merge d4edc2c into 054f455
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyanziano committed Apr 22, 2019
2 parents 054f455 + d4edc2c commit 0ce1cc1
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [client] Fixed issue where BOM wasn't being stripped from transcripts opened via the File menu in PR [1425](https://github.com/Microsoft/BotFramework-Emulator/pull/1425)
- [client] Fixed issue where tab icon glyphs weren't working on Mac in PR [1428](https://github.com/Microsoft/BotFramework-Emulator/pull/1428)
- [client] Fixed issue where cancelling out of opening a transcript was creating a broken livechat window in PR [1441](https://github.com/Microsoft/BotFramework-Emulator/pull/1441)
- [client] Fixed invisible scrollbar styling in log panel in PR [1442](https://github.com/Microsoft/BotFramework-Emulator/pull/1442)

## Removed
- [main] Removed custom user agent string from outgoing requests in PR [1427](https://github.com/Microsoft/BotFramework-Emulator/pull/1427)
Expand Down
@@ -1,6 +1,7 @@
.log {
height: 100%;
overflow: auto;
overflow-y: auto;
overflow-x: hidden;
user-select: text;
padding: 0;
box-sizing: border-box;
Expand Down Expand Up @@ -69,4 +70,8 @@
margin-left: 0;
}
}

&::-webkit-scrollbar-thumb {
background-color: var(--scrollbar-color);
}
}
2 changes: 1 addition & 1 deletion packages/app/client/src/ui/styles/themes/dark.css
Expand Up @@ -33,7 +33,7 @@ html {
--webchat-selected-actvity-border: #0E369C;
--webchat-selected-activity-text: var(--neutral-1);
--webchat-timestamp-text: var(--neutral-6);
--webchat-scrollbar-color: var(--neutral-13);
--webchat-scrollbar-color: var(--scrollbar-color);

/* sendbox */
--webchat-sendbox-bg: var(--neutral-14);
Expand Down
2 changes: 1 addition & 1 deletion packages/app/client/src/ui/styles/themes/high-contrast.css
Expand Up @@ -33,7 +33,7 @@ html {
--webchat-selected-actvity-border: #F38518;
--webchat-selected-activity-text: var(--neutral-1);
--webchat-timestamp-text: var(--neutral-1);
--webchat-scrollbar-color: var(--neutral-6);
--webchat-scrollbar-color: var(--scrollbar-color);

/* sendbox */
--webchat-sendbox-bg: var(--tab-active-tab-bg);
Expand Down
4 changes: 1 addition & 3 deletions packages/app/client/src/ui/styles/themes/light.css
Expand Up @@ -13,10 +13,8 @@ html {
/* Alert colors */
--info-bg: #D6ECF2;
--info-outline: #007ACC;

--warning-bg: #F6F5D2;
--warning-outline: #B89500;

--error-text: #A1260D;
--error-bg: #F2DEDE;
--error-outline: #BE1100;
Expand All @@ -33,7 +31,7 @@ html {
--webchat-selected-actvity-border: #00BCF2;
--webchat-selected-activity-text: var(--neutral-1);
--webchat-timestamp-text: var(--neutral-6);
--webchat-scrollbar-color: var(--neutral-5);
--webchat-scrollbar-color: var(--scrollbar-color);

/* sendbox */
--webchat-sendbox-bg: var(--neutral-1);
Expand Down

0 comments on commit 0ce1cc1

Please sign in to comment.