We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9f5b51 commit eba2fb2Copy full SHA for eba2fb2
src/webviews/apps/plus/shared/components/vscode.css.ts
@@ -2,14 +2,18 @@ import { css } from 'lit';
2
3
export const linkStyles = css`
4
a {
5
- color: var(--link-foreground);
6
- text-decoration: var(--link-decoration-default, none);
+ border: 0;
+ color: var(--color-link-foreground);
7
+ font-weight: 400;
8
+ outline: none;
9
+ text-decoration: none;
10
}
- a:focus {
- outline-color: var(--focus-border);
11
+ a:not([href]):not([tabindex]):focus,
12
+ a:not([href]):not([tabindex]):hover {
13
+ color: inherit;
14
15
- a:hover {
- color: var(--link-foreground-active);
- text-decoration: underline;
16
+ a:focus {
17
+ outline-color: var(--color-focus-border);
18
19
`;
0 commit comments