Skip to content

Commit

Permalink
Merge branch 'master' into DGHT-287-fe-upgrade-dependency-talend-ui
Browse files Browse the repository at this point in the history
  • Loading branch information
yyanwang authored Dec 4, 2024
2 parents dd7231f + 560ba2a commit f17379c
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 8 deletions.
6 changes: 6 additions & 0 deletions packages/design-system/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @talend/design-system

## 11.3.1

### Patch Changes

- e742b73: TMC-4293 - Design System link should not be accent/grey while using qlik-light theme

## 11.3.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/design-system/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@talend/design-system",
"version": "11.3.0",
"version": "11.3.1",
"description": "Talend Design System",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down
14 changes: 7 additions & 7 deletions packages/design-system/src/components/Link/Link.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ $icon-alignment-offset-s: -0.0625rem;

.link {
font: tokens.$coral-paragraph-m-bold;
color: tokens.$coral-color-accent-text;
color: tokens.$coral-color-info-text;
background: none;
border: none;
border-bottom-color: currentColor;
Expand All @@ -26,18 +26,18 @@ $icon-alignment-offset-s: -0.0625rem;
}

&:hover {
color: tokens.$coral-color-accent-text-hover;
color: tokens.$coral-color-info-text-hover;

.link__text {
border-bottom-color: tokens.$coral-color-accent-border-hover;
border-bottom-color: tokens.$coral-color-info-border-hover;
}
}

&:active {
color: tokens.$coral-color-accent-text-active;
color: tokens.$coral-color-info-text-active;

.link__text {
border-bottom-color: tokens.$coral-color-accent-border-active;
border-bottom-color: tokens.$coral-color-info-border-active;
}
}

Expand All @@ -54,11 +54,11 @@ $icon-alignment-offset-s: -0.0625rem;
color: tokens.$coral-color-neutral-text;

&:hover {
color: tokens.$coral-color-accent-text-hover;
color: tokens.$coral-color-info-text-hover;
}

&:active {
color: tokens.$coral-color-accent-text-active;
color: tokens.$coral-color-info-text-active;
}
}
}

0 comments on commit f17379c

Please sign in to comment.