Skip to content
Open
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 @@ -257,11 +257,11 @@

@if $variant == 'fluent' {
--background: transparent;
--focus-hover-background: #{color($color: 'gray', $variant: if($theme-variant == 'light', 200, 50))};
--focus-hover-background: hsl(from #{var-get($theme, 'color-expression-group-and')} h s l / #{$alpha-hover});
--focus-visible-background: transparent;
--focus-background: transparent;
--active-background: #{color($color: 'gray', $variant: if($theme-variant == 'light', 200, 50))};
--hover-background: #{color($color: 'gray', $variant: if($theme-variant == 'light', 200, 50))};
--focus-background: hsl(from #{var-get($theme, 'color-expression-group-and')} h s l / #{$alpha-focus});
--active-background: hsl(from #{var-get($theme, 'color-expression-group-and')} h s l / #{$alpha-focus});
--hover-background: hsl(from #{var-get($theme, 'color-expression-group-and')} h s l / #{$alpha-hover});
Comment on lines 258 to +264
Copy link

Copilot AI Apr 1, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For the fluent AND button, this change updates --focus-background and --active-background from transparent/gray to a tinted background ($alpha-focus). The linked issue/PR description only calls for updating the hover + focused-hover background (8% alpha). If focus/active backgrounds are not meant to change, consider reverting those to the previous values and only adjusting --hover-background/--focus-hover-background to match the design spec.

Copilot uses AI. Check for mistakes.
}

--foreground: #{var-get($theme, 'color-expression-group-and')};
Expand Down Expand Up @@ -307,11 +307,11 @@

@if $variant == 'fluent' {
--background: transparent;
--focus-hover-background: #{color($color: 'gray', $variant: if($theme-variant == 'light', 200, 50))};
--focus-hover-background: hsl(from #{var-get($theme, 'color-expression-group-or')} h s l / #{$alpha-hover});
--focus-visible-background: transparent;
--focus-background: transparent;
--active-background: #{color($color: 'gray', $variant: if($theme-variant == 'light', 200, 50))};
--hover-background: #{color($color: 'gray', $variant: if($theme-variant == 'light', 200, 50))};
--focus-background: hsl(from #{var-get($theme, 'color-expression-group-or')} h s l / #{$alpha-focus});
--active-background: hsl(from #{var-get($theme, 'color-expression-group-or')} h s l / #{$alpha-focus});
--hover-background: hsl(from #{var-get($theme, 'color-expression-group-or')} h s l / #{$alpha-hover});
Comment on lines 308 to +314
Copy link

Copilot AI Apr 1, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For the fluent OR button, this change also updates --focus-background and --active-background to use $alpha-focus instead of the previous transparent/gray. The issue being closed requests only hover + focused-hover background adjustments (8% alpha). Please confirm this broader state change is intended by design; otherwise revert focus/active and keep the change limited to hover and focus-hover.

Copilot uses AI. Check for mistakes.
}

--foreground: #{var-get($theme, 'color-expression-group-or')};
Expand Down
Loading