Skip to content

Commit

Permalink
Merge 6fdec75 into 3dcbad5
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyanziano committed Aug 27, 2019
2 parents 3dcbad5 + 6fdec75 commit 86c358a
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [1775](https://github.com/microsoft/BotFramework-Emulator/pull/1775)
- [1776](https://github.com/microsoft/BotFramework-Emulator/pull/1776)
- [1781](https://github.com/microsoft/BotFramework-Emulator/pull/1781)
- [1782](https://github.com/microsoft/BotFramework-Emulator/pull/1782)

## v4.5.2 - 2019 - 07 - 17
## Fixed
Expand Down
Expand Up @@ -53,6 +53,10 @@
background-color: var(--my-bots-entry-bg);
border: var(--my-bots-entry-border);

.recent-bot-path {
color: var(--my-bots-entry-hover-color);
}

.recent-bot-action-bar {
display: block;
}
Expand Down Expand Up @@ -93,7 +97,7 @@
width: 0;

&:after {
color: var(--tab-icon-color);
color: var(--my-bots-entry-color);
content: "\2716";
font-size: 12px;
height: 16px;
Expand Down Expand Up @@ -123,7 +127,6 @@
display: inline-block;
line-height: 22px;
margin-left: 8px;
opacity: 0.5;
user-select: text;
}

Expand Down
Expand Up @@ -2,8 +2,8 @@
export const marginFix: string;
export const noBots: string;
export const recentBot: string;
export const recentBotPath: string;
export const recentBotActionBar: string;
export const recentBotsList: string;
export const recentBotPath: string;
export const section: string;
export const well: string;
2 changes: 1 addition & 1 deletion packages/app/client/src/ui/styles/themes/dark.css
Expand Up @@ -183,7 +183,7 @@ html {

/* Welcome page */
--welcome-page-bg: var(--tab-active-tab-bg);
--welcome-page-ver: var(--neutral-8);
--welcome-page-ver: var(--neutral-6);
--welcome-how-to-border: var(--neutral-6);
--welcome-how-to-test: var(--p-button-bg);
--welcome-beta-label: var(--warning-outline);
Expand Down
5 changes: 3 additions & 2 deletions packages/app/client/src/ui/styles/themes/light.css
Expand Up @@ -182,7 +182,7 @@ html {

/* Welcome page */
--welcome-page-bg: var(--tab-active-tab-bg);
--welcome-page-ver: var(--neutral-8);
--welcome-page-ver: #717171;
--welcome-how-to-border: var(--neutral-6);
--welcome-how-to-test: var(--p-button-bg);
--welcome-beta-label: var(--warning-outline);
Expand All @@ -191,7 +191,8 @@ html {
--my-bots-entry-bg: var(--neutral-4);
--my-bots-entry-border: 1px solid transparent;
--my-bots-entry-color: var(--neutral-12);
--my-bots-path-color: var(--neutral-12);
--my-bots-path-color: var(--neutral-10);
--my-bots-path-hover-color: var(--neutral-11);
--my-bots-scrollbar-color: rgba(136, 136, 136, 0.5);

/* Status Bar */
Expand Down

0 comments on commit 86c358a

Please sign in to comment.