diff --git a/spec/__snapshots__/windowsTitleBar.spec.ts.snap b/spec/__snapshots__/windowsTitleBar.spec.ts.snap index 716753e4..822b3047 100644 --- a/spec/__snapshots__/windowsTitleBar.spec.ts.snap +++ b/spec/__snapshots__/windowsTitleBar.spec.ts.snap @@ -47,9 +47,190 @@ exports[`windows title bar should render correctly 1`] = `
- + + + Symphony_logo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

diff --git a/src/renderer/assets/symphony-title-bar-logo.png b/src/renderer/assets/symphony-title-bar-logo.png deleted file mode 100644 index b6119762..00000000 Binary files a/src/renderer/assets/symphony-title-bar-logo.png and /dev/null differ diff --git a/src/renderer/components/windows-title-bar.tsx b/src/renderer/components/windows-title-bar.tsx index 8e07e52c..c55df7b3 100644 --- a/src/renderer/components/windows-title-bar.tsx +++ b/src/renderer/components/windows-title-bar.tsx @@ -89,7 +89,7 @@ export default class WindowsTitleBar extends React.Component<{}, IState> {

- + {this.getSymphonyLogo()}

{document.title || 'Symphony'}

@@ -241,6 +241,136 @@ export default class WindowsTitleBar extends React.Component<{}, IState> { document.body.classList.add('window-border'); } + /** + * Returns the title bar logo + */ + private getSymphonyLogo(): JSX.Element { + return ( + + {'Symphony_logo'} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ); + } + /** * Updates the state with the give value * @param state diff --git a/src/renderer/styles/about-app.less b/src/renderer/styles/about-app.less index 75838780..ec43c0f4 100644 --- a/src/renderer/styles/about-app.less +++ b/src/renderer/styles/about-app.less @@ -23,7 +23,6 @@ body { font-size: 1.3em; padding: @text-padding; font-weight: bold; - color: white; } &-versionText { diff --git a/src/renderer/styles/title-bar.less b/src/renderer/styles/title-bar.less index 02478b84..49f532b1 100644 --- a/src/renderer/styles/title-bar.less +++ b/src/renderer/styles/title-bar.less @@ -111,7 +111,3 @@ z-index: 3000; bottom: 0; } - -.symphony-logo { - background-image: url("../src/renderer/assets/symphony-title-bar-logo.png"); -}