Skip to content

Commit

Permalink
change link styles
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiolms committed Nov 12, 2024
1 parent e9f5b51 commit eba2fb2
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions src/webviews/apps/plus/shared/components/vscode.css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,18 @@ import { css } from 'lit';

export const linkStyles = css`
a {
color: var(--link-foreground);
text-decoration: var(--link-decoration-default, none);
border: 0;
color: var(--color-link-foreground);
font-weight: 400;
outline: none;
text-decoration: none;
}
a:focus {
outline-color: var(--focus-border);
a:not([href]):not([tabindex]):focus,
a:not([href]):not([tabindex]):hover {
color: inherit;
text-decoration: none;
}
a:hover {
color: var(--link-foreground-active);
text-decoration: underline;
a:focus {
outline-color: var(--color-focus-border);
}
`;

0 comments on commit eba2fb2

Please sign in to comment.