Browse Source

adds walkthrough link to popover in home view

main
Keith Daulton 2 years ago
parent
commit
c7e8efe6b0
1 changed files with 9 additions and 1 deletions
  1. +9
    -1
      src/webviews/apps/home/components/header-card.ts

+ 9
- 1
src/webviews/apps/home/components/header-card.ts View File

@ -35,7 +35,7 @@ const template = html`
)}
You have access to GitLens+ features on ${x => (x.isPro ? 'any repo' : 'local & public repos')}, and all
other GitLens features on any repo.<br /><br />
indicates GitLens+ features.
indicates GitLens+ features, <a class="link-inline" href="command:gitlens.plus.learn">learn more</a>
</pop-over>
</span>
<span class="account-actions">
@ -277,6 +277,14 @@ const styles = css`
pop-over .action {
margin-right: -0.2rem;
}
.link-inline {
color: inherit;
text-decoration: underline;
}
.link-inline:hover {
color: var(--vscode-textLink-foreground);
}
`;
@customElement({ name: 'header-card', template: template, styles: styles })

Loading…
Cancel
Save