Skip to content

fix(button): active-shadow property is not applied on button active state #15914

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jun 11, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
/// @param {Color} $resting-shadow [null] - The shadow of the button in its idle state.
/// @param {Color} $hover-shadow [null] - The shadow of the button in its hover state.
/// @param {Color} $focus-shadow [null] - The shadow of the button in its focus state.
/// @param {Color} $active-shadow [null] - The shadow of the button in its focus state.
/// @param {Color} $active-shadow [null] - The shadow of the button in its active state.
/// @param {Color} $disabled-background [null] - The disabled background color of the button.
/// @param {Color} $disabled-foreground [null] - The disabled text color of the button.
/// @param {Color} $disabled-icon-color [null] - The disabled icon color of the button.
Expand Down Expand Up @@ -771,7 +771,7 @@
color: var-get($contained-theme, 'active-foreground');
background: var-get($contained-theme, 'active-background');
border-color: var-get($contained-theme, 'active-border-color');
box-shadow: var-get($contained-theme, 'hover-shadow');
box-shadow: var-get($contained-theme, 'active-shadow');

igx-icon {
color: var-get($contained-theme, 'active-foreground');
Expand Down Expand Up @@ -911,7 +911,7 @@
color: var-get($fab-theme, 'active-foreground');
background: var-get($fab-theme, 'active-background');
border-color: var-get($fab-theme, 'active-border-color');
box-shadow: var-get($fab-theme, 'focus-shadow');
box-shadow: var-get($fab-theme, 'active-shadow');

igx-icon {
color: var-get($fab-theme, 'active-foreground');
Expand Down
Loading