瀏覽代碼

adds walkthrough link to popover in home view

main
Keith Daulton 2 年之前
父節點
當前提交
c7e8efe6b0
共有 1 個文件被更改,包括 9 次插入1 次删除
  1. +9
    -1
      src/webviews/apps/home/components/header-card.ts

+ 9
- 1
src/webviews/apps/home/components/header-card.ts 查看文件

@ -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…
取消
儲存