Skip to content

Commit

Permalink
Fixed log panel timestamp color on light theme.
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyanziano committed Sep 4, 2019
1 parent f819ab8 commit 16da70e
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -29,6 +29,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [1791](https://github.com/microsoft/BotFramework-Emulator/pull/1791)
- [1827](https://github.com/microsoft/BotFramework-Emulator/pull/1827)
- [1828](https://github.com/microsoft/BotFramework-Emulator/pull/1828)
- [1831](https://github.com/microsoft/BotFramework-Emulator/pull/1831)

## v4.5.2 - 2019 - 07 - 17
## Fixed
Expand Down
Expand Up @@ -58,6 +58,10 @@

.nothing-inspected {
padding: 0 16px;

& > a {
color: var(--inspector-link-color);
}
}

.left-arrow {
Expand Down
1 change: 1 addition & 0 deletions packages/app/client/src/ui/styles/themes/dark.css
Expand Up @@ -211,6 +211,7 @@ html {
/* Links */
--link-color: #3062D6;
--link-color-disabled: #C8C8C8;
--inspector-link-color: #75BEFF;

/* Split Button */
--split-button-color: var(--neutral-5);
Expand Down
1 change: 1 addition & 0 deletions packages/app/client/src/ui/styles/themes/high-contrast.css
Expand Up @@ -210,6 +210,7 @@ html {
/* Links */
--link-color: #4080D0;
--link-color-disabled: #C8C8C8;
--inspector-link-color: var(--link-color);

/* Split Button */
--split-button-color: var(--neutral-5);
Expand Down
3 changes: 2 additions & 1 deletion packages/app/client/src/ui/styles/themes/light.css
Expand Up @@ -63,7 +63,7 @@ html {
--bot-state-diff-indicator-color: #BE1100;

/* Log panel custom colors */
--log-panel-timestamp: #47B07F;
--log-panel-timestamp: #327E36;
--log-panel-link: #007ACC;
--log-panel-entry-hover-bg: var(--neutral-4);
--log-panel-entry-inspected-bg: var(--neutral-5);
Expand Down Expand Up @@ -211,6 +211,7 @@ html {
/* Links */
--link-color: #007ACC;
--link-color-disabled: #C8C8C8;
--inspector-link-color: var(--link-color);

/* Split Button */
--split-button-color: var(--neutral-12);
Expand Down

0 comments on commit 16da70e

Please sign in to comment.