diff --git a/src/browser/modules/Carousel/styled.tsx b/src/browser/modules/Carousel/styled.tsx index e0ea7a869ed..425ed629fca 100644 --- a/src/browser/modules/Carousel/styled.tsx +++ b/src/browser/modules/Carousel/styled.tsx @@ -373,6 +373,9 @@ export const StyledSidebarSlide = styled.div.attrs({ text-decoration: ${props => props.theme.name === 'dark' ? 'underline' : 'none'}; } + & a:hover { + color: ${dark.linkHover}; + } & kbd { color: ${dark.primaryBackground} !important; /* inverted */ background-color: ${dark.primaryText} !important; diff --git a/src/browser/modules/Sidebar/About.tsx b/src/browser/modules/Sidebar/About.tsx index 9734eb6c0d8..a0d0d86bf39 100644 --- a/src/browser/modules/Sidebar/About.tsx +++ b/src/browser/modules/Sidebar/About.tsx @@ -23,6 +23,7 @@ import { connect } from 'react-redux' import { Drawer, DrawerBody, + DrawerExternalLink, DrawerFooter, DrawerHeader, DrawerSection, @@ -62,9 +63,9 @@ const About = ({ serverVersion, serverEdition }: AboutProps) => ( Made by{' '} - + Neo4j, Inc - + @@ -77,35 +78,25 @@ const About = ({ serverVersion, serverEdition }: AboutProps) => (

Neo4j Browser version:{' '} - {browserVersion} - +

{serverVersion && serverEdition && (

Neo4j Server version:{' '} - + {serverVersion} - {' '} + {' '} ({serverEdition})

)}

- + Neo4j Browser Changelog - +

{__BUILD_NUMBER__ && (
copyToClipboard(__BUILD_NUMBER__)}> @@ -127,29 +118,17 @@ const About = ({ serverVersion, serverEdition }: AboutProps) => ( License - + GPLv3 - {' '} + {' '} or{' '} - + AGPL - {' '} + {' '} for Open Source, and{' '} - + NTCL - {' '} + {' '} Commercial. @@ -157,45 +136,33 @@ const About = ({ serverVersion, serverEdition }: AboutProps) => ( Participate Discuss on{' '} - + Neo4j Community Forum - {' '} + {' '}
Ask questions at{' '} - + Stack Overflow - +
Visit a local{' '} - + Meetup Group - +
Contribute code to{' '} - + Neo4j - {' '} + {' '} or{' '} - + Neo4j Browser - +
Send us your Browser feedback via{' '} - + email - +
diff --git a/src/browser/modules/Sidebar/__snapshots__/GuideDrawer.test.tsx.snap b/src/browser/modules/Sidebar/__snapshots__/GuideDrawer.test.tsx.snap index 046ae9aa289..a48f1f1a2a6 100644 --- a/src/browser/modules/Sidebar/__snapshots__/GuideDrawer.test.tsx.snap +++ b/src/browser/modules/Sidebar/__snapshots__/GuideDrawer.test.tsx.snap @@ -61,7 +61,7 @@ exports[`GuideDrawer renders list view including Remote Guides list 1`] = ` class="sc-khQegj jfEAI" />
You can also access Browser guides by running @@ -241,7 +241,7 @@ exports[`GuideDrawer renders list view without Remote Guides 1`] = ` class="sc-khQegj jfEAI" />
You can also access Browser guides by running diff --git a/src/browser/styles/themes.ts b/src/browser/styles/themes.ts index 93089864e82..a6504ba47c8 100644 --- a/src/browser/styles/themes.ts +++ b/src/browser/styles/themes.ts @@ -168,6 +168,7 @@ export const dark = { headerText: '#f4f4f4', primaryHeaderText: '#f4f4f4', link: '#5CA6D9', + linkHover: '#1e70bf', topicText: '#fff', preText: '#fff', asideText: 'rgb(255, 255, 255, 0.87)',