Skip to content

Commit

Permalink
fix(Button): enable linkHoverTextDecoration var for THEME_2022 (#3290)
Browse files Browse the repository at this point in the history
  • Loading branch information
HelenaIsh authored Oct 16, 2023
1 parent 5918127 commit 1beb6da
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 1 addition & 2 deletions packages/react-ui/internal/themes/Theme2022.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export class Theme2022 extends (class {} as typeof DefaultThemeInternal) {
public static linkColor = '#222222';
public static linkHoverColor = '#222222';
public static linkActiveColor = '#141414';
public static linkHoverTextDecoration = 'none';

public static linkSuccessColor = '#538A1B';
public static linkSuccessHoverColor = '#477916';
Expand Down Expand Up @@ -106,8 +107,6 @@ export class Theme2022 extends (class {} as typeof DefaultThemeInternal) {
public static btnWithIconPaddingLeftMedium = '10px';
public static btnWithIconPaddingLeftLarge = '12px';

public static btnLinkHoverTextDecoration = 'none';

public static get btnLinkLineBorderBottomStyle() {
return this.linkLineBorderBottomStyle;
}
Expand Down
1 change: 1 addition & 0 deletions packages/react-ui/internal/themes/Theme2022Dark.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ export class Theme2022Dark extends (class {} as typeof Theme2022Internal) {
public static linkColor = 'rgba(255, 255, 255, 0.87)';
public static linkHoverColor = '#ffffff';
public static linkActiveColor = '#c2c2c2';
public static linkHoverTextDecoration = 'none';

public static linkSuccessColor = '#78BF2B';
public static linkSuccessHoverColor = '#B9E96E';
Expand Down

0 comments on commit 1beb6da

Please sign in to comment.